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');
|
2018-06-01 17:42:05 +00:00
|
|
|
const constants = require('../constants');
|
2018-05-30 20:17:17 +00:00
|
|
|
const Events = require('../core/events');
|
2018-06-01 17:44:49 +00:00
|
|
|
const cloneDeep = require('clone-deep');
|
2018-06-06 19:33:48 +00:00
|
|
|
const AccountParser = require('../contracts/accountParser');
|
2018-06-07 20:07:58 +00:00
|
|
|
const Provider = require('../contracts/provider');
|
2017-06-26 13:01:54 +00:00
|
|
|
|
2018-06-10 16:55:59 +00:00
|
|
|
const EmbarkJS = require('../../js/embark_node');
|
2018-06-10 16:11:34 +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 || {};
|
2018-06-07 20:07:58 +00:00
|
|
|
this.simOptions = {};
|
2018-06-01 17:43:43 +00:00
|
|
|
this.contracts = {};
|
2018-05-30 20:17:17 +00:00
|
|
|
this.events = new Events();
|
|
|
|
this.ready = true;
|
2018-06-08 16:30:44 +00:00
|
|
|
this.error = false;
|
2018-06-01 15:30:02 +00:00
|
|
|
this.builtContracts = {};
|
2018-06-04 14:45:50 +00:00
|
|
|
this.compiledContracts = {};
|
2018-06-01 17:43:43 +00:00
|
|
|
|
2018-06-01 17:33:11 +00:00
|
|
|
this.web3 = new Web3();
|
2018-06-06 19:33:48 +00:00
|
|
|
}
|
|
|
|
|
2018-06-07 20:07:58 +00:00
|
|
|
initWeb3Provider(callback) {
|
|
|
|
if (this.simOptions.host) {
|
|
|
|
const providerOptions = {
|
|
|
|
web3: this.web3,
|
|
|
|
accountsConfig: this.simOptions.accounts,
|
|
|
|
logger: this.engine.logger,
|
|
|
|
isDev: false,
|
|
|
|
web3Endpoint: 'http://' + this.simOptions.host + ':' + this.simOptions.port
|
|
|
|
};
|
|
|
|
this.provider = new Provider(providerOptions);
|
|
|
|
return this.provider.startWeb3Provider(callback);
|
2018-06-06 19:33:48 +00:00
|
|
|
}
|
2018-06-07 20:07:58 +00:00
|
|
|
|
|
|
|
if (this.simOptions.accounts) {
|
|
|
|
this.simOptions.accounts = this.simOptions.accounts.map((account) => {
|
|
|
|
return {balance: account.hexBalance, secretKey: account.privateKey};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
this.sim = getSimulator();
|
|
|
|
this.web3.setProvider(this.sim.provider(this.simOptions));
|
|
|
|
callback();
|
2018-06-06 19:33:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
initDeployServices() {
|
2018-06-01 17:42:05 +00:00
|
|
|
this.engine.startService("web3", {
|
|
|
|
web3: this.web3
|
|
|
|
});
|
|
|
|
this.engine.startService("deployment", {
|
2018-06-04 17:12:51 +00:00
|
|
|
trackContracts: false,
|
2018-06-04 22:15:27 +00:00
|
|
|
ipcRole: 'client'
|
2018-06-01 17:42:05 +00:00
|
|
|
});
|
2018-06-01 18:12:10 +00:00
|
|
|
}
|
|
|
|
|
2018-06-01 17:43:43 +00:00
|
|
|
init(callback) {
|
2018-06-01 17:44:49 +00:00
|
|
|
const self = this;
|
2018-06-07 20:07:58 +00:00
|
|
|
|
|
|
|
this.initWeb3Provider((err) => {
|
|
|
|
if (err) {
|
|
|
|
return callback(err);
|
|
|
|
}
|
|
|
|
this.engine = new Engine({
|
|
|
|
env: this.options.env || 'test',
|
|
|
|
// TODO: config will need to detect if this is a obj
|
|
|
|
embarkConfig: this.options.embarkConfig || 'embark.json',
|
|
|
|
interceptLogs: false
|
|
|
|
});
|
|
|
|
|
|
|
|
this.engine.init({
|
2018-06-13 13:44:19 +00:00
|
|
|
logger: new TestLogger({logLevel: this.options.loglevel})
|
2018-06-07 20:07:58 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
this.versions_default = this.engine.config.contractsConfig.versions;
|
|
|
|
// Reset contract config to nothing to make sure we deploy only what we want
|
|
|
|
this.engine.config.contractsConfig = {
|
|
|
|
contracts: {},
|
2018-06-07 20:09:54 +00:00
|
|
|
versions: this.versions_default
|
2018-06-07 20:07:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
this.engine.startService("libraryManager");
|
|
|
|
this.engine.startService("codeRunner");
|
|
|
|
this.initDeployServices();
|
|
|
|
this.engine.startService("codeGenerator");
|
|
|
|
|
|
|
|
this.engine.contractsManager.build(() => {
|
|
|
|
self.builtContracts = cloneDeep(self.engine.contractsManager.contracts);
|
|
|
|
self.compiledContracts = cloneDeep(self.engine.contractsManager.compiledContracts);
|
|
|
|
callback();
|
|
|
|
});
|
2018-06-01 17:43:43 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-05-30 20:17:17 +00:00
|
|
|
onReady(callback) {
|
2018-06-08 16:30:44 +00:00
|
|
|
const self = this;
|
2018-05-30 20:17:17 +00:00
|
|
|
if (this.ready) {
|
|
|
|
return callback();
|
|
|
|
}
|
2018-06-08 16:30:44 +00:00
|
|
|
if (this.error) {
|
|
|
|
return callback(this.error);
|
|
|
|
}
|
2018-06-08 16:51:04 +00:00
|
|
|
|
|
|
|
let errorCallback, readyCallback;
|
|
|
|
|
|
|
|
errorCallback = (err) => {
|
|
|
|
self.events.removeListener('ready', readyCallback);
|
2018-06-08 10:14:46 +00:00
|
|
|
callback(err);
|
2018-06-08 16:51:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
readyCallback = () => {
|
|
|
|
self.events.removeListener('deployError', errorCallback);
|
|
|
|
callback();
|
|
|
|
};
|
|
|
|
|
|
|
|
this.events.once('ready', readyCallback);
|
|
|
|
this.events.once('deployError', errorCallback);
|
2018-05-30 20:17:17 +00:00
|
|
|
}
|
|
|
|
|
2018-06-01 17:42:05 +00:00
|
|
|
config(options, callback) {
|
2018-06-07 20:07:58 +00:00
|
|
|
const self = this;
|
2018-06-08 10:17:51 +00:00
|
|
|
if (typeof (options) === 'function') {
|
2018-06-08 00:11:49 +00:00
|
|
|
callback = options;
|
|
|
|
options = {};
|
|
|
|
}
|
2018-05-30 20:17:17 +00:00
|
|
|
if (!callback) {
|
2018-06-01 18:12:10 +00:00
|
|
|
callback = function () {
|
|
|
|
};
|
2018-05-30 20:17:17 +00:00
|
|
|
}
|
2018-05-30 21:35:54 +00:00
|
|
|
if (!options.contracts) {
|
2018-06-08 00:09:07 +00:00
|
|
|
options.contracts = {};
|
2018-05-30 21:35:54 +00:00
|
|
|
}
|
2018-06-07 20:07:58 +00:00
|
|
|
self.ready = false;
|
2018-06-01 17:44:49 +00:00
|
|
|
|
2018-06-07 20:07:58 +00:00
|
|
|
async.waterfall([
|
|
|
|
function checkDeploymentOptions(next) {
|
|
|
|
if (!options.deployment) {
|
|
|
|
if (!self.simOptions.host && !self.simOptions.accounts) {
|
|
|
|
return next();
|
|
|
|
}
|
|
|
|
self.simOptions = {};
|
|
|
|
} else {
|
|
|
|
self.simOptions = {};
|
|
|
|
let resetServices = false;
|
|
|
|
if (options.deployment.accounts) {
|
|
|
|
// Account setup
|
|
|
|
self.simOptions.accounts = AccountParser.parseAccountsConfig(options.deployment.accounts, self.web3);
|
|
|
|
resetServices = true;
|
|
|
|
}
|
|
|
|
if (options.deployment.host && options.deployment.port && options.deployment.type) {
|
|
|
|
if (options.deployment.type !== 'rpc') {
|
|
|
|
throw new Error(__("contracts config error: unknown deployment type %s", options.deployment.type));
|
|
|
|
}
|
|
|
|
Object.assign(self.simOptions, {host: options.deployment.host, port: options.deployment.port});
|
|
|
|
resetServices = true;
|
|
|
|
}
|
|
|
|
if (!resetServices) {
|
|
|
|
return next();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
self.initWeb3Provider((err) => {
|
|
|
|
if (err) {
|
|
|
|
return next(err);
|
|
|
|
}
|
|
|
|
self.initDeployServices();
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
function resetContracts(next) {
|
|
|
|
self.engine.contractsManager.contracts = cloneDeep(self.builtContracts);
|
|
|
|
self.engine.contractsManager.compiledContracts = cloneDeep(self.compiledContracts);
|
|
|
|
next();
|
|
|
|
},
|
|
|
|
function deploy(next) {
|
|
|
|
self._deploy(options, (err, accounts) => {
|
|
|
|
if (err) {
|
2018-06-08 10:14:46 +00:00
|
|
|
self.events.emit('deployError', err);
|
2018-06-08 16:30:44 +00:00
|
|
|
self.error = err;
|
2018-06-07 20:07:58 +00:00
|
|
|
return next(err);
|
|
|
|
}
|
2018-06-08 10:14:46 +00:00
|
|
|
self.ready = true;
|
2018-06-08 16:30:44 +00:00
|
|
|
self.error = false;
|
2018-06-08 10:14:46 +00:00
|
|
|
self.events.emit('ready');
|
2018-06-07 20:07:58 +00:00
|
|
|
next(null, accounts);
|
|
|
|
});
|
2018-06-01 17:42:05 +00:00
|
|
|
}
|
2018-06-07 20:07:58 +00:00
|
|
|
], callback);
|
2018-06-01 17:42:05 +00:00
|
|
|
}
|
|
|
|
|
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 15:30:02 +00:00
|
|
|
self.engine.config.contractsConfig = {contracts: config.contracts, versions: self.versions_default};
|
2018-06-01 17:42:05 +00:00
|
|
|
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 getAccounts(next) {
|
2018-05-30 12:55:34 +00:00
|
|
|
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];
|
2018-06-06 17:54:20 +00:00
|
|
|
next(null, accounts);
|
2018-06-01 17:42:05 +00:00
|
|
|
});
|
2018-06-01 17:43:43 +00:00
|
|
|
},
|
2018-06-11 18:39:17 +00:00
|
|
|
function getBalance(accounts, next) {
|
2018-06-11 21:22:08 +00:00
|
|
|
self.web3.eth.getBalance(self.web3.eth.defaultAccount).then((balance) => {
|
|
|
|
if (parseInt(balance, 10) === 0) {
|
2018-06-11 18:39:17 +00:00
|
|
|
console.warn("Warning: default account has no funds");
|
|
|
|
}
|
|
|
|
next(null, accounts);
|
2018-06-11 21:22:08 +00:00
|
|
|
}).catch((err) => { next(err); });
|
2018-06-11 18:39:17 +00:00
|
|
|
},
|
|
|
|
function deploy(accounts, next) {
|
|
|
|
self.engine.deployManager.gasLimit = 6000000;
|
|
|
|
self.engine.contractsManager.gasLimit = 6000000;
|
|
|
|
self.engine.deployManager.fatalErrors = true;
|
|
|
|
self.engine.deployManager.deployOnlyOnConfig = true;
|
|
|
|
self.engine.events.request('deploy:contracts', () => {
|
|
|
|
next(null, accounts);
|
|
|
|
});
|
|
|
|
},
|
2018-06-06 17:54:20 +00:00
|
|
|
function createContractObject(accounts, next) {
|
2018-06-01 17:44:49 +00:00
|
|
|
async.each(Object.keys(self.engine.contractsManager.contracts), (contractName, eachCb) => {
|
2018-06-01 17:43:43 +00:00
|
|
|
const contract = self.engine.contractsManager.contracts[contractName];
|
2018-06-07 23:08:18 +00:00
|
|
|
let data;
|
2018-06-01 17:44:49 +00:00
|
|
|
if (!self.contracts[contractName]) {
|
|
|
|
self.contracts[contractName] = {};
|
2018-06-07 23:08:18 +00:00
|
|
|
data = "";
|
|
|
|
} else {
|
|
|
|
data = self.contracts[contractName].options.data;
|
2018-06-01 17:44:49 +00:00
|
|
|
}
|
2018-06-10 16:11:34 +00:00
|
|
|
Object.assign(self.contracts[contractName], new EmbarkJS.Contract({abi: contract.abiDefinition, address: contract.deployedAddress, from: self.web3.eth.defaultAccount, gas: 6000000, web3: self.web3}));
|
|
|
|
|
2018-06-06 16:47:16 +00:00
|
|
|
self.contracts[contractName].address = contract.deployedAddress;
|
2018-06-07 23:08:18 +00:00
|
|
|
if (self.contracts[contractName].options) {
|
2018-06-08 10:17:51 +00:00
|
|
|
self.contracts[contractName].options.from = self.contracts[contractName].options.from || self.web3.eth.defaultAccount;
|
2018-06-07 23:08:18 +00:00
|
|
|
self.contracts[contractName].options.data = data;
|
2018-06-11 17:37:06 +00:00
|
|
|
self.contracts[contractName].options.gas = 6000000;
|
2018-06-07 23:08:18 +00:00
|
|
|
}
|
2018-06-01 17:43:43 +00:00
|
|
|
eachCb();
|
2018-06-06 17:54:20 +00:00
|
|
|
}, (err) => {
|
|
|
|
next(err, accounts);
|
|
|
|
});
|
2018-06-01 17:42:05 +00:00
|
|
|
}
|
2018-06-06 17:54:20 +00:00
|
|
|
], function (err, accounts) {
|
2018-06-01 18:12:10 +00:00
|
|
|
if (err) {
|
2018-06-01 17:42:05 +00:00
|
|
|
console.log(__('terminating due to error'));
|
2018-06-01 17:44:49 +00:00
|
|
|
return callback(err);
|
2018-06-01 18:12:10 +00:00
|
|
|
}
|
2018-06-06 17:54:20 +00:00
|
|
|
callback(null, accounts);
|
2018-06-01 18:12:10 +00:00
|
|
|
});
|
2018-06-01 17:35:15 +00:00
|
|
|
}
|
2018-06-01 17:43:43 +00:00
|
|
|
|
|
|
|
require(module) {
|
2018-05-30 21:35:54 +00:00
|
|
|
if (module.startsWith('Embark/contracts/')) {
|
|
|
|
const contractName = module.substr(17);
|
2018-06-01 17:43:43 +00:00
|
|
|
if (this.contracts[contractName]) {
|
|
|
|
return this.contracts[contractName];
|
|
|
|
}
|
2018-05-31 13:52:37 +00:00
|
|
|
let contract = this.engine.contractsManager.contracts[contractName];
|
|
|
|
if (!contract) {
|
|
|
|
const contractNames = Object.keys(this.engine.contractsManager.contracts);
|
|
|
|
// It is probably an instanceof
|
|
|
|
contractNames.find(contrName => {
|
|
|
|
// Find a contract with a similar name
|
|
|
|
if (contractName.indexOf(contrName) > -1) {
|
|
|
|
contract = this.engine.contractsManager.contracts[contrName];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
// If still nothing, assign bogus one, we will redefine it anyway on deploy
|
|
|
|
if (!contract) {
|
2018-06-06 19:45:16 +00:00
|
|
|
console.warn(__('Could not recognize the contract name "%s"', contractName));
|
2018-05-31 13:52:37 +00:00
|
|
|
console.warn(__('If it is an instance of another contract, it will be reassigned on deploy'));
|
|
|
|
console.warn(__('Otherwise, you can rename the contract to contain the parent contract in the name eg: Token2 for Token'));
|
|
|
|
contract = this.engine.contractsManager.contracts[contractNames[0]];
|
|
|
|
}
|
|
|
|
}
|
2018-06-10 16:11:34 +00:00
|
|
|
this.contracts[contractName] = new EmbarkJS.Contract({abi: contract.abiDefinition, address: contract.address, from: this.web3.eth.defaultAccount, gas: 6000000, web3: this.web3});
|
2018-06-06 16:47:16 +00:00
|
|
|
this.contracts[contractName].address = contract.address;
|
2018-06-07 23:08:18 +00:00
|
|
|
this.contracts[contractName].options.data = contract.code;
|
2018-06-11 17:37:06 +00:00
|
|
|
this.contracts[contractName].options.gas = 6000000;
|
2018-06-08 10:17:51 +00:00
|
|
|
this.web3.eth.getAccounts().then((accounts) => {
|
2018-06-07 23:08:18 +00:00
|
|
|
this.contracts[contractName].options.from = contract.from || accounts[0];
|
|
|
|
});
|
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;
|