v86/tests/full/run.js
2015-11-06 17:34:19 +01:00

261 lines
6 KiB
JavaScript
Executable file

#!/bin/env node
"use strict";
try
{
var V86 = require("../../build/libv86.js").V86Starter;
}
catch(e)
{
console.error("Failed to import build/libv86.js. Run `make build/libv86.js first.");
process.exit(1);
}
var fs = require("fs");
var root_path = __dirname + "/../..";
var SCREEN_WIDTH = 80;
function readfile(path)
{
return new Uint8Array(fs.readFileSync(path)).buffer;
}
var bios = readfile(root_path + "/bios/seabios.bin");
var vga_bios = readfile(root_path + "/bios/vgabios.bin");
var tests = [
{
name: "FreeDOS boot",
fda: root_path + "/images/freedos722.img",
timeout: 10,
expected_texts: [
"Welcome to FreeDOS",
],
},
{
name: "Windows 1.01 boot",
fda: root_path + "/images/windows101.img",
timeout: 10,
expect_graphical_mode: true,
expect_mouse_registered: true,
},
{
name: "Sol OS",
fda: root_path + "/images/os8.dsk",
timeout: 10,
expect_graphical_mode: true,
expect_mouse_registered: true,
actions: [
{
after: 1,
run: "\n"
},
],
},
{
name: "Linux",
cdrom: root_path + "/images/linux.iso",
timeout: 30,
expected_texts: [
"/root%",
"test passed",
],
actions: [
{
on_text: "/root%",
run: "cd tests; ./test-i386 > emu.test; diff emu.test reference.test > /dev/null && echo test pas''sed || echo failed\n",
},
],
},
{
name: "Linux 3",
cdrom: root_path + "/images/linux3.iso",
timeout: 75,
expected_texts: [
"test passed",
],
actions: [
{
on_text: "~%",
run: "echo test pas''sed\n"
},
],
},
{
name: "KolibriOS",
fda: root_path + "/images/kolibri.img",
timeout: 120,
expect_graphical_mode: true,
expect_mouse_registered: true,
},
//{
// name: "OpenBSD",
// fda: root_path + "/images/openbsd.img",
// timeout: 120,
// expected_texts: ["(I)nstall, (U)pgrade or (S)hell"],
//},
];
next_test(0);
function line_to_text(screen, y)
{
return String.fromCharCode.apply(String, screen.subarray(y * SCREEN_WIDTH, (y + 1) * SCREEN_WIDTH));
}
function screen_to_text(s)
{
var result = [];
for(var i = 0; i < 25; i++)
{
var line = line_to_text(s, i);
result.push(line);
}
return result.join("\n");
}
function next_test(test_nr)
{
var test = tests[test_nr];
if(!test)
{
console.log("\nAll tests passed!");
return;
}
console.log("Starting test %d: %s", test_nr + 1, test.name);
var settings = {
bios: { buffer: bios },
vga_bios: { buffer: vga_bios },
autostart: true,
};
console.assert(test.cdrom || test.fda, "Bootable drive expected");
if(test.cdrom)
{
settings.cdrom = { buffer: readfile(test.cdrom) };
}
if(test.fda)
{
settings.fda = { buffer: readfile(test.fda) };
}
var emulator = new V86(settings);
var screen = new Uint8Array(80 * 26);
function text_test_done()
{
return !test.expected_texts || test.expected_texts.length === 0;
}
function mouse_test_done()
{
return !test.expect_mouse_registered || emulator.get_statistics().mouse.enabled;
}
function grapical_test_done()
{
return !test.expect_graphical_mode || emulator.get_statistics().vga.is_graphical;
}
// TODO: Avoid polling
var poll_interval = setInterval(check_test_done, 500);
var test_start = Date.now();
var on_text = [];
function check_test_done()
{
if(text_test_done() && mouse_test_done() && grapical_test_done())
{
emulator.stop();
console.warn("Passed test: %s", test.name);
console.warn("Took %ds", (Date.now() - test_start) / 1000);
console.warn();
clearInterval(poll_interval);
next_test(test_nr + 1);
}
if(Date.now() > test_start + test.timeout * 1000)
{
emulator.stop();
emulator.destroy();
console.warn(screen_to_text(screen));
console.warn("Test failed: %s\n", test.name);
if(!text_test_done())
{
console.warn('Expected text "%s"', test.expected_texts[0]);
}
if(!grapical_test_done())
{
console.warn("Expected graphical mode");
}
if(!mouse_test_done())
{
console.warn("Expected mouse activation");
}
clearInterval(poll_interval);
process.exit(1); // XXX: Continue with other tests
}
}
emulator.add_listener("screen-put-char", function(chr)
{
var y = chr[0];
var x = chr[1];
var code = chr[2];
screen[x + SCREEN_WIDTH * y] = code;
var line = line_to_text(screen, y);
if(!text_test_done())
{
var expected = test.expected_texts[0];
if(line.indexOf(expected) >= 0)
{
test.expected_texts.shift();
check_test_done();
}
}
if(on_text.length)
{
if(line.indexOf(on_text[0].text) >= 0)
{
var action = on_text.shift();
emulator.keyboard_send_text(action.run);
}
}
});
test.actions && test.actions.forEach(function(action)
{
if(action.on_text)
{
on_text.push({ text: action.on_text, run: action.run, });
}
if(action.after !== undefined)
{
setTimeout(function() {
emulator.keyboard_send_text(action.run);
}, action.after * 1000);
}
});
}