forked from web3/web3.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathweb3.eth.isSyncing.js
77 lines (68 loc) · 2.03 KB
/
web3.eth.isSyncing.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
var chai = require('chai');
var Web3 = require('../index');
var assert = chai.assert;
var FakeHttpProvider = require('./helpers/FakeHttpProvider');
var method = 'isSyncing';
var tests = [{
args: [],
formattedArgs: [],
result: [{
startingBlock: '0xb',
currentBlock: '0xb',
highestBlock: '0xb'
}],
formattedResult: {
startingBlock: 11,
currentBlock: 11,
highestBlock: 11
},
call: 'eth_syncing'
}, {
args: [],
formattedArgs: [],
result: [{
startingBlock: '0xb',
currentBlock: '0xb',
highestBlock: '0xb',
knownStates: '0xb',
pulledStates: '0xb'
}],
formattedResult: {
startingBlock: 11,
currentBlock: 11,
highestBlock: 11,
knownStates: 11,
pulledStates: 11
},
call: 'eth_syncing'
}];
describe('eth', function () {
describe(method, function () {
tests.forEach(function (test, index) {
it('property test: ' + index, function (done) {
// given
var provider = new FakeHttpProvider();
var web3 = new Web3(provider);
provider.injectBatchResults(test.result);
provider.injectValidation(function(payload) {
assert.equal(payload[0].jsonrpc, '2.0', 'failed');
assert.equal(payload[0].method, test.call);
assert.deepEqual(payload[0].params, test.formattedArgs);
});
var count = 1;
// TODO results seem to be overwritten
// call
var syncing = web3.eth[method](function(e, res){
if(count === 1) {
assert.isTrue(res);
count++;
} else {
assert.deepEqual(res, test.formattedResult);
syncing.stopWatching();
done();
}
});
});
});
});
});