mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.2 KiB
49 lines
1.2 KiB
var assert = require('assert');
|
|
var abi = require('../lib/abi.js');
|
|
|
|
describe('abi', function() {
|
|
it('should filter functions and events from input array properly', function () {
|
|
|
|
// given
|
|
var description = [{
|
|
"name": "test",
|
|
"type": "function",
|
|
"inputs": [{
|
|
"name": "a",
|
|
"type": "uint256"
|
|
}
|
|
],
|
|
"outputs": [
|
|
{
|
|
"name": "d",
|
|
"type": "uint256"
|
|
}
|
|
],
|
|
}, {
|
|
"name": "test2",
|
|
"type": "event",
|
|
"inputs": [{
|
|
"name": "a",
|
|
"type": "uint256"
|
|
}
|
|
],
|
|
"outputs": [
|
|
{
|
|
"name": "d",
|
|
"type": "uint256"
|
|
}
|
|
]
|
|
}];
|
|
|
|
// when
|
|
var events = abi.filterEvents(description);
|
|
var functions = abi.filterFunctions(description);
|
|
|
|
// then
|
|
assert.equal(events.length, 1);
|
|
assert.equal(events[0].name, 'test2');
|
|
assert.equal(functions.length, 1);
|
|
assert.equal(functions[0].name, 'test');
|
|
|
|
});
|
|
});
|
|
|