embark/lib/core/test.js

95 lines
3.0 KiB
JavaScript
Raw Normal View History

2016-10-02 20:57:13 +00:00
var async = require('async');
2016-08-21 22:05:35 +00:00
var Web3 = require('web3');
var Engine = require('./engine.js');
2017-02-18 21:53:49 +00:00
var RunCode = require('./runCode.js');
var TestLogger = require('./test_logger.js');
2016-08-21 22:05:35 +00:00
2017-03-04 02:06:44 +00:00
var getSimulator = function() {
try {
var sim = require('ethereumjs-testrpc');
return sim;
} catch (e) {
if (e.code === 'MODULE_NOT_FOUND') {
console.log('Simulator not found; Please install it with "npm install ethereumjs-testrpc --save"');
console.log('IMPORTANT: if you using a NodeJS version older than 6.9.1 then you need to install an older version of testrpc "npm install ethereumjs-testrpc@2.0 --save"');
console.log('For more information see https://github.com/ethereumjs/testrpc');
// TODO: should throw exception instead
return process.exit();
}
console.log("==============");
console.log("Tried to load testrpc but an error occurred. This is a problem with testrpc");
console.log('IMPORTANT: if you using a NodeJS version older than 6.9.1 then you need to install an older version of testrpc "npm install ethereumjs-testrpc@2.0 --save". Alternatively install node 6.9.1 and the testrpc 3.0');
console.log("==============");
throw e;
}
};
var Test = function(options) {
2017-02-27 12:49:25 +00:00
this.options = options || {};
2017-03-04 02:06:44 +00:00
var simOptions = this.options.simulatorOptions || {};
this.engine = new Engine({
env: this.options.env || 'test',
// TODO: confi will need to detect if this is a obj
embarkConfig: this.options.embarkConfig || 'embark.json',
interceptLogs: false
});
this.engine.init({
logger: new TestLogger({logLevel: this.options.logLevel || 'debug'})
});
2017-03-04 02:06:44 +00:00
this.sim = getSimulator();
this.web3 = new Web3();
this.web3.setProvider(this.sim.provider(simOptions));
2016-08-21 22:05:35 +00:00
};
2016-10-02 20:57:13 +00:00
Test.prototype.deployAll = function(contractsConfig, cb) {
2016-08-21 22:05:35 +00:00
var self = this;
2016-10-02 20:57:13 +00:00
async.waterfall([
2017-02-03 11:30:08 +00:00
function getConfig(callback) {
self.engine.config.contractsConfig = {contracts: contractsConfig};
callback();
2017-02-03 11:30:08 +00:00
},
function startServices(callback) {
//{abiType: 'contracts', embarkJS: false}
self.engine.startService("abi");
self.engine.startService("deployment", {
web3: self.web3,
trackContracts: false
2017-02-06 11:42:58 +00:00
});
callback();
2016-10-02 20:57:13 +00:00
},
function deploy(callback) {
self.engine.events.on('abi-contracts-vanila', function(vanillaABI) {
callback(null, vanillaABI);
2016-10-02 20:57:13 +00:00
});
self.engine.deployManager.deployContracts(function(err, result) {
if (err) {
console.log(err);
callback(err);
}
2016-10-02 20:57:13 +00:00
});
}
], function(err, result) {
2016-10-31 01:35:08 +00:00
if (err) {
console.log("got error");
process.exit();
2016-10-31 01:35:08 +00:00
}
// this should be part of the waterfall and not just something done at the
// end
2016-10-02 20:57:13 +00:00
self.web3.eth.getAccounts(function(err, accounts) {
2016-10-31 01:35:08 +00:00
if (err) {
throw new Error(err);
}
2017-02-18 21:53:49 +00:00
self.web3.eth.defaultAccount = accounts[0];
RunCode.doEval(result, self.web3); // jshint ignore:line
2017-02-27 12:49:25 +00:00
cb();
2016-08-21 22:05:35 +00:00
});
});
};
module.exports = Test;