aboutsummaryrefslogtreecommitdiffstats
path: root/test/event.js
blob: 43f8dcf386d9be2494c35560ec71c35eed1f2a27 (plain) (blame)
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
var assert = require('assert');
var event = require('../lib/event.js');

describe('event', function () {
    it('should create basic filter input object', function () {
        
        // given
        var address = '0x012345'; 
        var signature = '0x987654';

        // when
        var impl = event(address, signature);
        var result = impl();

        // then
        assert.equal(result.address, address); 
        assert.equal(result.topic.length, 1);
        assert.equal(result.topic[0], signature);

    });

    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);
    
    });

});