|
| 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