plugeth/test/event.js

51 lines
1.3 KiB
JavaScript
Raw Normal View History

2015-01-29 11:35:21 +00:00
var assert = require('assert');
var event = require('../lib/event.js');
describe('event', function () {
2015-01-31 00:30:19 +00:00
it('should create basic filter input object', function () {
2015-01-29 11:35:21 +00:00
// given
var address = '0x012345';
var signature = '0x987654';
// when
2015-01-29 12:32:32 +00:00
var impl = event(address, signature);
2015-01-29 11:35:21 +00:00
var result = impl();
// then
assert.equal(result.address, address);
2015-01-31 00:30:19 +00:00
assert.equal(result.topic.length, 1);
assert.equal(result.topic[0], signature);
2015-01-29 11:35:21 +00:00
});
2015-01-31 00:30:19 +00:00
it('should create basic filter input object', function () {
// given
var address = '0x012345';
var signature = '0x987654';
var options = {
earliest: 1,
latest: 2,
offset: 3,
max: 4
};
// when
var impl = event(address, signature);
var result = impl({}, options);
// then
assert.equal(result.address, address);
assert.equal(result.topic.length, 1);
assert.equal(result.topic[0], signature);
assert.equal(result.earliest, options.earliest);
assert.equal(result.latest, options.latest);
assert.equal(result.offset, options.offset);
assert.equal(result.max, options.max);
});
2015-01-29 11:35:21 +00:00
});
2015-01-29 12:32:32 +00:00