Skip to content

Commit c942b00

Browse files
authored
Add support for Serenity LibJS (#33)
1 parent 5d484b7 commit c942b00

File tree

2 files changed

+87
-0
lines changed

2 files changed

+87
-0
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ installing engines to make eshost automatically find the installed engines.
4040
| [engine262][] | `engine262` |||||||
4141
| [GraalJS][] | `graaljs` || | || ||
4242
| [Hermes][] | `hermes` || | | | ||
43+
| [LibJS][] | `serenity-js` | | | || | |
4344
| [JavaScriptCore][] | `jsc`, `javascriptcore` ||| || ||
4445
| [QuickJS][] | `quickjs`, `quickjs-run-test262` || |||||
4546
| [SpiderMonkey][] | `sm`, `spidermonkey` |||||||
@@ -54,6 +55,7 @@ Some binaries may be exposed as batch/shell scripts to properly handling shared
5455
[engine262]: https://engine262.js.org
5556
[GraalJS]: https://github.com/graalvm/graaljs
5657
[Hermes]: https://hermesengine.dev
58+
[LibJS]: https://github.com/serenityos/serenity
5759
[JavaScriptCore]: https://developer.apple.com/documentation/javascriptcore
5860
[QuickJS]: https://bellard.org/quickjs/
5961
[SpiderMonkey]: https://developer.mozilla.org/en-US/docs/Mozilla/Projects/SpiderMonkey

src/engines/libjs.js

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
'use strict';
2+
3+
const assert = require('assert');
4+
const execa = require('execa');
5+
const fetch = require('node-fetch');
6+
const path = require('path');
7+
const Installer = require('../installer');
8+
const { platform, unzip, untar } = require('../common');
9+
10+
function checkPlatform() {
11+
switch (platform) {
12+
case 'linux-x64':
13+
return;
14+
default:
15+
throw new Error(`LibJS does not have binary builds for ${platform}`);
16+
}
17+
}
18+
19+
class LibJSInstaller extends Installer {
20+
constructor(...args) {
21+
super(...args);
22+
23+
this.binPath = undefined;
24+
}
25+
26+
static async resolveVersion(version) {
27+
checkPlatform();
28+
if (version !== 'latest') {
29+
throw new Error('LibJS only provides binary builds for \'latest\'');
30+
}
31+
32+
const artifactId = await fetch('https://api.github.com/repos/serenityos/serenity/actions/artifacts')
33+
.then((x) => x.json())
34+
.then((x) => x.artifacts.filter((a) => a.name === 'serenity-js'))
35+
.then((x) => x[0].id)
36+
.catch(() => {
37+
throw new Error('Failed to find any releases for serenity-js on SerenityOS/serenity');
38+
});
39+
const runId = await fetch('https://api.github.com/repos/serenityos/serenity/actions/runs?event=push&branch=master&status=success')
40+
.then((x) => x.json())
41+
.then((x) => x.workflow_runs.filter((a) => a.name === 'Run test262 with LibJS and push results to the website repo'))
42+
.then((x) => x.sort((a, b) => a.check_suite_id > b.check_suite_id))
43+
.then((x) => x[0].check_suite_id)
44+
.catch(() => {
45+
throw new Error('Failed to find any recent serenity-js build run');
46+
});
47+
return `${runId}/${artifactId}`;
48+
}
49+
50+
getDownloadURL(version) {
51+
const ids = version.split('/');
52+
return `https://nightly.link/serenityos/serenity/suites/${ids[0]}/artifacts/${ids[1]}`;
53+
}
54+
55+
async extract() {
56+
await unzip(this.downloadPath, `${this.extractedPath}zip`);
57+
await untar(path.join(`${this.extractedPath}zip`, 'serenity-js.tar.gz'), this.extractedPath);
58+
}
59+
60+
async install() {
61+
await this.registerAssets('serenity-js/lib/*.so*');
62+
const js = await this.registerAsset('serenity-js/bin/js');
63+
this.binPath = await this.registerScript('serenity-js', `"${js}"`);
64+
}
65+
66+
async test() {
67+
const program = 'console.log("42")';
68+
const output = '42';
69+
70+
assert.strictEqual(
71+
(await execa(this.binPath, ['-c', program])).stdout,
72+
output,
73+
);
74+
}
75+
}
76+
77+
LibJSInstaller.config = {
78+
name: 'LibJS',
79+
id: 'libjs',
80+
supported: [
81+
'linux-x64',
82+
],
83+
};
84+
85+
module.exports = LibJSInstaller;

0 commit comments

Comments
 (0)