mirror of https://github.com/embarklabs/embark.git
Merge pull request #386 from embark-framework/bug_fix/test-rpc-not-installed
check if testrpc is installed and warn if not
This commit is contained in:
commit
846980a4d7
|
@ -3,11 +3,20 @@ let shelljs = require('shelljs');
|
||||||
class Simulator {
|
class Simulator {
|
||||||
constructor(options) {
|
constructor(options) {
|
||||||
this.blockchainConfig = options.blockchainConfig;
|
this.blockchainConfig = options.blockchainConfig;
|
||||||
|
this.logger = options.logger;
|
||||||
}
|
}
|
||||||
|
|
||||||
run(options) {
|
run(options) {
|
||||||
let cmds = [];
|
let cmds = [];
|
||||||
|
|
||||||
|
const testrpc = shelljs.which('testrpc');
|
||||||
|
const ganache = shelljs.which('ganache-cli');
|
||||||
|
if (!testrpc && !ganache) {
|
||||||
|
this.logger.warn('Ganache CLI (TestRPC) is not installed on your machine');
|
||||||
|
this.logger.info('You can install it by running: npm -g install ganache-cli');
|
||||||
|
process.exit();
|
||||||
|
}
|
||||||
|
|
||||||
cmds.push("-p " + (this.blockchainConfig.rpcPort || options.port || 8545));
|
cmds.push("-p " + (this.blockchainConfig.rpcPort || options.port || 8545));
|
||||||
cmds.push("-h " + (this.blockchainConfig.rpcHost || options.host || 'localhost'));
|
cmds.push("-h " + (this.blockchainConfig.rpcHost || options.host || 'localhost'));
|
||||||
cmds.push("-a " + (options.numAccounts || 10));
|
cmds.push("-a " + (options.numAccounts || 10));
|
||||||
|
@ -26,7 +35,8 @@ class Simulator {
|
||||||
cmds.push("-b \"" + (simulatorBlocktime) +"\"");
|
cmds.push("-b \"" + (simulatorBlocktime) +"\"");
|
||||||
}
|
}
|
||||||
|
|
||||||
shelljs.exec('testrpc ' + cmds.join(' '), {async : true});
|
const program = ganache ? 'ganache-cli' : 'testrpc';
|
||||||
|
shelljs.exec(`${program} ${cmds.join(' ')}`, {async : true});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -57,7 +57,7 @@ class Embark {
|
||||||
simulator(options) {
|
simulator(options) {
|
||||||
this.context = options.context || [constants.contexts.simulator, constants.contexts.blockchain];
|
this.context = options.context || [constants.contexts.simulator, constants.contexts.blockchain];
|
||||||
let Simulator = require('./cmds/simulator.js');
|
let Simulator = require('./cmds/simulator.js');
|
||||||
let simulator = new Simulator({blockchainConfig: this.config.blockchainConfig});
|
let simulator = new Simulator({blockchainConfig: this.config.blockchainConfig, logger: this.logger});
|
||||||
simulator.run(options);
|
simulator.run(options);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue