aboutsummaryrefslogtreecommitdiffstats
path: root/formatters.outputLogFormatter.js
blob: 432bfb0d2f2b24c99e8ee3c91658094b3c373263 (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
var assert = require('assert');
var formatters = require('../lib/web3/formatters.js');

describe('formatters', function () {
    describe('outputLogFormatter', function () {
        it('should return the correct value', function () {
            
            assert.deepEqual(formatters.outputLogFormatter({
                transactionIndex: '0x3e8',
                logIndex: '0x3e8',
                blockNumber: '0x3e8',
                transactionHash: '0xd6960376d6c6dea93647383ffb245cfced97ccc5c7525397a543a72fdaea5265',
                blockHash: '0xd6960376d6c6dea93647383ffb245cfced97ccc5c7525397a543a72fdaea5265',
                data: '0x7b2274657374223a2274657374227',
                topics: ['0x68656c6c6f','0x6d79746f70696373']                
            }), {
                transactionIndex: 1000,
                logIndex: 1000,
                blockNumber: 1000,
                transactionHash: '0xd6960376d6c6dea93647383ffb245cfced97ccc5c7525397a543a72fdaea5265',
                blockHash: '0xd6960376d6c6dea93647383ffb245cfced97ccc5c7525397a543a72fdaea5265',
                data: '0x7b2274657374223a2274657374227',
                topics: ['0x68656c6c6f','0x6d79746f70696373']
            });
        });
        it('should return the correct value, when null values are present', function () {
            
            assert.deepEqual(formatters.outputLogFormatter({
                transactionIndex: null,
                logIndex: null,
                blockNumber: null,
                transactionHash: null,
                blockHash: null,
                data: '0x7b2274657374223a2274657374227',
                topics: ['0x68656c6c6f','0x6d79746f70696373']                
            }), {
                transactionIndex: null,
                logIndex: null,
                blockNumber: null,
                transactionHash: null,
                blockHash: null,
                data: '0x7b2274657374223a2274657374227',
                topics: ['0x68656c6c6f','0x6d79746f70696373']
            });
        });
    });
});