aboutsummaryrefslogtreecommitdiffstats
path: root/event.encode.js
diff options
context:
space:
mode:
Diffstat (limited to 'event.encode.js')
-rw-r--r--event.encode.js232
1 files changed, 0 insertions, 232 deletions
diff --git a/event.encode.js b/event.encode.js
deleted file mode 100644
index 6d9850c0..00000000
--- a/event.encode.js
+++ /dev/null
@@ -1,232 +0,0 @@
-var chai = require('chai');
-var assert = chai.assert;
-var SolidityEvent = require('../lib/web3/event');
-
-var address = '0x1234567890123456789012345678901234567890';
-var signature = '0xffff';
-
-var tests = [{
- abi: {
- name: 'event1',
- inputs: []
- },
- indexed: {},
- options: {},
- expected: {
- address: address,
- topics: [
- signature
- ]
- }
-}, {
- abi: {
- name: 'event1',
- inputs: [{
- type: 'int',
- name: 'a',
- indexed: true
- }]
- },
- indexed: {
- a: 16
- },
- options: {},
- expected: {
- address: address,
- topics: [
- signature,
- '0x0000000000000000000000000000000000000000000000000000000000000010'
- ]
- }
-},{
- abi: {
- name: 'event1',
- inputs: [{
- type: 'int',
- name: 'a',
- indexed: true
- }, {
- type: 'int',
- name: 'b',
- indexed: true
- }, {
- type: 'int',
- name: 'c',
- indexed: false
- }, {
- type: 'int',
- name: 'd',
- indexed: true
- }]
- },
- indexed: {
- b: 4
- },
- options: {},
- expected: {
- address: address,
- topics: [
- signature, // signature
- null, // a
- '0x0000000000000000000000000000000000000000000000000000000000000004', // b
- null // d
- ]
- }
-}, {
- abi: {
- name: 'event1',
- inputs: [{
- type: 'int',
- name: 'a',
- indexed: true
- }, {
- type: 'int',
- name: 'b',
- indexed: true
- }]
- },
- indexed: {
- a: [16, 1],
- b: 2
- },
- options: {},
- expected: {
- address: address,
- topics: [
- signature,
- ['0x0000000000000000000000000000000000000000000000000000000000000010', '0x0000000000000000000000000000000000000000000000000000000000000001'],
- '0x0000000000000000000000000000000000000000000000000000000000000002'
- ]
- }
-}, {
- abi: {
- name: 'event1',
- inputs: [{
- type: 'int',
- name: 'a',
- indexed: true
- }]
- },
- indexed: {
- a: null
- },
- options: {},
- expected: {
- address: address,
- topics: [
- signature,
- null
- ]
- }
-}, {
- abi: {
- name: 'event1',
- inputs: [{
- type: 'int',
- name: 'a',
- indexed: true
- }]
- },
- indexed: {
- a: 1
- },
- options: {
- fromBlock: 'latest',
- toBlock: 'pending'
- },
- expected: {
- address: address,
- fromBlock: 'latest',
- toBlock: 'pending',
- topics: [
- signature,
- '0x0000000000000000000000000000000000000000000000000000000000000001'
- ]
- }
-},
-{
- abi: {
- name: 'event1',
- inputs: [{
- type: 'int',
- name: 'a',
- indexed: true
- }]
- },
- indexed: {
- a: 1
- },
- options: {
- fromBlock: 4,
- toBlock: 10
- },
- expected: {
- address: address,
- fromBlock: '0x4',
- toBlock: '0xa',
- topics: [
- signature,
- '0x0000000000000000000000000000000000000000000000000000000000000001'
- ]
- }
-}, {
- abi: {
- name: 'event1',
- inputs: [{
- type: 'int',
- name: 'a',
- indexed: true
- }],
- anonymous: true
- },
- indexed: {
- a: 1
- },
- options: {},
- expected: {
- topics: [
- '0x0000000000000000000000000000000000000000000000000000000000000001'
- ]
- }
-}, {
- abi: {
- name: 'event1',
- inputs: [{
- type: 'int',
- name: 'a',
- indexed: true
- }, {
- type: 'int',
- name: 'b',
- indexed: true
- }],
- anonymous: true
- },
- indexed: {
- b: 1
- },
- options: {},
- expected: {
- topics: [
- null,
- '0x0000000000000000000000000000000000000000000000000000000000000001'
- ]
- }
-}];
-
-describe('lib/web3/event', function () {
- describe('encode', function () {
- tests.forEach(function (test, index) {
- it('test no: ' + index, function () {
- var event = new SolidityEvent(test.abi, address);
- event.signature = function () { // inject signature
- return signature.slice(2);
- };
-
- var result = event.encode(test.indexed, test.options);
- assert.deepEqual(result, test.expected);
- });
- });
- });
-});
-