embark/lib/tests/test.js

147 lines
4.6 KiB
JavaScript
Raw Normal View History

2018-06-01 17:42:05 +00:00
const async = require('async');
2018-06-01 17:33:11 +00:00
const Engine = require('../core/engine.js');
const TestLogger = require('./test_logger.js');
const Web3 = require('web3');
const utils = require('../utils/utils');
2018-06-01 17:42:05 +00:00
const constants = require('../constants');
2017-06-26 13:01:54 +00:00
2018-06-01 17:33:11 +00:00
function getSimulator() {
2017-03-04 02:06:44 +00:00
try {
2018-06-01 17:33:11 +00:00
return require('ganache-cli');
2017-03-04 02:06:44 +00:00
} catch (e) {
2018-06-01 17:33:11 +00:00
const moreInfo = 'For more information see https://github.com/trufflesuite/ganache-cli';
2017-03-04 02:06:44 +00:00
if (e.code === 'MODULE_NOT_FOUND') {
2018-06-01 17:33:11 +00:00
console.error(__('Simulator not found; Please install it with "%s"', 'npm install ganache-cli --save'));
console.error(moreInfo);
throw e;
2017-03-04 02:06:44 +00:00
}
2018-06-01 17:33:11 +00:00
console.error("==============");
console.error(__("Tried to load Ganache CLI (testrpc), but an error occurred. This is a problem with Ganache CLI"));
console.error(moreInfo);
console.error("==============");
2017-03-04 02:06:44 +00:00
throw e;
}
2018-06-01 17:33:11 +00:00
}
class Test {
constructor(options) {
this.options = options || {};
this.simOptions = this.options.simulatorOptions || {};
2018-06-01 17:43:43 +00:00
this.contracts = {};
2018-06-01 17:33:11 +00:00
this.web3 = new Web3();
if (this.simOptions.node) {
this.web3.setProvider(new this.web3.providers.HttpProvider(this.simOptions.node));
} else {
this.sim = getSimulator();
this.web3.setProvider(this.sim.provider(this.simOptions));
}
2018-05-16 23:24:08 +00:00
2018-06-01 17:33:11 +00:00
this.engine = new Engine({
env: this.options.env || 'test',
2018-06-01 17:42:05 +00:00
// TODO: config will need to detect if this is a obj
2018-06-01 17:33:11 +00:00
embarkConfig: this.options.embarkConfig || 'embark.json',
interceptLogs: false
});
2017-10-13 09:56:42 +00:00
2018-06-01 17:33:11 +00:00
this.engine.init({
logger: new TestLogger({logLevel: 'debug'})
2017-06-26 13:01:54 +00:00
});
2018-06-01 17:33:11 +00:00
2018-06-01 17:42:05 +00:00
this.engine.startService("libraryManager");
this.engine.startService("codeRunner");
this.engine.startService("web3", {
web3: this.web3
});
this.engine.startService("deployment", {
trackContracts: false
});
this.engine.startService("codeGenerator");
}
2018-06-01 17:43:43 +00:00
init(callback) {
this.engine.contractsManager.build(() => {
callback();
});
}
2018-06-01 17:42:05 +00:00
config(options, callback) {
this.options = utils.recursiveMerge(this.options, options);
this.simOptions = this.options.simulatorOptions || {};
this._deploy(options, (err, accounts) => {
if (err) {
console.error(err);
return callback(err);
}
callback(null, accounts);
});
}
2018-06-01 17:43:43 +00:00
_deploy(config, callback) {
2018-06-01 17:42:05 +00:00
const self = this;
async.waterfall([
2018-06-01 17:43:43 +00:00
function getConfig(next) {
2018-06-01 17:42:05 +00:00
let _versions_default = self.engine.config.contractsConfig.versions;
self.engine.config.contractsConfig = {contracts: config.contracts, versions: _versions_default};
self.engine.events.emit(constants.events.contractConfigChanged, self.engine.config.contractsConfig);
2018-06-01 17:43:43 +00:00
next();
2018-06-01 17:42:05 +00:00
},
2018-06-01 17:43:43 +00:00
function deploy(next) {
2018-06-01 17:42:05 +00:00
self.engine.deployManager.gasLimit = 6000000;
self.engine.contractsManager.gasLimit = 6000000;
self.engine.deployManager.fatalErrors = true;
self.engine.deployManager.deployOnlyOnConfig = true;
2018-06-01 17:43:43 +00:00
self.engine.deployManager.deployContracts(function (err) {
if (err) {
return next(err);
}
next();
});
},
function getAccounts(next) {
self.web3.eth.getAccounts(function (err, accounts) {
2018-06-01 17:42:05 +00:00
if (err) {
2018-06-01 17:43:43 +00:00
return next(err);
2018-06-01 17:42:05 +00:00
}
2018-06-01 17:43:43 +00:00
self.accounts = accounts;
self.web3.eth.defaultAccount = accounts[0];
next();
2018-06-01 17:42:05 +00:00
});
2018-06-01 17:43:43 +00:00
},
function createContractObject(next) {
async.each(Object.keys(self.contracts), (contractName, eachCb) => {
const contract = self.engine.contractsManager.contracts[contractName];
Object.assign(self.contracts[contractName], new self.web3.eth.Contract(contract.abiDefinition, contract.address,
{from: self.web3.defaultAccount, gas: 6000000}));
2018-06-01 17:43:43 +00:00
eachCb();
}, next);
2018-06-01 17:42:05 +00:00
}
2018-06-01 17:43:43 +00:00
], function (err) {
2018-06-01 17:42:05 +00:00
if (err) {
console.log(__('terminating due to error'));
2018-06-01 17:43:43 +00:00
throw new Error(err);
2018-06-01 17:42:05 +00:00
}
2018-06-01 17:43:43 +00:00
callback();
2018-06-01 17:42:05 +00:00
});
2018-06-01 17:35:15 +00:00
}
2018-06-01 17:43:43 +00:00
require(module) {
if (module.startsWith('contracts/')) {
const contractName = module.substr(10);
if (!this.engine.contractsManager.contracts[contractName]) {
throw new Error(__('No contract with the name %s', contractName));
}
if (this.contracts[contractName]) {
return this.contracts[contractName];
}
const contract = this.engine.contractsManager.contracts[contractName];
this.contracts[contractName] = new this.web3.eth.Contract(contract.abiDefinition, contract.address);
2018-06-01 17:43:43 +00:00
return this.contracts[contractName];
}
throw new Error(__('Unknown module %s', module));
}
2018-06-01 17:33:11 +00:00
}
2016-08-21 22:05:35 +00:00
module.exports = Test;