12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307 |
- #!/usr/bin/env node
- "use strict";
- process.on("unhandledRejection", exn => { throw exn; });
- var TIMEOUT_EXTRA_FACTOR = +process.env.TIMEOUT_EXTRA_FACTOR || 1;
- var MAX_PARALLEL_TESTS = +process.env.MAX_PARALLEL_TESTS || 4;
- var TEST_NAME = process.env.TEST_NAME;
- const TEST_RELEASE_BUILD = +process.env.TEST_RELEASE_BUILD;
- const RUN_SLOW_TESTS = +process.env.RUN_SLOW_TESTS;
- const VERBOSE = false;
- const LOG_SCREEN = false;
- try
- {
- var V86 = require(`../../build/${TEST_RELEASE_BUILD ? "libv86" : "libv86-debug"}.js`).V86;
- }
- catch(e)
- {
- console.error("Failed to import build/libv86-debug.js. Run `make build/libv86-debug.js first.");
- process.exit(1);
- }
- const assert = require("assert").strict;
- var cluster = require("cluster");
- var os = require("os");
- var fs = require("fs");
- var root_path = __dirname + "/../..";
- var SCREEN_WIDTH = 80;
- function get_line(screen, y)
- {
- return screen.subarray(y * SCREEN_WIDTH, (y + 1) * SCREEN_WIDTH);
- }
- function line_to_text(screen, y)
- {
- return bytearray_to_string(get_line(screen, y));
- }
- function string_to_bytearray(str)
- {
- return new Uint8Array(str.split("").map(chr => chr.charCodeAt(0)));
- }
- function bytearray_to_string(arr)
- {
- return String.fromCharCode.apply(String, arr).replace(/[\x00-\x08\x0b-\x1f\x7f\x80-\xff]/g, " ");
- }
- function screen_to_text(s)
- {
- var result = [];
- result.push("+==================================== SCREEN ====================================+");
- for(var i = 0; i < 25; i++)
- {
- var line = line_to_text(s, i);
- result.push("|" + line + "|");
- }
- result.push("+================================================================================+");
- return result.join("\n");
- }
- function send_work_to_worker(worker, message)
- {
- if(current_test < tests.length)
- {
- worker.send(tests[current_test]);
- current_test++;
- }
- else
- {
- worker.disconnect();
- }
- }
- if(cluster.isMaster)
- {
- var tests = [
- {
- name: "FreeDOS boot",
- fda: root_path + "/images/freedos722.img",
- timeout: 20,
- expected_texts: [
- "Welcome to FreeDOS",
- ],
- },
- {
- name: "FreeDOS boot with Bochs BIOS",
- fda: root_path + "/images/freedos722.img",
- timeout: 20,
- alternative_bios: true,
- 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.img",
- timeout: 20,
- expect_graphical_mode: true,
- expect_mouse_registered: true,
- actions: [
- {
- on_text: " or press",
- run: "\n"
- },
- ],
- },
- {
- name: "Snowdrop",
- skip_if_disk_image_missing: true,
- fda: root_path + "/images/snowdrop.img",
- timeout: 30,
- expect_graphical_mode: true,
- expect_mouse_registered: true,
- actions: [
- {
- on_text: "[Snowdrop OS snowshell]:",
- run: "desktop\n"
- },
- ],
- },
- {
- name: "Linux",
- cdrom: root_path + "/images/linux.iso",
- timeout: 90,
- expected_texts: [
- "/root%",
- "test passed",
- ],
- actions: [
- {
- on_text: "/root%",
- run: "cd tests; ./test-i386 > emu.test; diff emu.test reference.test && echo test pas''sed || echo failed\n",
- },
- ],
- },
- {
- name: "Windows XP CD",
- skip_if_disk_image_missing: true,
- cdrom: root_path + "/images/experimental/VirtualXP.iso",
- memory_size: 512 * 1024 * 1024,
- timeout: 600,
- expect_graphical_mode: true,
- expect_graphical_size: [800, 600],
- expect_mouse_registered: true,
- },
- {
- name: "Windows XP HD",
- skip_if_disk_image_missing: true,
- hda: root_path + "/images/experimental/copy_winxp_lite-from-pixelsuft.img",
- memory_size: 512 * 1024 * 1024,
- timeout: 300,
- expect_graphical_mode: true,
- expect_graphical_size: [800, 600],
- expect_mouse_registered: true,
- },
- {
- name: "Windows 2000",
- skip_if_disk_image_missing: true,
- hda: root_path + "/images/windows2k.img",
- memory_size: 512 * 1024 * 1024,
- timeout: 300,
- expect_graphical_mode: true,
- expect_graphical_size: [1024, 768],
- expect_mouse_registered: true,
- },
- {
- name: "Windows NT 4.0",
- skip_if_disk_image_missing: true,
- hda: root_path + "/images/winnt4_noacpi.img",
- memory_size: 512 * 1024 * 1024,
- timeout: 60,
- expect_graphical_mode: true,
- expect_graphical_size: [1024, 768],
- expect_mouse_registered: true,
- cpuid_level: 2,
- },
- {
- name: "Windows NT 3.1",
- skip_if_disk_image_missing: true,
- hda: root_path + "/images/winnt31.img",
- memory_size: 256 * 1024 * 1024,
- timeout: 60,
- expect_graphical_mode: true,
- expect_graphical_size: [640, 480],
- expect_mouse_registered: true,
- },
- //{
- // name: "Windows 98",
- // skip_if_disk_image_missing: true,
- // hda: root_path + "/images/windows98.img",
- // timeout: 60,
- // expect_graphical_mode: true,
- // expect_graphical_size: [800, 600],
- // expect_mouse_registered: true,
- // failure_allowed: true,
- //},
- {
- name: "Windows 95",
- skip_if_disk_image_missing: true,
- hda: root_path + "/images/w95.img",
- timeout: 120,
- expect_graphical_mode: true,
- expect_graphical_size: [1024, 768],
- expect_mouse_registered: true,
- failure_allowed: true,
- },
- {
- name: "Oberon",
- skip_if_disk_image_missing: true,
- hda: root_path + "/images/oberon.img",
- timeout: 30,
- expect_graphical_mode: true,
- expect_mouse_registered: true,
- },
- {
- name: "Linux 3",
- skip_if_disk_image_missing: true,
- cdrom: root_path + "/images/linux3.iso",
- timeout: 200,
- expected_texts: [
- "test passed",
- ],
- actions: [
- {
- on_text: "~%",
- run: "head -c 10000 /dev/urandom > rand; echo test pas''sed\n",
- after: 1000,
- },
- ],
- },
- {
- name: "Linux 3 reboot",
- cdrom: root_path + "/images/linux3.iso",
- timeout: 90,
- expected_texts: [
- "~%",
- "SeaBIOS ",
- "~%",
- ],
- actions: [
- {
- on_text: "~%",
- run: "reboot\n",
- },
- ],
- },
- {
- name: "KolibriOS",
- fda: root_path + "/images/kolibri.img",
- timeout: 120,
- expect_graphical_mode: true,
- expect_mouse_registered: true,
- },
- {
- name: "Linux with Bochs BIOS",
- cdrom: root_path + "/images/linux.iso",
- timeout: 90,
- expected_texts: [
- "/root%",
- "test passed",
- ],
- alternative_bios: true,
- actions: [
- {
- on_text: "/root%",
- run: "cd tests; ./test-i386 > emu.test; diff emu.test reference.test && echo test pas''sed || echo failed\n",
- },
- ],
- },
- {
- name: "MS-DOS",
- skip_if_disk_image_missing: true,
- hda: root_path + "/images/msdos.img",
- timeout: 90,
- expected_texts: [
- "C:\\>",
- ],
- },
- {
- name: "MS-DOS (hard disk + floppy disk)",
- skip_if_disk_image_missing: true,
- hda: root_path + "/images/msdos.img",
- fda: root_path + "/images/kolibri.img",
- boot_order: 0x132,
- timeout: 90,
- actions: [
- { on_text: "C:\\>", run: "a:\n" },
- ],
- expected_texts: [
- "A:\\>",
- ],
- },
- {
- name: "Linux 4",
- skip_if_disk_image_missing: true,
- cdrom: root_path + "/images/linux4.iso",
- timeout: 200,
- expected_texts: [
- "~%",
- ],
- expected_serial_text: [
- "Files send via emulator appear in",
- ],
- expect_mouse_registered: true,
- },
- {
- name: "Linux bzImage",
- bzimage: root_path + "/images/buildroot-bzimage68.bin",
- cmdline: "auto",
- timeout: 200,
- expected_texts: [
- "~%",
- ],
- expected_serial_text: [
- "Files send via emulator appear in",
- ],
- expect_mouse_registered: true,
- },
- {
- name: "Linux with bzImage from filesystem",
- bzimage_initrd_from_filesystem: true,
- filesystem: {
- basefs: root_path + "/build/integration-test-fs/fs.json",
- baseurl: root_path + "/build/integration-test-fs/flat/",
- },
- cmdline: "auto",
- timeout: 200,
- expected_texts: [
- "~%",
- ],
- expected_serial_text: [
- "Files send via emulator appear in",
- ],
- expect_mouse_registered: true,
- },
- {
- name: "QNX",
- skip_if_disk_image_missing: true,
- fda: root_path + "/images/qnx-demo-network-4.05.img",
- timeout: 300,
- expect_mouse_registered: true,
- expect_graphical_mode: true,
- expect_graphical_size: [640, 480],
- actions: [
- { run: " ", after: 30 * 1000 },
- { run: " ", after: 15 * 1000 },
- { run: " ", after: 15 * 1000 },
- { run: " ", after: 15 * 1000 },
- { run: " ", after: 15 * 1000 },
- { run: " ", after: 15 * 1000 },
- { run: " ", after: 15 * 1000 },
- ],
- },
- {
- name: "OpenBSD Floppy",
- fda: root_path + "/images/openbsd-floppy.img",
- timeout: 180,
- expected_texts: ["(I)nstall, (U)pgrade or (S)hell"],
- },
- {
- name: "OpenBSD",
- skip_if_disk_image_missing: true,
- hda: root_path + "/images/openbsd.img",
- timeout: 300,
- actions: [
- {
- on_text: "boot>",
- run: "boot -c\n",
- },
- {
- on_text: "UKC>",
- run: "disable mpbios\nexit\n",
- },
- {
- on_text: "login:",
- run: "root\n",
- },
- {
- on_text: "Password:",
- run: "root\n",
- },
- ],
- expected_texts: ["nyu# "],
- },
- {
- name: "Windows 3.0",
- slow: 1,
- skip_if_disk_image_missing: true,
- timeout: 10 * 60,
- cdrom: root_path + "/images/Win30.iso",
- expected_texts: [
- "Press any key to continue",
- " **************************************************",
- ],
- expect_graphical_mode: true,
- expect_mouse_registered: true,
- actions: [
- {
- on_text: "Press any key to continue . . .",
- after: 1000,
- run: "x",
- },
- {
- on_text: " **************************************************",
- after: 1000,
- run: "x",
- },
- {
- on_text: "C> ",
- after: 1000,
- run: "win\n",
- },
- ],
- },
- {
- name: "Windows 3.1",
- skip_if_disk_image_missing: true,
- timeout: 2 * 60,
- hda: root_path + "/images/win31.img",
- expect_graphical_mode: true,
- expect_graphical_size: [1024, 768],
- expect_mouse_registered: true,
- expected_texts: [
- "MODE prepare code page function completed",
- ],
- },
- {
- name: "FreeBSD",
- skip_if_disk_image_missing: true,
- timeout: 15 * 60,
- hda: root_path + "/images/freebsd.img",
- expected_texts: [
- "FreeBSD/i386 (nyu) (ttyv0)",
- "root@nyu:~ #",
- ],
- actions: [
- {
- on_text: " Autoboot in",
- run: "\n",
- },
- {
- // workaround for freebsd not accepting key inputs just before the boot prompt
- // (probably needs delay between keydown and keyup)
- on_text: "FreeBSD/i386 (nyu) (ttyv0)",
- run: "\x08", // backspace to avoid messing with login prompt
- },
- {
- on_text: "login:",
- after: 1000,
- run: "root\n",
- },
- {
- on_text: "Password:",
- after: 1000,
- run: "\n",
- },
- ],
- },
- {
- name: "FreeBSD cdrom",
- skip_if_disk_image_missing: true,
- slow: 1,
- timeout: 10 * 60,
- cdrom: root_path + "/images/experimental/os/FreeBSD-11.0-RELEASE-i386-bootonly.iso",
- expected_texts: ["Welcome to FreeBSD!"],
- actions: [
- {
- on_text: " Autoboot in ",
- run: "\n",
- }
- ],
- },
- {
- name: "Arch Linux",
- skip_if_disk_image_missing: true,
- timeout: 20 * 60,
- bzimage_initrd_from_filesystem: true,
- memory_size: 512 * 1024 * 1024,
- 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: "images/fs.json",
- baseurl: "images/arch/",
- },
- expected_texts: [
- "root@localhost",
- "aaaaaaaaaaaaaaaaaaaa",
- "Hello, world",
- "Hello from JS",
- "Hello from OCaml",
- "Compress okay",
- "v86-in-v86 okay",
- ],
- actions: [
- {
- on_text: "root@localhost",
- run: `python -c 'print(100 * "a")'\n`,
- },
- {
- on_text: "aaaaaaaaaaaaaaaaaaaa",
- run: `gcc hello.c && ./a.out\n`,
- },
- {
- on_text: "Hello, world",
- run: `echo 'console.log("Hello from JS")' | node\n`,
- },
- {
- on_text: "Hello from JS",
- run: `echo 'print_endline "Hello from OCaml"' > hello.ml && ocamlopt hello.ml && ./a.out\n`,
- },
- {
- on_text: "Hello from OCaml",
- run:
- "zstd hello.c && gzip -k hello.c && bzip2 -k hello.c && xz -k hello.c && lzma -k hello.c && " +
- "zstdcat hello.c.zst && zcat hello.c.gz && bzcat hello.c.bz2 && xzcat hello.c.xz && lzmadec hello.c.lzma && " +
- "echo Compress okay\n",
- },
- {
- on_text: "Compress okay",
- run:
- RUN_SLOW_TESTS ?
- "./v86-in-v86.js | tee /dev/stderr | grep -m1 'Files send via emulator appear in' ; sleep 2; echo v86-in-v86 okay\n"
- :
- "./v86-in-v86.js | tee /dev/stderr | grep -m1 'Kernel command line:' ; sleep 2; echo v86-in-v86 okay\n",
- },
- {
- on_text: "v86-in-v86 okay",
- run: "./startx.sh\n",
- },
- ],
- expect_graphical_mode: true,
- expect_graphical_size: [1024, 768],
- expect_mouse_registered: true,
- },
- {
- name: "FreeGEM",
- skip_if_disk_image_missing: true,
- timeout: 60,
- hda: root_path + "/images/freegem.bin",
- expect_graphical_mode: true,
- expect_mouse_registered: true,
- actions: [
- {
- on_text: " Select from Menu",
- run: "3",
- }
- ],
- },
- {
- name: "Haiku",
- skip_if_disk_image_missing: true,
- timeout: 15 * 60,
- memory_size: 512 * 1024 * 1024,
- hda: root_path + "/images/haiku-r1beta2-hrev54154_111-x86_gcc2h-anyboot.iso",
- expected_serial_text: [
- "init_hardware()",
- "Running post install script /boot/system/boot/post-install/sshd_keymaker.sh",
- // After pressing enter in the boot dialog:
- "Running first login script /boot/system/boot/first-login/default_deskbar_items.sh",
- ],
- expect_graphical_mode: true,
- expect_graphical_size: [1024, 768],
- expect_mouse_registered: true,
- actions: [
- { after: 1 * 60 * 1000, run: "\n" },
- { after: 2 * 60 * 1000, run: "\n" },
- { after: 3 * 60 * 1000, run: "\n" },
- { after: 4 * 60 * 1000, run: "\n" },
- { after: 5 * 60 * 1000, run: "\n" },
- { after: 6 * 60 * 1000, run: "\n" },
- { after: 7 * 60 * 1000, run: "\n" },
- { after: 8 * 60 * 1000, run: "\n" },
- ],
- },
- {
- name: "9front",
- use_small_bios: true, // has issues with 256k bios
- skip_if_disk_image_missing: true,
- acpi: true,
- timeout: 5 * 60,
- hda: root_path + "/images/9front-7781.38dcaeaa222c.386.iso",
- expect_graphical_mode: true,
- expect_graphical_size: [1024, 768],
- expect_mouse_registered: true,
- actions: [
- { after: 60 * 1000, run: "\n" },
- { after: 70 * 1000, run: "\n" },
- { after: 80 * 1000, run: "\n" },
- { after: 90 * 1000, run: "\n" },
- { after: 100 * 1000, run: "\n" },
- { after: 110 * 1000, run: "\n" },
- { after: 120 * 1000, run: "\n" },
- { after: 130 * 1000, run: "\n" },
- { after: 140 * 1000, run: "\n" },
- { after: 150 * 1000, run: "\n" },
- { after: 160 * 1000, run: "\n" },
- { after: 170 * 1000, run: "\n" },
- { after: 180 * 1000, run: "\n" },
- ],
- },
- {
- name: "ReactOS",
- skip_if_disk_image_missing: true,
- timeout: 10 * 60,
- hda: root_path + "/images/reactos-livecd-0.4.15-dev-73-g03c09c9-x86-gcc-lin-dbg.iso",
- expect_graphical_mode: true,
- expect_graphical_size: [800, 600],
- expect_mouse_registered: true,
- actions: [
- { after: 1 * 60 * 1000, run: "\n" },
- { after: 2 * 60 * 1000, run: "\n" },
- { after: 3 * 60 * 1000, run: "\n" },
- { after: 4 * 60 * 1000, run: "\n" },
- { after: 5 * 60 * 1000, run: "\n" },
- { after: 6 * 60 * 1000, run: "\n" },
- { after: 7 * 60 * 1000, run: "\n" },
- { after: 8 * 60 * 1000, run: "\n" },
- ],
- expected_serial_text: [
- "DnsIntCacheInitialize()",
- // when desktop is rendered:
- "err: Attempted to close thread desktop",
- ],
- },
- {
- name: "ReactOS CD",
- skip_if_disk_image_missing: true,
- timeout: 10 * 60,
- cdrom: root_path + "/images/reactos-livecd-0.4.15-dev-73-g03c09c9-x86-gcc-lin-dbg.iso",
- expect_graphical_mode: true,
- expect_graphical_size: [800, 600],
- expect_mouse_registered: true,
- expected_serial_text: ["DnsIntCacheInitialize()"],
- },
- {
- name: "HelenOS",
- skip_if_disk_image_missing: true,
- timeout: 3 * 60,
- cdrom: root_path + "/images/HelenOS-0.11.2-ia32.iso",
- expect_graphical_mode: true,
- expect_mouse_registered: true,
- expected_serial_text: ["init: Spawning"],
- },
- {
- name: "Minix",
- skip_if_disk_image_missing: true,
- timeout: 60,
- hda: root_path + "/images/experimental/os/minix2hd.img",
- actions: [
- {
- on_text: " = Start Minix",
- run: "=",
- },
- {
- on_text: "noname login:",
- run: "root\n",
- },
- ],
- expected_texts: ["noname login:", "# "],
- },
- {
- name: "Minix CD",
- skip_if_disk_image_missing: true,
- timeout: 3 * 60,
- cdrom: root_path + "/images/minix-3.3.0.iso",
- actions: [
- {
- on_text: "login:",
- run: "root\n",
- },
- ],
- expected_texts: ["login:", "We'd like your feedback", "# "],
- },
- {
- name: "Mobius",
- skip_if_disk_image_missing: true,
- timeout: 2 * 60,
- fda: root_path + "/images/mobius-fd-release5.img",
- expect_graphical_mode: true,
- actions: [
- {
- on_text: " The highlighted entry will be booted automatically",
- run: "\n",
- },
- ],
- },
- {
- name: "FreeNOS",
- skip_if_disk_image_missing: true,
- timeout: 2 * 60,
- cdrom: root_path + "/images/FreeNOS-1.0.3.iso",
- acpi: true,
- actions: [
- {
- on_text: "login:",
- run: "root\n",
- },
- ],
- expected_texts: ["login:", "(localhost)"],
- expected_serial_text: ["FreeNOS 1.0.3"],
- },
- {
- name: "SerenityOS",
- skip_if_disk_image_missing: true,
- timeout: 2 * 60,
- hda: root_path + "/images/serenity.img",
- expect_graphical_mode: true,
- expect_graphical_size: [1024, 768],
- expect_mouse_registered: true,
- },
- {
- name: "Redox",
- skip_if_disk_image_missing: true,
- timeout: 5 * 60,
- memory_size: 512 * 1024 * 1024,
- acpi: true,
- hda: root_path + "/images/redox_demo_i686_2022-11-26_643_harddrive.img",
- actions: [
- { on_text: "Arrow keys and enter select mode", run: "\n" },
- ],
- expect_graphical_mode: true,
- expect_mouse_registered: true,
- expected_serial_text: ["# Login with the following:"],
- },
- {
- name: "Android 1.6",
- skip_if_disk_image_missing: true,
- timeout: 2 * 60,
- cdrom: root_path + "/images/android-x86-1.6-r2.iso",
- expect_graphical_mode: true,
- expect_graphical_size: [800, 600],
- expect_mouse_registered: true,
- },
- {
- name: "Android 4.4",
- skip_if_disk_image_missing: true,
- timeout: 5 * 60,
- hda: root_path + "/images/android_x86_nonsse3_4.4r1_20140904.iso",
- expect_graphical_mode: true,
- expect_graphical_size: [800, 600],
- expect_mouse_registered: true,
- },
- {
- name: "Syllable",
- skip_if_disk_image_missing: true,
- timeout: 60,
- memory_size: 512 * 1024 * 1024,
- hda: root_path + "/images/syllable-destop-0.6.7.img",
- expect_graphical_mode: true,
- expect_mouse_registered: true,
- },
- {
- name: "Mu",
- skip_if_disk_image_missing: true,
- timeout: 60,
- memory_size: 256 * 1024 * 1024,
- hda: root_path + "/images/mu-shell.img",
- expect_graphical_mode: true,
- expect_mouse_registered: true,
- },
- {
- name: "ASM Space Invaders",
- skip_if_disk_image_missing: true,
- timeout: 10,
- fda: root_path + "/images/space-invaders.img", // non-standard floppy disk size, reads past end of original image
- expected_texts: [
- " # SPACE INVADERS # ",
- ],
- },
- {
- name: "NetBSD multiboot",
- skip_if_disk_image_missing: true,
- timeout: 15,
- memory_size: 256 * 1024 * 1024,
- multiboot: root_path + "/images/netbsd9.3-kernel-multiboot.img",
- expected_texts: [
- // NOTE: doesn't success booting yet, just testing the multiboot boot
- "[ 1.0000000] multiboot:",
- ],
- },
- {
- name: "Crazierl",
- skip_if_disk_image_missing: true,
- timeout: 60,
- memory_size: 256 * 1024 * 1024,
- multiboot: root_path + "/images/crazierl-elf.img",
- initrd: root_path + "/images/crazierl-initrd.img",
- cmdline: "kernel /libexec/ld-elf32.so.1",
- acpi: true,
- expected_serial_text: [
- "Welcome to Crazierl:",
- ],
- },
- {
- name: "Linux with Postgres",
- skip_if_disk_image_missing: true,
- timeout: 5 * 60,
- memory_size: 512 * 1024 * 1024,
- cdrom: root_path + "/images/experimental/linux-postgres.iso",
- expected_texts: [
- "performing post-bootstrap initialization",
- "syncing data to disk",
- "Success. You can now start the database server using",
- ],
- },
- {
- name: "Tiny Core 11 CD",
- skip_if_disk_image_missing: 1,
- timeout: 10 * 60,
- cdrom: root_path + "/images/TinyCore-11.0.iso",
- expect_graphical_mode: true,
- expect_mouse_registered: true,
- actions: [{ on_text: " BIOS default device boot in", run: "\n", after: 5000 }],
- },
- {
- name: "Tiny Core 11 HD",
- skip_if_disk_image_missing: 1,
- timeout: 10 * 60,
- hda: root_path + "/images/TinyCore-11.0.iso",
- expect_graphical_mode: true,
- expect_mouse_registered: true,
- actions: [{ on_text: " BIOS default device boot in", run: "\n", after: 5000 }],
- },
- {
- name: "Core 9 (with floppy disk)",
- skip_if_disk_image_missing: 1,
- timeout: 5 * 60,
- cdrom: root_path + "/images/experimental/os/Core-9.0.iso",
- fda: root_path + "/images/freedos722.img",
- boot_order: 0x132,
- actions: [
- { on_text: "boot:", run: "\n" },
- { on_text: "tc@box", run: "sudo mount /dev/fd0 /mnt && ls /mnt\n" },
- ],
- expected_texts: ["AUTOEXEC.BAT"],
- },
- {
- name: "Core 8",
- skip_if_disk_image_missing: 1,
- timeout: 5 * 60,
- cdrom: root_path + "/images/experimental/os/Core-8.0.iso",
- expected_texts: ["tc@box"],
- actions: [{ on_text: "boot:", run: "\n" }],
- },
- {
- name: "Core 7",
- skip_if_disk_image_missing: 1,
- timeout: 5 * 60,
- cdrom: root_path + "/images/experimental/os/Core-7.2.iso",
- expected_texts: ["tc@box"],
- actions: [{ on_text: "boot:", run: "\n" }],
- },
- {
- name: "Core 6",
- skip_if_disk_image_missing: 1,
- timeout: 5 * 60,
- cdrom: root_path + "/images/experimental/os/Core-6.4.1.iso",
- expected_texts: ["tc@box"],
- actions: [{ on_text: "boot:", run: "\n" }],
- },
- {
- name: "Core 5",
- skip_if_disk_image_missing: 1,
- timeout: 5 * 60,
- cdrom: root_path + "/images/experimental/os/Core-5.4.iso",
- expected_texts: ["tc@box"],
- actions: [{ on_text: "boot:", run: "\n" }],
- },
- {
- name: "Core 4",
- skip_if_disk_image_missing: 1,
- timeout: 5 * 60,
- cdrom: root_path + "/images/experimental/os/Core-4.7.7.iso",
- expected_texts: ["tc@box"],
- actions: [{ on_text: "boot:", run: "\n" }],
- },
- {
- name: "Damn Small Linux",
- skip_if_disk_image_missing: 1,
- timeout: 5 * 60,
- cdrom: root_path + "/images/dsl-4.11.rc2.iso",
- expect_graphical_mode: true,
- expect_graphical_size: [1024, 768],
- expect_mouse_registered: true,
- },
- ];
- if(TEST_NAME)
- {
- tests = tests.filter(test => test.name === TEST_NAME);
- }
- var nr_of_cpus = Math.min(Math.round(os.cpus().length / 2) || 1, tests.length, MAX_PARALLEL_TESTS);
- console.log("Using %d cpus", nr_of_cpus);
- var current_test = 0;
- for(var i = 0; i < nr_of_cpus; i++)
- {
- var worker = cluster.fork();
- worker.on("message", send_work_to_worker.bind(null, worker));
- worker.on("online", send_work_to_worker.bind(null, worker));
- worker.on("exit", function(code, signal)
- {
- if(signal)
- {
- console.warn("Worker killed by signal " + signal);
- process.exit(1);
- }
- else if(code !== 0)
- {
- process.exit(code);
- }
- });
- worker.on("error", function(error)
- {
- console.error("Worker error: ", error.toString(), error);
- process.exit(1);
- });
- }
- }
- else
- {
- cluster.worker.on("message", function(test_case)
- {
- run_test(test_case, function()
- {
- process.send("I'm done");
- });
- });
- }
- function bytearray_starts_with(arr, search)
- {
- for(var i = 0; i < search.length; i++)
- {
- if(arr[i] !== search[i])
- {
- return false;
- }
- }
- return true;
- }
- function run_test(test, done)
- {
- console.log("Starting test: %s", test.name);
- const images = [test.fda, test.hda, test.cdrom, test.bzimage, test.multiboot, test.filesystem && test.filesystem.basefs].filter(x => x);
- assert(images.length, "Bootable drive expected");
- const missing_images = images.filter(i => !fs.existsSync(i));
- if(missing_images.length)
- {
- if(test.skip_if_disk_image_missing)
- {
- console.warn("Missing disk image: " + missing_images.join(", ") + ", test skipped");
- console.warn();
- done();
- return;
- }
- else
- {
- console.warn("Missing disk image: " + missing_images.join(", "));
- process.exit(1);
- }
- }
- if(test.slow && !RUN_SLOW_TESTS)
- {
- console.warn("Slow test: " + test.name + ", skipped");
- console.warn();
- done();
- return;
- }
- if(test.alternative_bios)
- {
- var bios = root_path + "/bios/bochs-bios.bin";
- var vga_bios = root_path + "/bios/bochs-vgabios.bin";
- }
- else if(test.use_small_bios || TEST_RELEASE_BUILD)
- {
- var bios = root_path + "/bios/seabios.bin";
- var vga_bios = root_path + "/bios/vgabios.bin";
- }
- else
- {
- var bios = root_path + "/bios/seabios-debug.bin";
- var vga_bios = root_path + "/bios/vgabios-debug.bin";
- }
- var settings = {
- bios: { url: bios },
- vga_bios: { url: vga_bios },
- autostart: true,
- memory_size: test.memory_size || 128 * 1024 * 1024,
- log_level: 0,
- cmdline: test.cmdline,
- };
- if(test.cdrom)
- {
- settings.cdrom = { url: test.cdrom };
- }
- if(test.fda)
- {
- settings.fda = { url: test.fda };
- }
- if(test.hda)
- {
- settings.hda = { url: test.hda, async: true };
- }
- if(test.bzimage)
- {
- settings.bzimage = { url: test.bzimage };
- }
- if(test.multiboot)
- {
- settings.multiboot = { url: test.multiboot };
- }
- if(test.initrd)
- {
- settings.initrd = { url: test.initrd };
- }
- if(test.filesystem)
- {
- settings.filesystem = test.filesystem;
- }
- settings.cmdline = test.cmdline;
- settings.bzimage_initrd_from_filesystem = test.bzimage_initrd_from_filesystem;
- settings.acpi = test.acpi;
- settings.boot_order = test.boot_order;
- settings.cpuid_level = test.cpuid_level;
- settings.disable_jit = +process.env.DISABLE_JIT;
- if(test.expected_texts)
- {
- test.expected_texts = test.expected_texts.map(string_to_bytearray);
- }
- else
- {
- test.expected_texts = [];
- }
- if(!test.expected_serial_text)
- {
- test.expected_serial_text = [];
- }
- var emulator = new V86(settings);
- var screen = new Uint8Array(SCREEN_WIDTH * 25);
- function check_text_test_done()
- {
- return test.expected_texts.length === 0;
- }
- function check_serial_test_done()
- {
- return test.expected_serial_text.length === 0;
- }
- var mouse_test_done = false;
- function check_mouse_test_done()
- {
- return !test.expect_mouse_registered || mouse_test_done;
- }
- var graphical_test_done = false;
- var size_test_done = false;
- function check_graphical_test_done()
- {
- return !test.expect_graphical_mode || (graphical_test_done && (!test.expect_graphical_size || size_test_done));
- }
- var test_start = Date.now();
- var timeout_seconds = test.timeout * TIMEOUT_EXTRA_FACTOR;
- var timeout = setTimeout(check_test_done, (timeout_seconds + 1) * 1000);
- var timeouts = [timeout];
- var on_text = [];
- var stopped = false;
- var screen_interval = null;
- function check_test_done()
- {
- if(stopped)
- {
- return;
- }
- if(check_text_test_done() &&
- check_mouse_test_done() &&
- check_graphical_test_done() &&
- check_serial_test_done())
- {
- var end = Date.now();
- for(let timeout of timeouts) clearTimeout(timeout);
- stopped = true;
- emulator.stop();
- if(screen_interval !== null)
- {
- clearInterval(screen_interval);
- }
- console.warn("Passed test: %s (took %ds)", test.name, (end - test_start) / 1000);
- console.warn();
- done();
- }
- else if(Date.now() >= test_start + timeout_seconds * 1000)
- {
- for(let timeout of timeouts) clearTimeout(timeout);
- stopped = true;
- if(screen_interval !== null)
- {
- clearInterval(screen_interval);
- }
- emulator.destroy();
- if(test.failure_allowed)
- {
- console.warn("Test failed: %s (failure allowed)\n", test.name);
- }
- else
- {
- console.warn(screen_to_text(screen));
- console.warn("Test failed: %s\n", test.name);
- }
- if(!check_text_test_done())
- {
- console.warn('Expected text "%s" after %d seconds.', bytearray_to_string(test.expected_texts[0]), timeout_seconds);
- }
- if(!check_graphical_test_done())
- {
- console.warn("Expected graphical mode after %d seconds.", timeout_seconds);
- }
- if(!check_mouse_test_done())
- {
- console.warn("Expected mouse activation after %d seconds.", timeout_seconds);
- }
- if(!check_serial_test_done())
- {
- console.warn('Expected serial text "%s" after %d seconds.', test.expected_serial_text, timeout_seconds);
- }
- if(on_text.length)
- {
- console.warn(`Note: Expected text "${bytearray_to_string(on_text[0].text)}" to run "${on_text[0].run}"`);
- }
- if(!test.failure_allowed)
- {
- process.exit(1);
- }
- else
- {
- done();
- }
- }
- }
- emulator.add_listener("mouse-enable", function()
- {
- mouse_test_done = true;
- check_test_done();
- });
- emulator.add_listener("screen-set-size", function(args)
- {
- const [w, h, bpp] = args;
- graphical_test_done = bpp !== 0;
- if(test.expect_graphical_size)
- {
- size_test_done = w === test.expect_graphical_size[0] && h === test.expect_graphical_size[1];
- }
- check_test_done();
- });
- 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 = get_line(screen, y);
- if(!check_text_test_done())
- {
- let expected = test.expected_texts[0];
- if(x < expected.length && bytearray_starts_with(line, expected))
- {
- test.expected_texts.shift();
- if(VERBOSE) console.log(`Passed: "${bytearray_to_string(expected)}" on screen (${test.name})`);
- check_test_done();
- }
- }
- if(on_text.length)
- {
- let expected = on_text[0].text;
- if(x < expected.length && bytearray_starts_with(line, expected))
- {
- var action = on_text.shift();
- timeouts.push(
- setTimeout(() => {
- if(VERBOSE) console.error("Sending '%s'", action.run);
- emulator.keyboard_send_text(action.run);
- }, action.after || 0)
- );
- }
- }
- });
- if(LOG_SCREEN)
- {
- screen_interval = setInterval(() => {
- console.warn(screen_to_text(screen));
- }, 10000);
- }
- let serial_line = "";
- emulator.add_listener("serial0-output-byte", function(byte)
- {
- var c = String.fromCharCode(byte);
- if(c === "\n")
- {
- if(VERBOSE)
- {
- console.log(`Serial (${test.name}):`, serial_line);
- }
- if(test.expected_serial_text.length)
- {
- const expected = test.expected_serial_text[0];
- if(serial_line.includes(expected))
- {
- test.expected_serial_text.shift();
- if(VERBOSE) console.log(`Passed: "${expected}" on serial (${test.name})`);
- check_test_done();
- }
- }
- serial_line = "";
- }
- else if(c >= " " && c <= "~")
- {
- serial_line += c;
- }
- });
- test.actions && test.actions.forEach(function(action)
- {
- if(action.on_text)
- {
- on_text.push({ text: string_to_bytearray(action.on_text), run: action.run, after: action.after });
- }
- else
- {
- timeouts.push(
- setTimeout(() => {
- if(VERBOSE) console.error("Sending '%s'", action.run);
- emulator.keyboard_send_text(action.run);
- }, action.after || 0)
- );
- }
- });
- }
|