104 lines
3.0 KiB
JavaScript
104 lines
3.0 KiB
JavaScript
/*globals describe, it*/
|
|
const Blockchain = require('../lib/cmds/blockchain/blockchain');
|
|
const constants = require('../lib/constants.json');
|
|
const {defaultHost} = require('../lib/utils/host');
|
|
|
|
const assert = require('assert');
|
|
|
|
describe('embark.Blockchain', function () {
|
|
//let Client = function() {};
|
|
//Client.prototype.name = "ClientName";
|
|
|
|
describe('#initializer', function () {
|
|
//let client = new Client();
|
|
|
|
describe('with empty config', function () {
|
|
it('should have a default config', function (done) {
|
|
let config = {
|
|
networkType: 'custom',
|
|
genesisBlock: false,
|
|
geth_bin: 'geth',
|
|
datadir: false,
|
|
mineWhenNeeded: false,
|
|
rpcHost: defaultHost,
|
|
rpcPort: 8545,
|
|
rpcApi: ['eth', 'web3', 'net', 'debug'],
|
|
rpcCorsDomain: false,
|
|
networkId: 12301,
|
|
port: 30303,
|
|
nodiscover: false,
|
|
maxpeers: 25,
|
|
mine: false,
|
|
vmdebug: false,
|
|
whisper: true,
|
|
account: {},
|
|
bootnodes: "",
|
|
wsApi: ["eth", "web3", "net", "shh", "debug"],
|
|
wsHost: defaultHost,
|
|
wsOrigins: false,
|
|
wsPort: 8546,
|
|
wsRPC: true,
|
|
targetGasLimit: false,
|
|
syncMode: undefined,
|
|
syncmode: undefined,
|
|
verbosity: undefined,
|
|
proxy: true
|
|
};
|
|
let blockchain = new Blockchain(config, 'geth');
|
|
|
|
if(config.proxy){
|
|
config.wsPort += constants.blockchain.servicePortOnProxy;
|
|
config.rpcPort += constants.blockchain.servicePortOnProxy;
|
|
}
|
|
assert.deepEqual(blockchain.config, config);
|
|
done();
|
|
});
|
|
});
|
|
|
|
describe('with config', function () {
|
|
it('should take config params', function (done) {
|
|
let config = {
|
|
networkType: 'livenet',
|
|
genesisBlock: 'foo/bar/genesis.json',
|
|
geth_bin: 'geth',
|
|
datadir: '/foo/datadir/',
|
|
mineWhenNeeded: true,
|
|
rpcHost: defaultHost,
|
|
rpcPort: 12345,
|
|
rpcApi: ['eth', 'web3', 'net', 'debug'],
|
|
rpcCorsDomain: true,
|
|
networkId: 1,
|
|
port: 123456,
|
|
nodiscover: true,
|
|
maxpeers: 25,
|
|
mine: true,
|
|
vmdebug: false,
|
|
whisper: false,
|
|
account: {},
|
|
bootnodes: "",
|
|
wsApi: ["eth", "web3", "net", "shh", "debug"],
|
|
wsHost: defaultHost,
|
|
wsOrigins: false,
|
|
wsPort: 12346,
|
|
wsRPC: true,
|
|
targetGasLimit: false,
|
|
syncMode: undefined,
|
|
syncmode: undefined,
|
|
verbosity: undefined,
|
|
proxy: true
|
|
};
|
|
let blockchain = new Blockchain(config, 'geth');
|
|
|
|
if(config.proxy){
|
|
config.wsPort += constants.blockchain.servicePortOnProxy;
|
|
config.rpcPort += constants.blockchain.servicePortOnProxy;
|
|
}
|
|
|
|
assert.deepEqual(blockchain.config, config);
|
|
done();
|
|
});
|
|
});
|
|
|
|
});
|
|
});
|