forked from FlappyDEV/flappycore
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtest.PeerManager.js
42 lines (33 loc) · 961 Bytes
/
test.PeerManager.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
'use strict';
var chai = chai || require('chai');
var bitcore = bitcore || require('../bitcore');
var should = chai.should();
var PeerManager = bitcore.PeerManager;
describe('PeerManager', function() {
it('should be able to create class', function() {
should.exist(PeerManager);
});
it('should be able to create instance', function() {
var pm = new PeerManager();
should.exist(pm);
});
it('should be able to start instance', function() {
var pm = new PeerManager();
pm.start.bind(pm).should.not.throw();
});
it('should be able to stop instance', function() {
var pm = new PeerManager();
pm.start();
pm.stop.bind(pm).should.not.throw();
});
it('should extend default config with passed config', function() {
var pm = new PeerManager({
proxy: {
host: 'localhost',
port: 9050
}
});
should.exist(pm.config.network);
should.exist(pm.config.proxy);
});
});