js-waku/src/test_utils/nim_waku.ts

146 lines
3.3 KiB
TypeScript
Raw Normal View History

2021-03-10 17:39:53 +11:00
import { ChildProcess, spawn } from 'child_process';
2021-03-11 10:54:35 +11:00
import * as fs from 'fs';
import { promisify } from 'util';
2021-03-10 17:39:53 +11:00
import axios from 'axios';
import Multiaddr from 'multiaddr';
import multiaddr from 'multiaddr';
import PeerId from 'peer-id';
import waitForLine from './log_file';
2021-03-10 17:39:53 +11:00
2021-03-11 10:54:35 +11:00
const openAsync = promisify(fs.open);
2021-03-10 17:39:53 +11:00
const NIM_WAKU_BIN = '/home/froyer/src/status-im/nim-waku/build/wakunode2';
const NIM_WAKU_RPC_URL = 'http://localhost:8545/';
const NIM_WAKU_PEER_ID = PeerId.createFromB58String(
'16Uiu2HAkyzsXzENw5XBDYEQQAeQTCYjBJpMLgBmEXuwbtcrgxBJ4'
);
const NIM_WAKKU_LISTEN_ADDR = multiaddr('/ip4/127.0.0.1/tcp/60000/');
2021-03-11 10:54:35 +11:00
export interface Args {
staticnode?: string;
nat?: 'none';
listenAddress?: string;
relay?: boolean;
rpc?: boolean;
rpcAdmin?: boolean;
nodekey?: string;
}
2021-03-10 17:39:53 +11:00
export class NimWaku {
private process?: ChildProcess;
2021-03-11 10:54:35 +11:00
async start(args: Args) {
2021-03-10 17:39:53 +11:00
// Start a local only node with the right RPC commands
// The fixed nodekey ensures the node has a fixed Peerid: 16Uiu2HAkyzsXzENw5XBDYEQQAeQTCYjBJpMLgBmEXuwbtcrgxBJ4
const logPath = './nim-waku.log';
const logFile = await openAsync(logPath, 'w');
2021-03-11 10:54:35 +11:00
const mergedArgs = argsToArray(mergeArguments(args));
this.process = spawn(NIM_WAKU_BIN, mergedArgs, {
cwd: '/home/froyer/src/status-im/nim-waku/',
stdio: [
'ignore', // stdin
logFile, // stdout
logFile, // stderr
2021-03-10 17:39:53 +11:00
],
2021-03-11 10:54:35 +11:00
});
2021-03-10 17:39:53 +11:00
this.process.on('exit', (signal) => {
2021-03-11 10:54:35 +11:00
console.log(`ERROR: nim-waku node stopped: ${signal}`);
2021-03-10 17:39:53 +11:00
});
await waitForLine(logPath, 'RPC Server started');
console.log('Nim waku RPC is started');
2021-03-10 17:39:53 +11:00
}
/** Calls nim-waku2 JSON-RPC API `get_waku_v2_admin_v1_peers` to check
* for known peers
* @throws if nim-waku2 isn't started.
*/
async peers() {
2021-03-10 17:39:53 +11:00
this.checkProcess();
const res = await this.rpcCall('get_waku_v2_admin_v1_peers', []);
return res.result;
}
async info() {
this.checkProcess();
const res = await this.rpcCall('get_waku_v2_debug_v1_info', []);
return res.result;
}
get peerId(): PeerId {
return NIM_WAKU_PEER_ID;
}
get multiaddr(): Multiaddr {
return NIM_WAKKU_LISTEN_ADDR;
}
private async rpcCall(method: string, params: any[]) {
const res = await axios.post(
NIM_WAKU_RPC_URL,
{
jsonrpc: '2.0',
id: 1,
method,
params,
},
{
headers: { 'Content-Type': 'application/json' },
}
);
return res.data;
}
private checkProcess() {
if (!this.process) {
throw "Nim Waku isn't started";
}
}
}
2021-03-11 10:54:35 +11:00
export function argsToArray(args: Args): Array<string> {
const array = [];
for (const [key, value] of Object.entries(args)) {
// Change the key from camelCase to kebab-case
const kebabKey = key.replace(/([A-Z])/, (_, capital) => {
return '-' + capital.toLowerCase();
});
const arg = `--${kebabKey}=${value}`;
array.push(arg);
}
return array;
}
function defaultArgs(): Args {
return {
nat: 'none',
listenAddress: '127.0.0.1',
relay: true,
rpc: true,
rpcAdmin: true,
nodekey: 'B2C4E3DB22EA6EB6850689F7B3DF3DDA73F59C87EFFD902BEDCEE90A3A2341A6',
};
}
export function mergeArguments(args: Args): Args {
const res = defaultArgs();
Object.assign(res, args);
return res;
}