Skip to content

Commit

Permalink
test for #1203
Browse files Browse the repository at this point in the history
  • Loading branch information
copy committed Jan 17, 2025
1 parent cd6beb2 commit 6fa076a
Show file tree
Hide file tree
Showing 2 changed files with 87 additions and 0 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,7 @@ api-tests: all-debug
#./tests/api/floppy-insert-eject.js # disabled for now, sometimes hangs
./tests/api/serial.js
./tests/api/reboot.js
./tests/api/pic.js

all-tests: eslint kvm-unit-test qemutests qemutests-release jitpagingtests api-tests nasmtests nasmtests-force-jit tests expect-tests
# Skipping:
Expand Down
86 changes: 86 additions & 0 deletions tests/api/pic.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
#!/usr/bin/env node
"use strict";

const TEST_RELEASE_BUILD = +process.env.TEST_RELEASE_BUILD;

const fs = require("fs");
const V86 = require(`../../build/${TEST_RELEASE_BUILD ? "libv86" : "libv86-debug"}.js`).V86;

const root_path = __dirname + "/../..";

process.on("unhandledRejection", exn => { throw exn; });

if(!fs.existsSync(root_path + "/images/fs.json"))
{
console.log("Missing images/fs.json, test skipped");
process.exit(0);
}

const config = {
bios: { url: __dirname + "/../../bios/seabios.bin" },
vga_bios: { url: __dirname + "/../../bios/vgabios.bin" },
bzimage_initrd_from_filesystem: true,
cmdline: [
"rw apm=off vga=0x344 video=vesafb:ypan,vremap:8",
"root=host9p rootfstype=9p rootflags=trans=virtio,cache=loose mitigations=off",
"audit=0 init=/usr/bin/init-openrc net.ifnames=0 biosdevname=0",
].join(" "),
filesystem: {
basefs: root_path + "/images/fs.json",
baseurl: root_path + "/images/arch/",
},
network_relay_url: "<UNUSED>",
autostart: true,
memory_size: 512 * 1024 * 1024,
log_level: 0,
disable_jit: +process.env.DISABLE_JIT,
};

const emulator = new V86(config);

emulator.bus.register("emulator-started", function()
{
console.log("Booting now, please stand by");

// Trigger a lot of interrupts
// There have been bugs in the pic in the past, e.g. #1203
const interval = setInterval(() =>
{
emulator.bus.send("mouse-delta", [1, 0]);
}, 0);

const timeout = setTimeout(() => {
console.warn(emulator.screen_adapter.get_text_screen());
throw new Error("Timeout");
}, 120 * 1000);

let line = "";
emulator.add_listener("serial0-output-byte", async function(byte)
{
const chr = String.fromCharCode(byte);

if(chr < " " && chr !== "\n" && chr !== "\t" || chr > "~")
{
return;
}

if(chr === "\n")
{
console.error("Serial: %s", line);

if(line.startsWith("localhost login:"))
{
console.log("Test passed");
clearTimeout(timeout);
clearInterval(interval);
emulator.destroy();
}

line = "";
}
else
{
line += chr;
}
});
});

0 comments on commit 6fa076a

Please sign in to comment.