web3.js/test/web3.eth.filter.js

77 lines
1.9 KiB
JavaScript
Raw Normal View History

2015-03-24 03:16:21 -07:00
var chai = require('chai');
var web3 = require('../index');
var assert = chai.assert;
var FakeHttpProvider = require('./helpers/FakeHttpProvider');
var method = 'filter';
var tests = [{
args: [{
fromBlock: 0,
toBlock: 10,
address: '0x47d33b27bb249a2dbab4c0612bf9caf4c1950855'
}],
formattedArgs: [{
fromBlock: '0x0',
toBlock: '0xa',
address: '0x47d33b27bb249a2dbab4c0612bf9caf4c1950855',
2015-03-26 07:43:35 -07:00
topics: []
2015-04-28 08:01:37 -07:00
}],
result: '0xf',
formattedResult: '0xf',
call: 'eth_newFilter'
},{
args: [{
fromBlock: 'latest',
toBlock: 'latest',
address: '0x47d33b27bb249a2dbab4c0612bf9caf4c1950855'
}],
formattedArgs: [{
fromBlock: 'latest',
toBlock: 'latest',
address: '0x47d33b27bb249a2dbab4c0612bf9caf4c1950855',
topics: []
2015-03-24 03:16:21 -07:00
}],
result: '0xf',
formattedResult: '0xf',
call: 'eth_newFilter'
},{
2015-05-07 03:45:36 -07:00
args: ['latest'],
formattedArgs: [],
2015-03-24 03:16:21 -07:00
result: '0xf',
formattedResult: '0xf',
call: 'eth_newBlockFilter'
2015-05-07 03:45:36 -07:00
},{
args: ['pending'],
formattedArgs: [],
result: '0xf',
formattedResult: '0xf',
call: 'eth_newPendingTransactionFilter'
2015-03-24 03:16:21 -07:00
}];
2015-03-25 15:50:39 -07:00
describe('web3.eth', function () {
2015-03-24 03:16:21 -07:00
describe(method, function () {
tests.forEach(function (test, index) {
it('property test: ' + index, function () {
// given
var provider = new FakeHttpProvider();
web3.setProvider(provider);
provider.injectResult(test.result);
provider.injectValidation(function (payload) {
assert.equal(payload.jsonrpc, '2.0');
assert.equal(payload.method, test.call);
assert.deepEqual(payload.params, test.formattedArgs);
});
// call
web3.eth[method].apply(null, test.args);
});
});
});
});