mirror of https://github.com/embarklabs/embark.git
126 lines
4.2 KiB
JavaScript
126 lines
4.2 KiB
JavaScript
var Config = require('../lib/config/config.js');
|
|
var Deploy = require('../lib/deploy.js');
|
|
var Compiler = require('../lib/compiler.js');
|
|
var assert = require('assert');
|
|
|
|
setDeployConfig = function(config) {
|
|
var _blockchainConfig = (new Config.Blockchain()).loadConfigFile(config.blockchain);
|
|
var blockchainConfig = _blockchainConfig.config("development");
|
|
var compiler = new Compiler(_blockchainConfig);
|
|
var contractsConfig = new Config.Contracts(blockchainConfig, compiler);
|
|
contractsConfig.loadConfigFile(config.contracts);
|
|
contractsConfig.init(config.files);
|
|
compiler.init('development');
|
|
return new Deploy('development', config.files, blockchainConfig, contractsConfig);
|
|
}
|
|
|
|
describe('embark.deploy', function() {
|
|
|
|
describe('contracts as arguments to other contracts', function() {
|
|
var files = [
|
|
'test/support/contracts/wallet.sol',
|
|
'test/support/contracts/simple_storage.sol',
|
|
'test/support/contracts/another_storage.sol',
|
|
'test/support/contracts/wallets.sol'
|
|
];
|
|
|
|
describe('#deploy_contracts', function() {
|
|
var deploy = setDeployConfig({
|
|
files: files,
|
|
blockchain: 'test/support/blockchain.yml',
|
|
contracts: 'test/support/arguments.yml'
|
|
});
|
|
deploy.deploy_contracts("development");
|
|
|
|
it("should deploy contracts", function() {
|
|
var all_contracts = ['Wallet', 'SimpleStorage', 'AnotherStorage', 'Wallets'];
|
|
for(var i=0; i < all_contracts.length; i++) {
|
|
var className = all_contracts[i];
|
|
|
|
assert.equal(deploy.deployedContracts.hasOwnProperty(className), true);
|
|
}
|
|
});
|
|
|
|
});
|
|
|
|
describe('#generate_abi_file', function() {
|
|
var deploy = setDeployConfig({
|
|
files: files,
|
|
blockchain: 'test/support/blockchain.yml',
|
|
contracts: 'test/support/arguments.yml'
|
|
});
|
|
deploy.deployedContracts = {
|
|
"SimpleStorage": "0x123",
|
|
"AnotherStorage": "0x234"
|
|
}
|
|
deploy.contractDB = {
|
|
"SimpleStorage": {compiled: {info: {abiDefinition: 123}}},
|
|
"AnotherStorage": {compiled: {info: {abiDefinition: 234}}}
|
|
}
|
|
|
|
it("should deploy contracts", function() {
|
|
var result = deploy.generate_abi_file();
|
|
|
|
assert.strictEqual(result, "web3.setProvider(new web3.providers.HttpProvider('http://localhost:8101'));web3.eth.defaultAccount = web3.eth.accounts[0];SimpleStorageAbi = 123;SimpleStorageContract = web3.eth.contract(SimpleStorageAbi);SimpleStorage = SimpleStorageContract.at('0x123');AnotherStorageAbi = 234;AnotherStorageContract = web3.eth.contract(AnotherStorageAbi);AnotherStorage = AnotherStorageContract.at('0x234');");
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('contracts instances', function() {
|
|
var files = [
|
|
'test/support/contracts/simple_storage.sol'
|
|
];
|
|
|
|
describe('#deploy_contracts', function() {
|
|
var deploy = setDeployConfig({
|
|
files: files,
|
|
blockchain: 'test/support/blockchain.yml',
|
|
contracts: 'test/support/instances.yml'
|
|
});
|
|
deploy.deploy_contracts("development");
|
|
|
|
it("should deploy contracts", function() {
|
|
var all_contracts = ['SimpleStorage', 'BarStorage', 'FooStorage'];
|
|
for(var i=0; i < all_contracts.length; i++) {
|
|
var className = all_contracts[i];
|
|
|
|
assert.equal(deploy.deployedContracts.hasOwnProperty(className), true);
|
|
}
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
describe('contracts with addresses defined', function() {
|
|
var files = [
|
|
'test/support/contracts/simple_storage.sol'
|
|
];
|
|
|
|
describe('#deploy_contracts', function() {
|
|
var deploy = setDeployConfig({
|
|
files: files,
|
|
blockchain: 'test/support/blockchain.yml',
|
|
contracts: 'test/support/address.yml'
|
|
});
|
|
deploy.deploy_contracts("development");
|
|
|
|
it("should not deploy contracts with addresses defined", function() {
|
|
var expected_deploys = ['SimpleStorage', 'BarStorage', 'FooStorage'];
|
|
|
|
for(var i=0; i < expected_deploys.length; i++) {
|
|
var className = expected_deploys[i];
|
|
|
|
assert.equal(deploy.deployedContracts.hasOwnProperty(className), true);
|
|
}
|
|
|
|
assert.equal(deploy.deployedContracts['SimpleStorage'], '0x123');
|
|
assert.equal(deploy.deployedContracts['BarStorage'], '0x234');
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|