embark/test/blockchain.js

62 lines
1.6 KiB
JavaScript
Raw Normal View History

/*globals describe, it*/
2015-07-03 12:53:42 +00:00
var Blockchain = require('../lib/blockchain.js');
var assert = require('assert');
describe('embark.Blockchain', function() {
//var Client = function() {};
//Client.prototype.name = "ClientName";
describe('#initializer', function() {
//var client = new Client();
describe('with empty config', function() {
it('should have a default config', function() {
var config = {
networkType: 'custom',
genesisBlock: false,
datadir: false,
mineWhenNeeded: false,
rpcHost: 'localhost',
rpcPort: 8545,
rpcCorsDomain: false,
networkId: 12301,
port: 30303,
nodiscover: false,
2016-10-31 00:35:11 +00:00
maxpeers: 25,
mine: false,
whisper: true,
account: {}
};
var blockchain = Blockchain(config, 'geth');
assert.deepEqual(blockchain.config, config);
});
2015-07-03 12:53:42 +00:00
});
describe('with config', function() {
it('should take config params', function() {
var config = {
networkType: 'livenet',
genesisBlock: 'foo/bar/genesis.json',
datadir: '/foo/datadir/',
mineWhenNeeded: true,
rpcHost: 'someserver',
rpcPort: 12345,
rpcCorsDomain: true,
networkId: 1,
port: 123456,
nodiscover: true,
2016-10-31 00:35:11 +00:00
maxpeers: 25,
mine: true,
whisper: false,
account: {}
};
var blockchain = Blockchain(config, 'geth');
assert.deepEqual(blockchain.config, config);
2015-07-03 12:53:42 +00:00
});
});
});
2015-07-03 12:53:42 +00:00
});