Files: b09ae9b9bed2be0a68c73659b7f9b4befa8a5c8b / tests / interfaceRunner.js
1605 bytesRaw
1 | |
2 | const tape = require('tape') |
3 | const fs = require('fs') |
4 | const cp = require('child_process') |
5 | |
6 | const Kernel = require('../index.js') |
7 | const Environment = require('../environment.js') |
8 | const Interface = require('../interface.js') |
9 | const DebugInterface = require('../debugInterface.js') |
10 | const dir = __dirname + '/interface' |
11 | // get the test names |
12 | let tests = fs.readdirSync(dir).filter((file) => file.endsWith('.wast')) |
13 | // tests = ['balance.wast'] |
14 | // run the tests |
15 | for (let testName of tests) { |
16 | testName = testName.split('.')[0] |
17 | tape(testName, (t) => { |
18 | // Compile Command |
19 | cp.execSync(`${__dirname}/../tools/sexpr-wasm-prototype/out/sexpr-wasm ${dir}/${testName}.wast -o ${dir}/${testName}.wasm`) |
20 | const buffer = fs.readFileSync(`${dir}/${testName}.wasm`) |
21 | const envData = fs.readFileSync(`${dir}/${testName}.json`) |
22 | const ethereum = new Kernel(new Environment(envData)) |
23 | |
24 | // manually `callHander` |
25 | const environment = new Environment(envData) |
26 | environment.parent = ethereum |
27 | const testContract = new Kernel(environment) |
28 | const ethInterface = new Interface(environment, testContract) |
29 | const debugInterface = new DebugInterface() |
30 | |
31 | try { |
32 | const mod = Wasm.instantiateModule(buffer, { |
33 | 'ethereum': ethInterface.exportTable, |
34 | 'debug': debugInterface.exportTable |
35 | }) |
36 | ethInterface.setModule(mod) |
37 | debugInterface.setModule(mod) |
38 | mod.exports.test() |
39 | } catch (e) { |
40 | t.fail() |
41 | console.error('FAIL') |
42 | console.error(e) |
43 | } finally { |
44 | t.pass(testName) |
45 | console.log('done') |
46 | } |
47 | t.end() |
48 | }) |
49 | } |
50 |
Built with git-ssb-web