2019-09-11 18:32:54 +00:00
|
|
|
import sinon from 'sinon';
|
|
|
|
import assert from 'assert';
|
2020-02-20 23:47:01 +00:00
|
|
|
import { fakeEmbark } from 'embark-testing';
|
2019-09-11 18:32:54 +00:00
|
|
|
import Deployment from '../src/';
|
|
|
|
|
|
|
|
describe('stack/deployment', () => {
|
|
|
|
|
2019-09-12 21:26:57 +00:00
|
|
|
const { embark, plugins } = fakeEmbark();
|
|
|
|
|
2020-02-20 23:47:01 +00:00
|
|
|
// eslint-disable-next-line no-unused-vars
|
2019-09-11 18:32:54 +00:00
|
|
|
let deployment;
|
|
|
|
let deployedContracts = [];
|
|
|
|
|
|
|
|
let beforeAllAction, beforeDeployAction, shouldDeployAction, deployedAction, afterAllAction;
|
|
|
|
let deployFn;
|
|
|
|
let doneCb;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2019-12-11 17:29:05 +00:00
|
|
|
embark.config.blockchainConfig = { enabled: true };
|
2019-09-12 21:26:57 +00:00
|
|
|
deployment = new Deployment(embark, { plugins });
|
2019-09-11 18:32:54 +00:00
|
|
|
|
|
|
|
beforeAllAction = sinon.spy((params, cb) => { cb(null, params); });
|
|
|
|
beforeDeployAction = sinon.spy((params, cb) => { cb(null, params); });
|
|
|
|
shouldDeployAction = sinon.spy((params, cb) => { cb(null, params); });
|
|
|
|
deployedAction = sinon.spy((params, cb) => { cb(null, params); });
|
|
|
|
afterAllAction = sinon.spy((params, cb) => { cb(null, params); });
|
|
|
|
|
|
|
|
deployFn = sinon.spy((contract, done) => {
|
|
|
|
deployedContracts.push(contract);
|
|
|
|
done(null, {}); // deployer needs to finish with a receipt object
|
|
|
|
});
|
|
|
|
|
|
|
|
doneCb = sinon.fake();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
deployedContracts = [];
|
2019-09-12 21:26:57 +00:00
|
|
|
embark.teardown();
|
2019-09-11 18:32:54 +00:00
|
|
|
sinon.restore();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('it should register deployFn and deploy contract by using it', () => {
|
|
|
|
|
|
|
|
let testContract = { className: 'TestContract', shouldDeploy: true };
|
|
|
|
|
2019-09-12 21:26:57 +00:00
|
|
|
embark.registerActionForEvent('deployment:contract:beforeDeploy', beforeDeployAction);
|
|
|
|
embark.registerActionForEvent('deployment:contract:shouldDeploy', shouldDeployAction);
|
|
|
|
embark.registerActionForEvent('deployment:contract:deployed', deployedAction);
|
2019-09-11 18:32:54 +00:00
|
|
|
|
2019-09-12 21:26:57 +00:00
|
|
|
embark.events.request('deployment:deployer:register', 'ethereum', deployFn);
|
|
|
|
embark.events.request('deployment:contract:deploy', testContract, doneCb);
|
2019-09-11 18:32:54 +00:00
|
|
|
|
2020-02-20 23:47:01 +00:00
|
|
|
assert(beforeDeployAction.calledOnce);
|
|
|
|
assert(shouldDeployAction.calledOnce);
|
2019-09-11 18:32:54 +00:00
|
|
|
assert(deployFn.calledWith(testContract));
|
|
|
|
assert.equal(deployedContracts[0], testContract);
|
|
|
|
assert(doneCb.calledOnce);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('it should deploy list of contracts', () => {
|
|
|
|
|
|
|
|
let testContracts = [
|
|
|
|
{ className: 'Contract1', shouldDeploy: true },
|
|
|
|
{ className: 'Contract2', shouldDeploy: true },
|
|
|
|
{ className: 'Contract3', shouldDeploy: true }
|
|
|
|
];
|
|
|
|
|
2019-09-12 21:26:57 +00:00
|
|
|
embark.registerActionForEvent('deployment:deployContracts:beforeAll', beforeAllAction);
|
|
|
|
embark.registerActionForEvent('deployment:contract:beforeDeploy', beforeDeployAction);
|
|
|
|
embark.registerActionForEvent('deployment:contract:shouldDeploy', shouldDeployAction);
|
|
|
|
embark.registerActionForEvent('deployment:contract:deployed', deployedAction);
|
|
|
|
embark.registerActionForEvent('deployment:deployContracts:afterAll', afterAllAction);
|
2019-09-11 18:32:54 +00:00
|
|
|
|
2019-09-12 21:26:57 +00:00
|
|
|
embark.events.request('deployment:deployer:register', 'ethereum', deployFn);
|
|
|
|
embark.events.request('deployment:contracts:deploy', testContracts, {}, doneCb);
|
2019-09-11 18:32:54 +00:00
|
|
|
|
|
|
|
assert(beforeAllAction.calledOnce);
|
|
|
|
|
2019-09-12 21:26:57 +00:00
|
|
|
embark.events.assert.commandHandlerCalledWith('deployment:contract:deploy', testContracts[0]);
|
|
|
|
embark.events.assert.commandHandlerCalledWith('deployment:contract:deploy', testContracts[1]);
|
|
|
|
embark.events.assert.commandHandlerCalledWith('deployment:contract:deploy', testContracts[2]);
|
2019-09-11 18:32:54 +00:00
|
|
|
|
|
|
|
assert(deployFn.calledWith(testContracts[0]));
|
|
|
|
assert(deployFn.calledWith(testContracts[1]));
|
|
|
|
assert(deployFn.calledWith(testContracts[2]));
|
|
|
|
|
|
|
|
assert.equal(deployedAction.callCount, 3);
|
|
|
|
assert.equal(deployedContracts.length, 3);
|
|
|
|
assert(afterAllAction.calledOnce);
|
|
|
|
assert(doneCb.calledOnce);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('it should deploy contracts in correct order', () => {
|
|
|
|
let testContracts = [
|
|
|
|
{ className: 'A', shouldDeploy: true },
|
|
|
|
{ className: 'B', shouldDeploy: true },
|
|
|
|
{ className: 'C', shouldDeploy: true },
|
|
|
|
{ className: 'D', shouldDeploy: true },
|
|
|
|
{ className: 'E', shouldDeploy: true },
|
|
|
|
{ className: 'F', shouldDeploy: true }
|
|
|
|
];
|
|
|
|
|
|
|
|
let testContractDependencies = {
|
|
|
|
A: ['B'],
|
|
|
|
B: [],
|
|
|
|
C: ['A'],
|
|
|
|
D: ['F'],
|
|
|
|
E: ['A'],
|
|
|
|
F: []
|
|
|
|
};
|
|
|
|
|
2019-09-12 21:26:57 +00:00
|
|
|
embark.registerActionForEvent('deployment:deployContracts:beforeAll', beforeAllAction);
|
|
|
|
embark.registerActionForEvent('deployment:contract:beforeDeploy', beforeDeployAction);
|
|
|
|
embark.registerActionForEvent('deployment:contract:shouldDeploy', shouldDeployAction);
|
|
|
|
embark.registerActionForEvent('deployment:contract:deployed', deployedAction);
|
|
|
|
embark.registerActionForEvent('deployment:deployContracts:afterAll', afterAllAction);
|
2019-09-11 18:32:54 +00:00
|
|
|
|
2019-09-12 21:26:57 +00:00
|
|
|
embark.events.request('deployment:deployer:register', 'ethereum', deployFn);
|
|
|
|
embark.events.request('deployment:contracts:deploy', testContracts, testContractDependencies, doneCb);
|
2019-09-11 18:32:54 +00:00
|
|
|
|
|
|
|
assert.equal(deployedContracts.length, 6);
|
|
|
|
|
|
|
|
// expected result: [B, F, A, D, C, E]
|
|
|
|
assert.equal(deployedContracts[0].className, testContracts[1].className);
|
|
|
|
assert.equal(deployedContracts[1].className, testContracts[5].className);
|
|
|
|
assert.equal(deployedContracts[2].className, testContracts[0].className);
|
|
|
|
assert.equal(deployedContracts[3].className, testContracts[3].className);
|
|
|
|
assert.equal(deployedContracts[4].className, testContracts[2].className);
|
|
|
|
assert.equal(deployedContracts[5].className, testContracts[4].className);
|
|
|
|
});
|
|
|
|
});
|