mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Squashed 'libjsqrc/ethereumjs/' changes from 4def095..f8a43ed
f8a43ed Merge pull request #180 from ethereum/develop 4dc6e23 realease version 0.3.1 ee0ec4b Merge branch 'master' of github.com:ethereum/web3.js into develop 08dc2b2 add missing inputBlockNumberFormatter 99e89a1 Merge pull request #179 from ethereum/latest_pending dfbad66 add pending and latest to getBlockTransactionCount and getUncle dbf3ff0 latest and pending as possible blockNumber arg everywhere 3897bc2 version 0.3.0 d2068eb improved solidity event decoding 11f23ce Merge pull request #178 from ethereum/stringTopics 50f4a2b add new test filter 40c5c9e merged develop c9cd31b add test for the new toTopic filter e21ee7a Merge pull request #174 from ethereum/events_refactor 960e9c9 test for explicit sendTransaction && call a6ac6ed add new toTopic formatter in filters 3d3db61 tests for decoding event logs 7c16dbf one additional test for event encode 9f7d6a9 anonymous events implementation && tests b5eabd8 proper formatting event options 93b323f removed unused function findIndex from utils 9158ac7 removed unused function 1ac1ef9 cleaned event.encode test 5f2eb33 fixed filters encoding null 4482d5b Merge branch 'develop' into events_refactor 76ced9a basic tests for event encoding f767a9a removed unused formatOutputHash, renamed formatXXXString to formatXXXBytes 888a970 coder.encodeParam, coder.decodeParam tests template 983e4b1 removed signature.js f37057e Merge branch 'develop' of github.com:ethereum/web3.js into develop c8f4226 add possible 2d topic arrays fixes #175 e910736 eth_filter complex topics, #175 836529a Merge branch 'develop' into events_refactor 42e759e 0.10 on travis is painfully slow, lets remove it d411492 call && sendTransaction f84a68c changed the way functions are being called c8e5768 fixed log fields d38f5a2 Merge branch 'develop' into events_refactor a5c1bcc changed default providor port to 8545 closes #160 9e8cb8d removed non existing eth.flush method eeb0bc0 Merge branch 'develop' into events_refactor cdf02ec Merge pull request #173 from ethereum/failing_develop 501e3bc utils cleanup a88be00 docs 9d8a51d event.js refactored ea6bda4 event refactor in progress a827076 fixed tx/block return value tests 99a3696 events refactor, function.js 04cdb6c format also tx nonce to number 385cc2c removed minGasPrice from blocks c06d75b Merge pull request #170 from ethereum/abi_refactor e80ff10 Merge branch 'master' into abi_refactor 38641df fixed #154 1c8cd7d web3.eth.defaultAccount property, updated event_inc example, fixed #96 4aeba40 fixed event_inc example 5362e2a Merge branch 'develop' into abi_refactor 2a11852 Merge branch 'master' into develop ea413a8 updated gitter badge a46b9ea Merge branch 'develop' into abi_refactor 779a608 documentation 941535f SolidityParam moved to its own file && documented 18cef7c removed *collapse in contrat, gulp 677bb68 add bundle version 135b044 Merge pull request #164 from karalabe/empty-topics-fix b326202 formatters/whisper: polish corner case handling code 0567ba1 outputParser do not require 0x prefix before hash b5c6aa6 little cleanup && renaming dccfca1 solidity abi refactor in progress 6a058b6 Allow unset topics in posts too. af443f2 Fix #162: allow empty topic list in messages d643d06 solidity abi refactor in progress 271b00f bumped version f4cf699 rebuild 4eeaf19 rebuild 20fb2e3 Merge branch 'develop' of https://github.com/ethereum/ethereum.js into develop ac69640 Merge pull request #158 from ethereum/watchImprovement2 96b4468 fixed #161, web3.ssh.post a320ef8 fixed coverage, unified creating errors 364eab7 add callback for async error c62f817 picked watch change3 56d13f7 picked watch change2 2215e7c picked watch change dc0f231 merged meteor package fixes c89ad86 renamed meteor package a0709f3 fixed meteor package 1a8032c version 0.2.7 dfb8dea gulp b1ada8d gulp a25a9e1 Merge branch 'master' of https://github.com/ethereum/ethereum.js 05343ea use version of bignumber.js without lookaheads 2651fd8 Update README.md git-subtree-dir: libjsqrc/ethereumjs git-subtree-split: f8a43eddfb450d0e0ba1669a6916babe0ea43642
This commit is contained in:
parent
1efd3c2687
commit
7471709ee0
@ -469,10 +469,10 @@ describe('lib/solidity/abi', function () {
|
|||||||
var parser = abi.inputParser(d);
|
var parser = abi.inputParser(d);
|
||||||
|
|
||||||
// then
|
// then
|
||||||
assert.equal(parser.test([1]), "0000000000000000000000000000000100000000000000000000000000000000");
|
assert.equal(parser.test(1), "0000000000000000000000000000000100000000000000000000000000000000");
|
||||||
assert.equal(parser.test([2.125]), "0000000000000000000000000000000220000000000000000000000000000000");
|
assert.equal(parser.test(2.125), "0000000000000000000000000000000220000000000000000000000000000000");
|
||||||
assert.equal(parser.test([8.5]), "0000000000000000000000000000000880000000000000000000000000000000");
|
assert.equal(parser.test(8.5), "0000000000000000000000000000000880000000000000000000000000000000");
|
||||||
assert.equal(parser.test([-1]), "ffffffffffffffffffffffffffffffff00000000000000000000000000000000");
|
assert.equal(parser.test(-1), "ffffffffffffffffffffffffffffffff00000000000000000000000000000000");
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -489,9 +489,9 @@ describe('lib/solidity/abi', function () {
|
|||||||
var parser = abi.inputParser(d);
|
var parser = abi.inputParser(d);
|
||||||
|
|
||||||
// then
|
// then
|
||||||
assert.equal(parser.test([1]), "0000000000000000000000000000000100000000000000000000000000000000");
|
assert.equal(parser.test(1), "0000000000000000000000000000000100000000000000000000000000000000");
|
||||||
assert.equal(parser.test([2.125]), "0000000000000000000000000000000220000000000000000000000000000000");
|
assert.equal(parser.test(2.125), "0000000000000000000000000000000220000000000000000000000000000000");
|
||||||
assert.equal(parser.test([8.5]), "0000000000000000000000000000000880000000000000000000000000000000");
|
assert.equal(parser.test(8.5), "0000000000000000000000000000000880000000000000000000000000000000");
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -35,13 +35,13 @@ describe('lib/solidity/abi', function() {
|
|||||||
|
|
||||||
// then
|
// then
|
||||||
assert.equal(
|
assert.equal(
|
||||||
parser.test("0x" +
|
parser.test(
|
||||||
"0000000000000000000000000000000000000000000000000000000000000005" +
|
"0000000000000000000000000000000000000000000000000000000000000005" +
|
||||||
"68656c6c6f000000000000000000000000000000000000000000000000000000")[0],
|
"68656c6c6f000000000000000000000000000000000000000000000000000000")[0],
|
||||||
'hello'
|
'hello'
|
||||||
);
|
);
|
||||||
assert.equal(
|
assert.equal(
|
||||||
parser.test("0x" +
|
parser.test(
|
||||||
"0000000000000000000000000000000000000000000000000000000000000005" +
|
"0000000000000000000000000000000000000000000000000000000000000005" +
|
||||||
"776f726c64000000000000000000000000000000000000000000000000000000")[0],
|
"776f726c64000000000000000000000000000000000000000000000000000000")[0],
|
||||||
'world'
|
'world'
|
||||||
@ -62,14 +62,14 @@ describe('lib/solidity/abi', function() {
|
|||||||
var parser = abi.outputParser(d);
|
var parser = abi.outputParser(d);
|
||||||
|
|
||||||
// then
|
// then
|
||||||
assert.equal(parser.test("0x0000000000000000000000000000000000000000000000000000000000000001")[0], 1);
|
assert.equal(parser.test("0000000000000000000000000000000000000000000000000000000000000001")[0], 1);
|
||||||
assert.equal(parser.test("0x000000000000000000000000000000000000000000000000000000000000000a")[0], 10);
|
assert.equal(parser.test("000000000000000000000000000000000000000000000000000000000000000a")[0], 10);
|
||||||
assert.equal(
|
assert.equal(
|
||||||
parser.test("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")[0].toString(10),
|
parser.test("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")[0].toString(10),
|
||||||
new BigNumber("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", 16).toString(10)
|
new BigNumber("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", 16).toString(10)
|
||||||
);
|
);
|
||||||
assert.equal(
|
assert.equal(
|
||||||
parser.test("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0")[0].toString(10),
|
parser.test("fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0")[0].toString(10),
|
||||||
new BigNumber("fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0", 16).toString(10)
|
new BigNumber("fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0", 16).toString(10)
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
@ -87,14 +87,14 @@ describe('lib/solidity/abi', function() {
|
|||||||
var parser = abi.outputParser(d);
|
var parser = abi.outputParser(d);
|
||||||
|
|
||||||
// then
|
// then
|
||||||
assert.equal(parser.test("0x0000000000000000000000000000000000000000000000000000000000000001")[0], 1);
|
assert.equal(parser.test("0000000000000000000000000000000000000000000000000000000000000001")[0], 1);
|
||||||
assert.equal(parser.test("0x000000000000000000000000000000000000000000000000000000000000000a")[0], 10);
|
assert.equal(parser.test("000000000000000000000000000000000000000000000000000000000000000a")[0], 10);
|
||||||
assert.equal(
|
assert.equal(
|
||||||
parser.test("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")[0].toString(10),
|
parser.test("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")[0].toString(10),
|
||||||
new BigNumber("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", 16).toString(10)
|
new BigNumber("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", 16).toString(10)
|
||||||
);
|
);
|
||||||
assert.equal(
|
assert.equal(
|
||||||
parser.test("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0")[0].toString(10),
|
parser.test("fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0")[0].toString(10),
|
||||||
new BigNumber("fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0", 16).toString(10)
|
new BigNumber("fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0", 16).toString(10)
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
@ -112,14 +112,14 @@ describe('lib/solidity/abi', function() {
|
|||||||
var parser = abi.outputParser(d);
|
var parser = abi.outputParser(d);
|
||||||
|
|
||||||
// then
|
// then
|
||||||
assert.equal(parser.test("0x0000000000000000000000000000000000000000000000000000000000000001")[0], 1);
|
assert.equal(parser.test("0000000000000000000000000000000000000000000000000000000000000001")[0], 1);
|
||||||
assert.equal(parser.test("0x000000000000000000000000000000000000000000000000000000000000000a")[0], 10);
|
assert.equal(parser.test("000000000000000000000000000000000000000000000000000000000000000a")[0], 10);
|
||||||
assert.equal(
|
assert.equal(
|
||||||
parser.test("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")[0].toString(10),
|
parser.test("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")[0].toString(10),
|
||||||
new BigNumber("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", 16).toString(10)
|
new BigNumber("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", 16).toString(10)
|
||||||
);
|
);
|
||||||
assert.equal(
|
assert.equal(
|
||||||
parser.test("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0")[0].toString(10),
|
parser.test("fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0")[0].toString(10),
|
||||||
new BigNumber("fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0", 16).toString(10)
|
new BigNumber("fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0", 16).toString(10)
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
@ -137,10 +137,10 @@ describe('lib/solidity/abi', function() {
|
|||||||
var parser = abi.outputParser(d);
|
var parser = abi.outputParser(d);
|
||||||
|
|
||||||
// then
|
// then
|
||||||
assert.equal(parser.test("0x0000000000000000000000000000000000000000000000000000000000000001")[0], 1);
|
assert.equal(parser.test("0000000000000000000000000000000000000000000000000000000000000001")[0], 1);
|
||||||
assert.equal(parser.test("0x000000000000000000000000000000000000000000000000000000000000000a")[0], 10);
|
assert.equal(parser.test("000000000000000000000000000000000000000000000000000000000000000a")[0], 10);
|
||||||
assert.equal(parser.test("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")[0], -1);
|
assert.equal(parser.test("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")[0], -1);
|
||||||
assert.equal(parser.test("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0")[0], -16);
|
assert.equal(parser.test("fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0")[0], -16);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should parse output int256', function() {
|
it('should parse output int256', function() {
|
||||||
@ -156,10 +156,10 @@ describe('lib/solidity/abi', function() {
|
|||||||
var parser = abi.outputParser(d);
|
var parser = abi.outputParser(d);
|
||||||
|
|
||||||
// then
|
// then
|
||||||
assert.equal(parser.test("0x0000000000000000000000000000000000000000000000000000000000000001")[0], 1);
|
assert.equal(parser.test("0000000000000000000000000000000000000000000000000000000000000001")[0], 1);
|
||||||
assert.equal(parser.test("0x000000000000000000000000000000000000000000000000000000000000000a")[0], 10);
|
assert.equal(parser.test("000000000000000000000000000000000000000000000000000000000000000a")[0], 10);
|
||||||
assert.equal(parser.test("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")[0], -1);
|
assert.equal(parser.test("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")[0], -1);
|
||||||
assert.equal(parser.test("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0")[0], -16);
|
assert.equal(parser.test("fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0")[0], -16);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should parse output int128', function() {
|
it('should parse output int128', function() {
|
||||||
@ -175,10 +175,10 @@ describe('lib/solidity/abi', function() {
|
|||||||
var parser = abi.outputParser(d);
|
var parser = abi.outputParser(d);
|
||||||
|
|
||||||
// then
|
// then
|
||||||
assert.equal(parser.test("0x0000000000000000000000000000000000000000000000000000000000000001")[0], 1);
|
assert.equal(parser.test("0000000000000000000000000000000000000000000000000000000000000001")[0], 1);
|
||||||
assert.equal(parser.test("0x000000000000000000000000000000000000000000000000000000000000000a")[0], 10);
|
assert.equal(parser.test("000000000000000000000000000000000000000000000000000000000000000a")[0], 10);
|
||||||
assert.equal(parser.test("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")[0], -1);
|
assert.equal(parser.test("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")[0], -1);
|
||||||
assert.equal(parser.test("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0")[0], -16);
|
assert.equal(parser.test("fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0")[0], -16);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should parse output address', function() {
|
it('should parse output address', function() {
|
||||||
@ -195,7 +195,7 @@ describe('lib/solidity/abi', function() {
|
|||||||
|
|
||||||
// then
|
// then
|
||||||
assert.equal(
|
assert.equal(
|
||||||
parser.test("0x000000000000000000000000407d73d8a49eeb85d32cf465507dd71d507100c1")[0],
|
parser.test("000000000000000000000000407d73d8a49eeb85d32cf465507dd71d507100c1")[0],
|
||||||
"0x407d73d8a49eeb85d32cf465507dd71d507100c1"
|
"0x407d73d8a49eeb85d32cf465507dd71d507100c1"
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
@ -213,8 +213,8 @@ describe('lib/solidity/abi', function() {
|
|||||||
var parser = abi.outputParser(d);
|
var parser = abi.outputParser(d);
|
||||||
|
|
||||||
// then
|
// then
|
||||||
assert.equal(parser.test("0x0000000000000000000000000000000000000000000000000000000000000001")[0], true);
|
assert.equal(parser.test("0000000000000000000000000000000000000000000000000000000000000001")[0], true);
|
||||||
assert.equal(parser.test("0x0000000000000000000000000000000000000000000000000000000000000000")[0], false);
|
assert.equal(parser.test("0000000000000000000000000000000000000000000000000000000000000000")[0], false);
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
@ -232,10 +232,10 @@ describe('lib/solidity/abi', function() {
|
|||||||
var parser = abi.outputParser(d);
|
var parser = abi.outputParser(d);
|
||||||
|
|
||||||
// then
|
// then
|
||||||
assert.equal(parser.test("0x0000000000000000000000000000000100000000000000000000000000000000")[0], 1);
|
assert.equal(parser.test("0000000000000000000000000000000100000000000000000000000000000000")[0], 1);
|
||||||
assert.equal(parser.test("0x0000000000000000000000000000000220000000000000000000000000000000")[0], 2.125);
|
assert.equal(parser.test("0000000000000000000000000000000220000000000000000000000000000000")[0], 2.125);
|
||||||
assert.equal(parser.test("0x0000000000000000000000000000000880000000000000000000000000000000")[0], 8.5);
|
assert.equal(parser.test("0000000000000000000000000000000880000000000000000000000000000000")[0], 8.5);
|
||||||
assert.equal(parser.test("0xffffffffffffffffffffffffffffffff00000000000000000000000000000000")[0], -1);
|
assert.equal(parser.test("ffffffffffffffffffffffffffffffff00000000000000000000000000000000")[0], -1);
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -252,9 +252,9 @@ describe('lib/solidity/abi', function() {
|
|||||||
var parser = abi.outputParser(d);
|
var parser = abi.outputParser(d);
|
||||||
|
|
||||||
// then
|
// then
|
||||||
assert.equal(parser.test("0x0000000000000000000000000000000100000000000000000000000000000000")[0], 1);
|
assert.equal(parser.test("0000000000000000000000000000000100000000000000000000000000000000")[0], 1);
|
||||||
assert.equal(parser.test("0x0000000000000000000000000000000220000000000000000000000000000000")[0], 2.125);
|
assert.equal(parser.test("0000000000000000000000000000000220000000000000000000000000000000")[0], 2.125);
|
||||||
assert.equal(parser.test("0x0000000000000000000000000000000880000000000000000000000000000000")[0], 8.5);
|
assert.equal(parser.test("0000000000000000000000000000000880000000000000000000000000000000")[0], 8.5);
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -274,7 +274,7 @@ describe('lib/solidity/abi', function() {
|
|||||||
|
|
||||||
// then
|
// then
|
||||||
assert.equal(
|
assert.equal(
|
||||||
parser.test("0x" +
|
parser.test(
|
||||||
"0000000000000000000000000000000000000000000000000000000000000005" +
|
"0000000000000000000000000000000000000000000000000000000000000005" +
|
||||||
"0000000000000000000000000000000000000000000000000000000000000005" +
|
"0000000000000000000000000000000000000000000000000000000000000005" +
|
||||||
"68656c6c6f000000000000000000000000000000000000000000000000000000" +
|
"68656c6c6f000000000000000000000000000000000000000000000000000000" +
|
||||||
@ -282,7 +282,7 @@ describe('lib/solidity/abi', function() {
|
|||||||
'hello'
|
'hello'
|
||||||
);
|
);
|
||||||
assert.equal(
|
assert.equal(
|
||||||
parser.test("0x" +
|
parser.test(
|
||||||
"0000000000000000000000000000000000000000000000000000000000000005" +
|
"0000000000000000000000000000000000000000000000000000000000000005" +
|
||||||
"0000000000000000000000000000000000000000000000000000000000000005" +
|
"0000000000000000000000000000000000000000000000000000000000000005" +
|
||||||
"68656c6c6f000000000000000000000000000000000000000000000000000000" +
|
"68656c6c6f000000000000000000000000000000000000000000000000000000" +
|
||||||
@ -305,8 +305,8 @@ describe('lib/solidity/abi', function() {
|
|||||||
var parser = abi.outputParser(d);
|
var parser = abi.outputParser(d);
|
||||||
|
|
||||||
// then
|
// then
|
||||||
assert.equal(parser.helloworld("0x0000000000000000000000000000000000000000000000000000000000000001")[0], 1);
|
assert.equal(parser.helloworld("0000000000000000000000000000000000000000000000000000000000000001")[0], 1);
|
||||||
assert.equal(parser.helloworld['int']("0x0000000000000000000000000000000000000000000000000000000000000001")[0], 1);
|
assert.equal(parser.helloworld['int']("0000000000000000000000000000000000000000000000000000000000000001")[0], 1);
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -330,8 +330,8 @@ describe('lib/solidity/abi', function() {
|
|||||||
var parser = abi.outputParser(d);
|
var parser = abi.outputParser(d);
|
||||||
|
|
||||||
//then
|
//then
|
||||||
assert.equal(parser.test("0000000000000000000000000000000000000000000000000000000000000001")[0], 1);
|
assert.equal(parser.test("00000000000000000000000000000000000000000000000000000000000001")[0], 1);
|
||||||
assert.equal(parser.test2("0x" +
|
assert.equal(parser.test2(
|
||||||
"0000000000000000000000000000000000000000000000000000000000000005" +
|
"0000000000000000000000000000000000000000000000000000000000000005" +
|
||||||
"68656c6c6f000000000000000000000000000000000000000000000000000000")[0],
|
"68656c6c6f000000000000000000000000000000000000000000000000000000")[0],
|
||||||
"hello"
|
"hello"
|
||||||
@ -351,13 +351,13 @@ describe('lib/solidity/abi', function() {
|
|||||||
var parser = abi.outputParser(d);
|
var parser = abi.outputParser(d);
|
||||||
|
|
||||||
// then
|
// then
|
||||||
assert.equal(parser.test("0x" +
|
assert.equal(parser.test(
|
||||||
"0000000000000000000000000000000000000000000000000000000000000002" +
|
"0000000000000000000000000000000000000000000000000000000000000002" +
|
||||||
"0000000000000000000000000000000000000000000000000000000000000005" +
|
"0000000000000000000000000000000000000000000000000000000000000005" +
|
||||||
"0000000000000000000000000000000000000000000000000000000000000006")[0][0],
|
"0000000000000000000000000000000000000000000000000000000000000006")[0][0],
|
||||||
5
|
5
|
||||||
);
|
);
|
||||||
assert.equal(parser.test("0x" +
|
assert.equal(parser.test(
|
||||||
"0000000000000000000000000000000000000000000000000000000000000002" +
|
"0000000000000000000000000000000000000000000000000000000000000002" +
|
||||||
"0000000000000000000000000000000000000000000000000000000000000005" +
|
"0000000000000000000000000000000000000000000000000000000000000005" +
|
||||||
"0000000000000000000000000000000000000000000000000000000000000006")[0][1],
|
"0000000000000000000000000000000000000000000000000000000000000006")[0][1],
|
||||||
@ -366,7 +366,7 @@ describe('lib/solidity/abi', function() {
|
|||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should parse 0x value', function () {
|
it('should parse 0x0 value', function () {
|
||||||
|
|
||||||
// given
|
// given
|
||||||
var d = clone(description);
|
var d = clone(description);
|
||||||
@ -378,11 +378,11 @@ describe('lib/solidity/abi', function() {
|
|||||||
var parser = abi.outputParser(d);
|
var parser = abi.outputParser(d);
|
||||||
|
|
||||||
// then
|
// then
|
||||||
assert.equal(parser.test("0x")[0], 0);
|
assert.equal(parser.test("0x0")[0], 0);
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should parse 0x value', function () {
|
it('should parse 0x0 value', function () {
|
||||||
|
|
||||||
// given
|
// given
|
||||||
var d = clone(description);
|
var d = clone(description);
|
||||||
@ -394,7 +394,7 @@ describe('lib/solidity/abi', function() {
|
|||||||
var parser = abi.outputParser(d);
|
var parser = abi.outputParser(d);
|
||||||
|
|
||||||
// then
|
// then
|
||||||
assert.equal(parser.test("0x")[0], 0);
|
assert.equal(parser.test("0x0")[0], 0);
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
20
coder.decodeParam.js
Normal file
20
coder.decodeParam.js
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
var chai = require('chai');
|
||||||
|
var assert = chai.assert;
|
||||||
|
var coder = require('../lib/solidity/coder');
|
||||||
|
|
||||||
|
var tests = [
|
||||||
|
{ type: 'int', value: '0000000000000000000000000000000000000000000000000000000000000001', expected: 1},
|
||||||
|
{ type: 'int', value: '0000000000000000000000000000000000000000000000000000000000000010', expected: 16},
|
||||||
|
{ type: 'int', value: 'ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff', expected: -1}
|
||||||
|
];
|
||||||
|
|
||||||
|
describe('lib/solidity/coder', function () {
|
||||||
|
describe('decodeParam', function () {
|
||||||
|
tests.forEach(function (test) {
|
||||||
|
it('should turn ' + test.value + ' to ' + test.expected, function () {
|
||||||
|
assert.equal(coder.decodeParam(test.type, test.value), test.expected);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
20
coder.encodeParam.js
Normal file
20
coder.encodeParam.js
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
var chai = require('chai');
|
||||||
|
var assert = chai.assert;
|
||||||
|
var coder = require('../lib/solidity/coder');
|
||||||
|
|
||||||
|
var tests = [
|
||||||
|
{ type: 'int', value: 1, expected: '0000000000000000000000000000000000000000000000000000000000000001'},
|
||||||
|
{ type: 'int', value: 16, expected: '0000000000000000000000000000000000000000000000000000000000000010'},
|
||||||
|
{ type: 'int', value: -1, expected: 'ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff'}
|
||||||
|
];
|
||||||
|
|
||||||
|
describe('lib/solidity/coder', function () {
|
||||||
|
describe('encodeParam', function () {
|
||||||
|
tests.forEach(function (test) {
|
||||||
|
it('should turn ' + test.value + ' to ' + test.expected, function () {
|
||||||
|
assert.equal(coder.encodeParam(test.type, test.value), test.expected);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
96
contract.js
96
contract.js
@ -63,11 +63,27 @@ describe('web3.eth.contract', function () {
|
|||||||
assert.deepEqual(payload.params[0], {
|
assert.deepEqual(payload.params[0], {
|
||||||
topics: [
|
topics: [
|
||||||
sha3,
|
sha3,
|
||||||
'0x1234567890123456789012345678901234567890'
|
'0x0000000000000000000000001234567890123456789012345678901234567890',
|
||||||
|
null
|
||||||
],
|
],
|
||||||
address: '0x1234567890123456789012345678901234567890'
|
address: '0x1234567890123456789012345678901234567890'
|
||||||
});
|
});
|
||||||
} else if (step === 2 && utils.isArray(payload)) {
|
} else if (step === 2) {
|
||||||
|
step = 3;
|
||||||
|
provider.injectResult([{
|
||||||
|
address: address,
|
||||||
|
topics: [
|
||||||
|
sha3,
|
||||||
|
'0x0000000000000000000000001234567890123456789012345678901234567890',
|
||||||
|
'0x0000000000000000000000000000000000000000000000000000000000000001'
|
||||||
|
],
|
||||||
|
number: 2,
|
||||||
|
data: '0x0000000000000000000000000000000000000000000000000000000000000001' +
|
||||||
|
'0000000000000000000000000000000000000000000000000000000000000008'
|
||||||
|
}]);
|
||||||
|
assert.equal(payload.jsonrpc, '2.0');
|
||||||
|
assert.equal(payload.method, 'eth_getFilterLogs');
|
||||||
|
} else if (step === 3 && utils.isArray(payload)) {
|
||||||
provider.injectBatchResults([[{
|
provider.injectBatchResults([[{
|
||||||
address: address,
|
address: address,
|
||||||
topics: [
|
topics: [
|
||||||
@ -89,12 +105,16 @@ describe('web3.eth.contract', function () {
|
|||||||
var Contract = web3.eth.contract(desc);
|
var Contract = web3.eth.contract(desc);
|
||||||
var contract = new Contract(address);
|
var contract = new Contract(address);
|
||||||
|
|
||||||
|
var res = 0;
|
||||||
contract.Changed({from: address}).watch(function(err, result) {
|
contract.Changed({from: address}).watch(function(err, result) {
|
||||||
assert.equal(result.args.from, address);
|
assert.equal(result.args.from, address);
|
||||||
assert.equal(result.args.amount, 1);
|
assert.equal(result.args.amount, 1);
|
||||||
assert.equal(result.args.t1, 1);
|
assert.equal(result.args.t1, 1);
|
||||||
assert.equal(result.args.t2, 8);
|
assert.equal(result.args.t2, 8);
|
||||||
|
res++;
|
||||||
|
if (res === 2) {
|
||||||
done();
|
done();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -187,7 +207,40 @@ describe('web3.eth.contract', function () {
|
|||||||
var Contract = web3.eth.contract(desc);
|
var Contract = web3.eth.contract(desc);
|
||||||
var contract = new Contract(address);
|
var contract = new Contract(address);
|
||||||
|
|
||||||
contract.call({from: address, gas: 50000}).balance(address);
|
contract.balance(address, {from: address, gas: 50000});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should explicitly make a call with optional params', function () {
|
||||||
|
|
||||||
|
var provider = new FakeHttpProvider();
|
||||||
|
web3.setProvider(provider);
|
||||||
|
web3.reset();
|
||||||
|
var sha3 = '0x5131231231231231231231';
|
||||||
|
var address = '0x1234567890123456789012345678901234567890';
|
||||||
|
provider.injectResult(sha3);
|
||||||
|
var step = 0;
|
||||||
|
provider.injectValidation(function (payload) {
|
||||||
|
if (step === 0) {
|
||||||
|
step = 1;
|
||||||
|
assert.equal(payload.jsonrpc, '2.0');
|
||||||
|
assert.equal(payload.method, 'web3_sha3');
|
||||||
|
assert.equal(payload.params[0], web3.fromAscii('balance(address)'));
|
||||||
|
} else if (step === 1) {
|
||||||
|
assert.equal(payload.method, 'eth_call');
|
||||||
|
assert.deepEqual(payload.params, [{
|
||||||
|
data: sha3.slice(0, 10) + '0000000000000000000000001234567890123456789012345678901234567890',
|
||||||
|
to: address,
|
||||||
|
from: address,
|
||||||
|
gas: '0xc350'
|
||||||
|
}, 'latest']);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
var Contract = web3.eth.contract(desc);
|
||||||
|
var contract = new Contract(address);
|
||||||
|
|
||||||
|
contract.balance.call(address, {from: address, gas: 50000});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -223,7 +276,42 @@ describe('web3.eth.contract', function () {
|
|||||||
var Contract = web3.eth.contract(desc);
|
var Contract = web3.eth.contract(desc);
|
||||||
var contract = new Contract(address);
|
var contract = new Contract(address);
|
||||||
|
|
||||||
contract.sendTransaction({from: address, gas: 50000, gasPrice: 3000, value: 10000}).send(address, 17);
|
contract.send(address, 17, {from: address, gas: 50000, gasPrice: 3000, value: 10000});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should explicitly sendTransaction with optional params', function () {
|
||||||
|
var provider = new FakeHttpProvider();
|
||||||
|
web3.setProvider(provider);
|
||||||
|
web3.reset();
|
||||||
|
var sha3 = '0x5131231231231231231231';
|
||||||
|
var address = '0x1234567890123456789012345678901234567890';
|
||||||
|
provider.injectResult(sha3);
|
||||||
|
var step = 0;
|
||||||
|
provider.injectValidation(function (payload) {
|
||||||
|
if (step === 0) {
|
||||||
|
step = 1;
|
||||||
|
assert.equal(payload.jsonrpc, '2.0');
|
||||||
|
assert.equal(payload.method, 'web3_sha3');
|
||||||
|
assert.equal(payload.params[0], web3.fromAscii('send(address,uint256)'));
|
||||||
|
} else if (step === 1) {
|
||||||
|
assert.equal(payload.method, 'eth_sendTransaction');
|
||||||
|
assert.deepEqual(payload.params, [{
|
||||||
|
data: sha3.slice(0, 10) +
|
||||||
|
'0000000000000000000000001234567890123456789012345678901234567890' +
|
||||||
|
'0000000000000000000000000000000000000000000000000000000000000011' ,
|
||||||
|
to: address,
|
||||||
|
from: address,
|
||||||
|
gas: '0xc350',
|
||||||
|
gasPrice: '0xbb8',
|
||||||
|
value: '0x2710'
|
||||||
|
}]);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
var Contract = web3.eth.contract(desc);
|
||||||
|
var contract = new Contract(address);
|
||||||
|
|
||||||
|
contract.send.sendTransaction(address, 17, {from: address, gas: 50000, gasPrice: 3000, value: 10000});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
180
event.decode.js
Normal file
180
event.decode.js
Normal file
@ -0,0 +1,180 @@
|
|||||||
|
var chai = require('chai');
|
||||||
|
var assert = chai.assert;
|
||||||
|
var BigNumber = require('bignumber.js');
|
||||||
|
var SolidityEvent = require('../lib/web3/event');
|
||||||
|
|
||||||
|
var name = 'event1';
|
||||||
|
var address = '0x1234567890123456789012345678901234567890';
|
||||||
|
|
||||||
|
var tests = [{
|
||||||
|
abi: {
|
||||||
|
name: name,
|
||||||
|
inputs: []
|
||||||
|
},
|
||||||
|
data: {
|
||||||
|
logIndex: '0x1',
|
||||||
|
transactionIndex: '0x10',
|
||||||
|
transactionHash: '0x1234567890',
|
||||||
|
address: address,
|
||||||
|
blockHash: '0x1234567890',
|
||||||
|
blockNumber: '0x1'
|
||||||
|
},
|
||||||
|
expected: {
|
||||||
|
event: name,
|
||||||
|
args: {},
|
||||||
|
logIndex: 1,
|
||||||
|
transactionIndex: 16,
|
||||||
|
transactionHash: '0x1234567890',
|
||||||
|
address: address,
|
||||||
|
blockHash: '0x1234567890',
|
||||||
|
blockNumber: 1
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
abi: {
|
||||||
|
name: name,
|
||||||
|
inputs: [{
|
||||||
|
name: 'a',
|
||||||
|
type: 'int',
|
||||||
|
indexed: false
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
data: {
|
||||||
|
logIndex: '0x1',
|
||||||
|
transactionIndex: '0x10',
|
||||||
|
transactionHash: '0x1234567890',
|
||||||
|
address: address,
|
||||||
|
blockHash: '0x1234567890',
|
||||||
|
blockNumber: '0x1',
|
||||||
|
data: '0x0000000000000000000000000000000000000000000000000000000000000001'
|
||||||
|
},
|
||||||
|
expected: {
|
||||||
|
event: name,
|
||||||
|
args: {
|
||||||
|
a: new BigNumber(1)
|
||||||
|
},
|
||||||
|
logIndex: 1,
|
||||||
|
transactionIndex: 16,
|
||||||
|
transactionHash: '0x1234567890',
|
||||||
|
address: address,
|
||||||
|
blockHash: '0x1234567890',
|
||||||
|
blockNumber: 1
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
abi: {
|
||||||
|
name: name,
|
||||||
|
inputs: [{
|
||||||
|
name: 'a',
|
||||||
|
type: 'int',
|
||||||
|
indexed: false
|
||||||
|
}, {
|
||||||
|
name: 'b',
|
||||||
|
type: 'int',
|
||||||
|
indexed: true
|
||||||
|
}, {
|
||||||
|
name: 'c',
|
||||||
|
type: 'int',
|
||||||
|
indexed: false
|
||||||
|
}, {
|
||||||
|
name: 'd',
|
||||||
|
type: 'int',
|
||||||
|
indexed: true
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
data: {
|
||||||
|
logIndex: '0x1',
|
||||||
|
transactionIndex: '0x10',
|
||||||
|
transactionHash: '0x1234567890',
|
||||||
|
address: address,
|
||||||
|
blockHash: '0x1234567890',
|
||||||
|
blockNumber: '0x1',
|
||||||
|
data: '0x' +
|
||||||
|
'0000000000000000000000000000000000000000000000000000000000000001' +
|
||||||
|
'0000000000000000000000000000000000000000000000000000000000000004',
|
||||||
|
topics: [
|
||||||
|
address,
|
||||||
|
'0x000000000000000000000000000000000000000000000000000000000000000a',
|
||||||
|
'0x0000000000000000000000000000000000000000000000000000000000000010'
|
||||||
|
]
|
||||||
|
},
|
||||||
|
expected: {
|
||||||
|
event: name,
|
||||||
|
args: {
|
||||||
|
a: new BigNumber(1),
|
||||||
|
b: new BigNumber(10),
|
||||||
|
c: new BigNumber(4),
|
||||||
|
d: new BigNumber(16)
|
||||||
|
},
|
||||||
|
logIndex: 1,
|
||||||
|
transactionIndex: 16,
|
||||||
|
transactionHash: '0x1234567890',
|
||||||
|
address: address,
|
||||||
|
blockHash: '0x1234567890',
|
||||||
|
blockNumber: 1
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
abi: {
|
||||||
|
name: name,
|
||||||
|
anonymous: true,
|
||||||
|
inputs: [{
|
||||||
|
name: 'a',
|
||||||
|
type: 'int',
|
||||||
|
indexed: false
|
||||||
|
}, {
|
||||||
|
name: 'b',
|
||||||
|
type: 'int',
|
||||||
|
indexed: true
|
||||||
|
}, {
|
||||||
|
name: 'c',
|
||||||
|
type: 'int',
|
||||||
|
indexed: false
|
||||||
|
}, {
|
||||||
|
name: 'd',
|
||||||
|
type: 'int',
|
||||||
|
indexed: true
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
data: {
|
||||||
|
logIndex: '0x1',
|
||||||
|
transactionIndex: '0x10',
|
||||||
|
transactionHash: '0x1234567890',
|
||||||
|
address: address,
|
||||||
|
blockHash: '0x1234567890',
|
||||||
|
blockNumber: '0x1',
|
||||||
|
data: '0x' +
|
||||||
|
'0000000000000000000000000000000000000000000000000000000000000001' +
|
||||||
|
'0000000000000000000000000000000000000000000000000000000000000004',
|
||||||
|
topics: [
|
||||||
|
'0x000000000000000000000000000000000000000000000000000000000000000a',
|
||||||
|
'0x0000000000000000000000000000000000000000000000000000000000000010'
|
||||||
|
]
|
||||||
|
},
|
||||||
|
expected: {
|
||||||
|
event: name,
|
||||||
|
args: {
|
||||||
|
a: new BigNumber(1),
|
||||||
|
b: new BigNumber(10),
|
||||||
|
c: new BigNumber(4),
|
||||||
|
d: new BigNumber(16)
|
||||||
|
},
|
||||||
|
logIndex: 1,
|
||||||
|
transactionIndex: 16,
|
||||||
|
transactionHash: '0x1234567890',
|
||||||
|
address: address,
|
||||||
|
blockHash: '0x1234567890',
|
||||||
|
blockNumber: 1
|
||||||
|
}
|
||||||
|
}];
|
||||||
|
|
||||||
|
describe('lib/web3/event', function () {
|
||||||
|
describe('decode', function () {
|
||||||
|
tests.forEach(function (test, index) {
|
||||||
|
it('test no: ' + index, function () {
|
||||||
|
var event = new SolidityEvent(test.abi, address);
|
||||||
|
|
||||||
|
var result = event.decode(test.data);
|
||||||
|
assert.deepEqual(result, test.expected);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
206
event.encode.js
Normal file
206
event.encode.js
Normal file
@ -0,0 +1,206 @@
|
|||||||
|
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: 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);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
@ -1,113 +0,0 @@
|
|||||||
var assert = require('assert');
|
|
||||||
var event = require('../lib/web3/event.js');
|
|
||||||
var f = require('../lib/solidity/formatters.js');
|
|
||||||
|
|
||||||
describe('lib/web3/event', function () {
|
|
||||||
describe('inputParser', function () {
|
|
||||||
it('should create basic filter input object', function () {
|
|
||||||
|
|
||||||
// given
|
|
||||||
var address = '0x012345';
|
|
||||||
var signature = '0x987654';
|
|
||||||
var e = {
|
|
||||||
name: 'Event',
|
|
||||||
inputs: [{"name":"a","type":"uint256","indexed":true},{"name":"b","type":"hash256","indexed":false}]
|
|
||||||
};
|
|
||||||
|
|
||||||
// when
|
|
||||||
var impl = event.inputParser(address, signature, e);
|
|
||||||
var result = impl();
|
|
||||||
|
|
||||||
// then
|
|
||||||
assert.equal(result.address, address);
|
|
||||||
assert.equal(result.topics.length, 1);
|
|
||||||
assert.equal(result.topics[0], signature);
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should create filter input object with options', function () {
|
|
||||||
|
|
||||||
// given
|
|
||||||
var address = '0x012345';
|
|
||||||
var signature = '0x987654';
|
|
||||||
var options = {
|
|
||||||
fromBlock: 1,
|
|
||||||
toBlock: 2,
|
|
||||||
};
|
|
||||||
var e = {
|
|
||||||
name: 'Event',
|
|
||||||
inputs: [{"name":"a","type":"uint256","indexed":true},{"name":"b","type":"hash256","indexed":false}]
|
|
||||||
};
|
|
||||||
|
|
||||||
// when
|
|
||||||
var impl = event.inputParser(address, signature, e);
|
|
||||||
var result = impl({}, options);
|
|
||||||
|
|
||||||
// then
|
|
||||||
assert.equal(result.address, address);
|
|
||||||
assert.equal(result.topics.length, 1);
|
|
||||||
assert.equal(result.topics[0], signature);
|
|
||||||
assert.equal(result.fromBlock, options.fromBlock);
|
|
||||||
assert.equal(result.toBlock, options.toBlock);
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should create filter input object with indexed params', function () {
|
|
||||||
|
|
||||||
// given
|
|
||||||
var address = '0x012345';
|
|
||||||
var signature = '0x987654';
|
|
||||||
var options = {
|
|
||||||
fromBlock: 1,
|
|
||||||
toBlock: 2
|
|
||||||
};
|
|
||||||
var e = {
|
|
||||||
name: 'Event',
|
|
||||||
inputs: [{"name":"a","type":"uint256","indexed":true},{"name":"b","type":"hash256","indexed":false}]
|
|
||||||
};
|
|
||||||
|
|
||||||
// when
|
|
||||||
var impl = event.inputParser(address, signature, e);
|
|
||||||
var result = impl({a: 4}, options);
|
|
||||||
|
|
||||||
// then
|
|
||||||
assert.equal(result.address, address);
|
|
||||||
assert.equal(result.topics.length, 2);
|
|
||||||
assert.equal(result.topics[0], signature);
|
|
||||||
assert.equal(result.topics[1], '0x' + f.formatInputInt(4));
|
|
||||||
assert.equal(result.fromBlock, options.fromBlock);
|
|
||||||
assert.equal(result.toBlock, options.toBlock);
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should create filter input object with an array of indexed params', function () {
|
|
||||||
|
|
||||||
// given
|
|
||||||
var address = '0x012345';
|
|
||||||
var signature = '0x987654';
|
|
||||||
var options = {
|
|
||||||
fromBlock: 1,
|
|
||||||
toBlock: 2,
|
|
||||||
};
|
|
||||||
var e = {
|
|
||||||
name: 'Event',
|
|
||||||
inputs: [{"name":"a","type":"uint256","indexed":true},{"name":"b","type":"hash256","indexed":false}]
|
|
||||||
};
|
|
||||||
|
|
||||||
// when
|
|
||||||
var impl = event.inputParser(address, signature, e);
|
|
||||||
var result = impl({a: [4, 69]}, options);
|
|
||||||
|
|
||||||
// then
|
|
||||||
assert.equal(result.address, address);
|
|
||||||
assert.equal(result.topics.length, 2);
|
|
||||||
assert.equal(result.topics[0], signature);
|
|
||||||
assert.equal(result.topics[1][0], f.formatInputInt(4));
|
|
||||||
assert.equal(result.topics[1][1], f.formatInputInt(69));
|
|
||||||
assert.equal(result.fromBlock, options.fromBlock);
|
|
||||||
assert.equal(result.toBlock, options.toBlock);
|
|
||||||
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
@ -1,81 +0,0 @@
|
|||||||
var assert = require('assert');
|
|
||||||
var event = require('../lib/web3/event.js');
|
|
||||||
|
|
||||||
describe('lib/web3/event', function () {
|
|
||||||
describe('outputParser', function () {
|
|
||||||
it('should parse basic event output object', function () {
|
|
||||||
|
|
||||||
// given
|
|
||||||
var output = {
|
|
||||||
"address":"0x78dfc5983baecf65f73e3de3a96cee24e6b7981e",
|
|
||||||
"data":"0x000000000000000000000000000000000000000000000000000000000000004b",
|
|
||||||
"number":2,
|
|
||||||
"topics":[
|
|
||||||
"0x6e61ef44ac2747ff8b84d353a908eb8bd5c3fb118334d57698c5cfc7041196ad",
|
|
||||||
"0x0000000000000000000000000000000000000000000000000000000000000001"
|
|
||||||
]
|
|
||||||
};
|
|
||||||
|
|
||||||
var e = {
|
|
||||||
name: 'Event',
|
|
||||||
inputs: [{"name":"a","type":"bool","indexed":true},{"name":"b","type":"uint256","indexed":false}]
|
|
||||||
};
|
|
||||||
|
|
||||||
// when
|
|
||||||
var impl = event.outputParser(e);
|
|
||||||
var result = impl(output);
|
|
||||||
|
|
||||||
// then
|
|
||||||
assert.equal(result.event, 'Event');
|
|
||||||
assert.equal(result.number, 2);
|
|
||||||
assert.equal(Object.keys(result.args).length, 2);
|
|
||||||
assert.equal(result.args.a, true);
|
|
||||||
assert.equal(result.args.b, 75);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should parse event output object arguments in correct order', function () {
|
|
||||||
|
|
||||||
// given
|
|
||||||
var output = {
|
|
||||||
"address":"0x78dfc5983baecf65f73e3de3a96cee24e6b7981e",
|
|
||||||
"data": "0x" +
|
|
||||||
"000000000000000000000000000000000000000000000000000000000000004b" +
|
|
||||||
"000000000000000000000000000000000000000000000000000000000000004c" +
|
|
||||||
"0000000000000000000000000000000000000000000000000000000000000001",
|
|
||||||
"number":3,
|
|
||||||
"topics":[
|
|
||||||
"0x6e61ef44ac2747ff8b84d353a908eb8bd5c3fb118334d57698c5cfc7041196ad",
|
|
||||||
"0x0000000000000000000000000000000000000000000000000000000000000001",
|
|
||||||
"0x0000000000000000000000000000000000000000000000000000000000000005"
|
|
||||||
]
|
|
||||||
};
|
|
||||||
|
|
||||||
var e = {
|
|
||||||
name: 'Event2',
|
|
||||||
inputs: [
|
|
||||||
{"name":"a","type":"bool","indexed":true},
|
|
||||||
{"name":"b","type":"int","indexed":false},
|
|
||||||
{"name":"c","type":"int","indexed":false},
|
|
||||||
{"name":"d","type":"int","indexed":true},
|
|
||||||
{"name":"e","type":"bool","indexed":false}
|
|
||||||
]
|
|
||||||
};
|
|
||||||
|
|
||||||
// when
|
|
||||||
var impl = event.outputParser(e);
|
|
||||||
var result = impl(output);
|
|
||||||
|
|
||||||
// then
|
|
||||||
assert.equal(result.event, 'Event2');
|
|
||||||
assert.equal(result.number, 3);
|
|
||||||
assert.equal(Object.keys(result.args).length, 5);
|
|
||||||
assert.equal(result.args.a, true);
|
|
||||||
assert.equal(result.args.b, 75);
|
|
||||||
assert.equal(result.args.c, 76);
|
|
||||||
assert.equal(result.args.d, 5);
|
|
||||||
assert.equal(result.args.e, true);
|
|
||||||
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
@ -20,7 +20,8 @@ describe('formatters', function () {
|
|||||||
payload: '0x7b2274657374223a2274657374227d',
|
payload: '0x7b2274657374223a2274657374227d',
|
||||||
ttl: '0xc8',
|
ttl: '0xc8',
|
||||||
priority: '0x3e8',
|
priority: '0x3e8',
|
||||||
topics: ['0x68656c6c6f','0x6d79746f70696373']
|
topics: ['0x68656c6c6f','0x6d79746f70696373'],
|
||||||
|
workToProve: '0x0'
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
var assert = require('assert');
|
var chai = require('chai');
|
||||||
|
var assert = chai.assert;
|
||||||
var formatters = require('../lib/web3/formatters.js');
|
var formatters = require('../lib/web3/formatters.js');
|
||||||
var BigNumber = require('bignumber.js');
|
var BigNumber = require('bignumber.js');
|
||||||
|
|
||||||
@ -16,7 +17,6 @@ describe('formatters', function () {
|
|||||||
difficulty: '0x3e8',
|
difficulty: '0x3e8',
|
||||||
totalDifficulty: '0x3e8',
|
totalDifficulty: '0x3e8',
|
||||||
number: '0x3e8',
|
number: '0x3e8',
|
||||||
minGasPrice: '0x3e8',
|
|
||||||
gasLimit: '0x3e8',
|
gasLimit: '0x3e8',
|
||||||
gasUsed: '0x3e8',
|
gasUsed: '0x3e8',
|
||||||
timestamp: '0x3e8',
|
timestamp: '0x3e8',
|
||||||
@ -34,7 +34,6 @@ describe('formatters', function () {
|
|||||||
difficulty: new BigNumber(1000),
|
difficulty: new BigNumber(1000),
|
||||||
totalDifficulty: new BigNumber(1000),
|
totalDifficulty: new BigNumber(1000),
|
||||||
number: 1000,
|
number: 1000,
|
||||||
minGasPrice: new BigNumber(1000),
|
|
||||||
gasLimit: 1000,
|
gasLimit: 1000,
|
||||||
gasUsed: 1000,
|
gasUsed: 1000,
|
||||||
timestamp: 1000,
|
timestamp: 1000,
|
||||||
|
@ -13,6 +13,7 @@ describe('formatters', function () {
|
|||||||
value: '0x3e8',
|
value: '0x3e8',
|
||||||
gas: '0x3e8',
|
gas: '0x3e8',
|
||||||
gasPrice: '0x3e8',
|
gasPrice: '0x3e8',
|
||||||
|
nonce: '0xb',
|
||||||
transactionIndex: '0x1',
|
transactionIndex: '0x1',
|
||||||
blockNumber: '0x3e8',
|
blockNumber: '0x3e8',
|
||||||
blockHash: '0x34234bf23bf4234'
|
blockHash: '0x34234bf23bf4234'
|
||||||
@ -23,6 +24,7 @@ describe('formatters', function () {
|
|||||||
value: new BigNumber(1000),
|
value: new BigNumber(1000),
|
||||||
gas: 1000,
|
gas: 1000,
|
||||||
gasPrice: new BigNumber(1000),
|
gasPrice: new BigNumber(1000),
|
||||||
|
nonce: 11,
|
||||||
blockNumber: 1000,
|
blockNumber: 1000,
|
||||||
blockHash: '0x34234bf23bf4234',
|
blockHash: '0x34234bf23bf4234',
|
||||||
transactionIndex: 1
|
transactionIndex: 1
|
||||||
|
@ -2,6 +2,7 @@ var chai = require('chai');
|
|||||||
var assert = chai.assert;
|
var assert = chai.assert;
|
||||||
var web3 = require('../../index');
|
var web3 = require('../../index');
|
||||||
var FakeHttpProvider = require('./FakeHttpProvider');
|
var FakeHttpProvider = require('./FakeHttpProvider');
|
||||||
|
var clone = function (object) { return JSON.parse(JSON.stringify(object)); };
|
||||||
|
|
||||||
var runTests = function (obj, method, tests) {
|
var runTests = function (obj, method, tests) {
|
||||||
|
|
||||||
@ -22,10 +23,18 @@ var runTests = function (obj, method, tests) {
|
|||||||
assert.deepEqual(payload.params, test.formattedArgs);
|
assert.deepEqual(payload.params, test.formattedArgs);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
var args = clone(test.args)
|
||||||
|
|
||||||
// when
|
// when
|
||||||
var result = (obj)
|
if (obj) {
|
||||||
? web3[obj][method].apply(null, test.args.slice(0))
|
var result = web3[obj][method].apply(null, args);
|
||||||
: web3[method].apply(null, test.args.slice(0));
|
} else {
|
||||||
|
var result = web3[method].apply(null, args);
|
||||||
|
}
|
||||||
|
// when
|
||||||
|
//var result = (obj)
|
||||||
|
//? web3[obj][method].apply(null, test.args.slice(0))
|
||||||
|
//: web3[method].apply(null, test.args.slice(0));
|
||||||
|
|
||||||
// then
|
// then
|
||||||
assert.deepEqual(test.formattedResult, result);
|
assert.deepEqual(test.formattedResult, result);
|
||||||
@ -43,7 +52,8 @@ var runTests = function (obj, method, tests) {
|
|||||||
assert.deepEqual(payload.params, test.formattedArgs);
|
assert.deepEqual(payload.params, test.formattedArgs);
|
||||||
});
|
});
|
||||||
|
|
||||||
var args = test.args.slice(0);
|
var args = clone(test.args);
|
||||||
|
|
||||||
// add callback
|
// add callback
|
||||||
args.push(function (err, result) {
|
args.push(function (err, result) {
|
||||||
assert.deepEqual(test.formattedResult, result);
|
assert.deepEqual(test.formattedResult, result);
|
||||||
@ -51,10 +61,11 @@ var runTests = function (obj, method, tests) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// when
|
// when
|
||||||
if(obj)
|
if (obj) {
|
||||||
web3[obj][method].apply(null, args);
|
web3[obj][method].apply(null, args);
|
||||||
else
|
} else {
|
||||||
web3[method].apply(null, args);
|
web3[method].apply(null, args);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -39,8 +39,8 @@ describe('lib/web3/method', function () {
|
|||||||
var test2 = function () { method.validateArgs(args2); };
|
var test2 = function () { method.validateArgs(args2); };
|
||||||
|
|
||||||
// then
|
// then
|
||||||
assert.throws(test, errors.InvalidNumberOfParams);
|
assert.throws(test, errors.InvalidNumberOfParams().message);
|
||||||
assert.throws(test2, errors.InvalidNumberOfParams);
|
assert.throws(test2, errors.InvalidNumberOfParams().message);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
48
signature.js
48
signature.js
@ -1,48 +0,0 @@
|
|||||||
var chai = require('chai');
|
|
||||||
var assert = chai.assert;
|
|
||||||
var utils = require('../lib/utils/utils');
|
|
||||||
var FakeHttpProvider = require('./helpers/FakeHttpProvider');
|
|
||||||
var signature = require('../lib/web3/signature');
|
|
||||||
var web3 = require('../index');
|
|
||||||
|
|
||||||
var tests = [{
|
|
||||||
method: 'functionSignatureFromAscii',
|
|
||||||
call: 'web3_sha3',
|
|
||||||
request: 'multiply',
|
|
||||||
formattedRequest: utils.fromAscii('multiply'),
|
|
||||||
result: '0x255d31552d29a21e93334e96055c6dca7cd329f5420ae74ec166d0c47f9f9843',
|
|
||||||
formattedResult: '0x255d3155'
|
|
||||||
},{
|
|
||||||
method: 'eventSignatureFromAscii',
|
|
||||||
call: 'web3_sha3',
|
|
||||||
request: 'multiply',
|
|
||||||
formattedRequest: utils.fromAscii('multiply'),
|
|
||||||
result: '0x255d31552d29a21e93334e96055c6dca7cd329f5420ae74ec166d0c47f9f9843',
|
|
||||||
formattedResult: '0x255d31552d29a21e93334e96055c6dca7cd329f5420ae74ec166d0c47f9f9843'
|
|
||||||
}];
|
|
||||||
|
|
||||||
describe('lib/web3/signature', function () {
|
|
||||||
tests.forEach(function (test, index) {
|
|
||||||
describe(test.method, function () {
|
|
||||||
it('should properly format and return signature of solidity functioni ' + index, function () {
|
|
||||||
|
|
||||||
// given
|
|
||||||
var provider = new FakeHttpProvider();
|
|
||||||
web3.setProvider(provider);
|
|
||||||
provider.injectResult(test.result);
|
|
||||||
provider.injectValidation(function (payload) {
|
|
||||||
assert.equal(payload.method, test.call);
|
|
||||||
assert.equal(payload.jsonrpc, '2.0');
|
|
||||||
assert.equal(payload.params[0], test.formattedRequest);
|
|
||||||
});
|
|
||||||
|
|
||||||
// when
|
|
||||||
var result = signature[test.method].call(null, test.request);
|
|
||||||
|
|
||||||
// then
|
|
||||||
assert.equal(result, test.formattedResult);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
@ -1,49 +0,0 @@
|
|||||||
var assert = require('assert');
|
|
||||||
var utils = require('../lib/solidity/utils');
|
|
||||||
|
|
||||||
describe('lib/utils/utils', 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 = utils.filterEvents(description);
|
|
||||||
var functions = utils.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');
|
|
||||||
|
|
||||||
});
|
|
||||||
});
|
|
@ -234,7 +234,7 @@ describe('web3.eth.contract', function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
var Con = contract(description);
|
var Con = contract(description);
|
||||||
var myCon = new Con(code, 2);
|
var myCon = new Con({data: code}, 2);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -19,7 +19,6 @@ var blockResult = {
|
|||||||
"size": "0x027f07",
|
"size": "0x027f07",
|
||||||
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
||||||
"gasLimit": "0x9f759",
|
"gasLimit": "0x9f759",
|
||||||
"minGasPrice": "0x9f759",
|
|
||||||
"gasUsed": "0x9f759",
|
"gasUsed": "0x9f759",
|
||||||
"timestamp": "0x54e34e8e",
|
"timestamp": "0x54e34e8e",
|
||||||
"transactions": ['0x460cfb8472af2c5fd05b5a2','0x460cfb8472af2c5fd05b5a2'],
|
"transactions": ['0x460cfb8472af2c5fd05b5a2','0x460cfb8472af2c5fd05b5a2'],
|
||||||
@ -40,7 +39,6 @@ var formattedBlockResult = {
|
|||||||
"size": 163591,
|
"size": 163591,
|
||||||
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
||||||
"gasLimit": 653145,
|
"gasLimit": 653145,
|
||||||
"minGasPrice": new BigNumber(653145),
|
|
||||||
"gasUsed": 653145,
|
"gasUsed": 653145,
|
||||||
"timestamp": 1424182926,
|
"timestamp": 1424182926,
|
||||||
"transactions": ['0x460cfb8472af2c5fd05b5a2','0x460cfb8472af2c5fd05b5a2'],
|
"transactions": ['0x460cfb8472af2c5fd05b5a2','0x460cfb8472af2c5fd05b5a2'],
|
||||||
@ -61,13 +59,12 @@ var blockResultWithTx = {
|
|||||||
"size": "0x027f07",
|
"size": "0x027f07",
|
||||||
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
||||||
"gasLimit": "0x9f759",
|
"gasLimit": "0x9f759",
|
||||||
"minGasPrice": "0x9f759",
|
|
||||||
"gasUsed": "0x9f759",
|
"gasUsed": "0x9f759",
|
||||||
"timestamp": "0x54e34e8e",
|
"timestamp": "0x54e34e8e",
|
||||||
"transactions": [{
|
"transactions": [{
|
||||||
"status": "mined",
|
"status": "mined",
|
||||||
"hash":"0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b",
|
"hash":"0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b",
|
||||||
"nonce":"0x",
|
"nonce":"0x2",
|
||||||
"blockHash": "0x6fd9e2a26ab",
|
"blockHash": "0x6fd9e2a26ab",
|
||||||
"blockNumber": "0x15df",
|
"blockNumber": "0x15df",
|
||||||
"transactionIndex": "0x1",
|
"transactionIndex": "0x1",
|
||||||
@ -95,13 +92,12 @@ var formattedBlockResultWithTx = {
|
|||||||
"size": 163591,
|
"size": 163591,
|
||||||
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
||||||
"gasLimit": 653145,
|
"gasLimit": 653145,
|
||||||
"minGasPrice": new BigNumber(653145),
|
|
||||||
"gasUsed": 653145,
|
"gasUsed": 653145,
|
||||||
"timestamp": 1424182926,
|
"timestamp": 1424182926,
|
||||||
"transactions": [{
|
"transactions": [{
|
||||||
"status": "mined",
|
"status": "mined",
|
||||||
"hash":"0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b",
|
"hash":"0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b",
|
||||||
"nonce":"0x",
|
"nonce": 2,
|
||||||
"blockHash": "0x6fd9e2a26ab",
|
"blockHash": "0x6fd9e2a26ab",
|
||||||
"blockNumber": 5599,
|
"blockNumber": 5599,
|
||||||
"transactionIndex": 1,
|
"transactionIndex": 1,
|
||||||
|
@ -8,7 +8,7 @@ var method = 'getTransaction';
|
|||||||
var txResult = {
|
var txResult = {
|
||||||
"status": "mined",
|
"status": "mined",
|
||||||
"hash":"0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b",
|
"hash":"0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b",
|
||||||
"nonce":"0x",
|
"nonce":"0x5",
|
||||||
"blockHash": "0x6fd9e2a26ab",
|
"blockHash": "0x6fd9e2a26ab",
|
||||||
"blockNumber": "0x15df",
|
"blockNumber": "0x15df",
|
||||||
"transactionIndex": "0x1",
|
"transactionIndex": "0x1",
|
||||||
@ -22,7 +22,7 @@ var txResult = {
|
|||||||
var formattedTxResult = {
|
var formattedTxResult = {
|
||||||
"status": "mined",
|
"status": "mined",
|
||||||
"hash":"0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b",
|
"hash":"0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b",
|
||||||
"nonce":"0x",
|
"nonce":5,
|
||||||
"blockHash": "0x6fd9e2a26ab",
|
"blockHash": "0x6fd9e2a26ab",
|
||||||
"blockNumber": 5599,
|
"blockNumber": 5599,
|
||||||
"transactionIndex": 1,
|
"transactionIndex": 1,
|
||||||
|
@ -8,7 +8,7 @@ var method = 'getTransactionFromBlock';
|
|||||||
var txResult = {
|
var txResult = {
|
||||||
"status": "mined",
|
"status": "mined",
|
||||||
"hash":"0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b",
|
"hash":"0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b",
|
||||||
"nonce":"0x",
|
"nonce":"0xb",
|
||||||
"blockHash": "0x6fd9e2a26ab",
|
"blockHash": "0x6fd9e2a26ab",
|
||||||
"blockNumber": "0x15df",
|
"blockNumber": "0x15df",
|
||||||
"transactionIndex": "0x1",
|
"transactionIndex": "0x1",
|
||||||
@ -22,7 +22,7 @@ var txResult = {
|
|||||||
var formattedTxResult = {
|
var formattedTxResult = {
|
||||||
"status": "mined",
|
"status": "mined",
|
||||||
"hash":"0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b",
|
"hash":"0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b",
|
||||||
"nonce":"0x",
|
"nonce":11,
|
||||||
"blockHash": "0x6fd9e2a26ab",
|
"blockHash": "0x6fd9e2a26ab",
|
||||||
"blockNumber": 5599,
|
"blockNumber": 5599,
|
||||||
"transactionIndex": 1,
|
"transactionIndex": 1,
|
||||||
|
@ -20,7 +20,6 @@ var blockResult = {
|
|||||||
"size": "0x027f07",
|
"size": "0x027f07",
|
||||||
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
||||||
"gasLimit": "0x9f759",
|
"gasLimit": "0x9f759",
|
||||||
"minGasPrice": "0x9f759",
|
|
||||||
"gasUsed": "0x9f759",
|
"gasUsed": "0x9f759",
|
||||||
"timestamp": "0x54e34e8e",
|
"timestamp": "0x54e34e8e",
|
||||||
"transactions": ['0x460cfb8472af2c5fd05b5a2','0x460cfb8472af2c5fd05b5a2'],
|
"transactions": ['0x460cfb8472af2c5fd05b5a2','0x460cfb8472af2c5fd05b5a2'],
|
||||||
@ -41,7 +40,6 @@ var formattedBlockResult = {
|
|||||||
"size": 163591,
|
"size": 163591,
|
||||||
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
||||||
"gasLimit": 653145,
|
"gasLimit": 653145,
|
||||||
"minGasPrice": new BigNumber(653145),
|
|
||||||
"gasUsed": 653145,
|
"gasUsed": 653145,
|
||||||
"timestamp": 1424182926,
|
"timestamp": 1424182926,
|
||||||
"transactions": ['0x460cfb8472af2c5fd05b5a2','0x460cfb8472af2c5fd05b5a2'],
|
"transactions": ['0x460cfb8472af2c5fd05b5a2','0x460cfb8472af2c5fd05b5a2'],
|
||||||
@ -62,13 +60,12 @@ var blockResultWithTx = {
|
|||||||
"size": "0x027f07",
|
"size": "0x027f07",
|
||||||
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
||||||
"gasLimit": "0x9f759",
|
"gasLimit": "0x9f759",
|
||||||
"minGasPrice": "0x9f759",
|
|
||||||
"gasUsed": "0x9f759",
|
"gasUsed": "0x9f759",
|
||||||
"timestamp": "0x54e34e8e",
|
"timestamp": "0x54e34e8e",
|
||||||
"transactions": [{
|
"transactions": [{
|
||||||
"status": "mined",
|
"status": "mined",
|
||||||
"hash":"0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b",
|
"hash":"0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b",
|
||||||
"nonce":"0x",
|
"nonce":"0x2",
|
||||||
"blockHash": "0x6fd9e2a26ab",
|
"blockHash": "0x6fd9e2a26ab",
|
||||||
"blockNumber": "0x15df",
|
"blockNumber": "0x15df",
|
||||||
"transactionIndex": "0x1",
|
"transactionIndex": "0x1",
|
||||||
@ -96,13 +93,12 @@ var formattedBlockResultWithTx = {
|
|||||||
"size": 163591,
|
"size": 163591,
|
||||||
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
||||||
"gasLimit": 653145,
|
"gasLimit": 653145,
|
||||||
"minGasPrice": new BigNumber(653145),
|
|
||||||
"gasUsed": 653145,
|
"gasUsed": 653145,
|
||||||
"timestamp": 1424182926,
|
"timestamp": 1424182926,
|
||||||
"transactions": [{
|
"transactions": [{
|
||||||
"status": "mined",
|
"status": "mined",
|
||||||
"hash":"0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b",
|
"hash":"0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b",
|
||||||
"nonce":"0x",
|
"nonce": 2,
|
||||||
"blockHash": "0x6fd9e2a26ab",
|
"blockHash": "0x6fd9e2a26ab",
|
||||||
"blockNumber": 5599,
|
"blockNumber": 5599,
|
||||||
"transactionIndex": 1,
|
"transactionIndex": 1,
|
||||||
|
@ -17,6 +17,45 @@ var tests = [{
|
|||||||
result: '0xf',
|
result: '0xf',
|
||||||
formattedResult: '0xf',
|
formattedResult: '0xf',
|
||||||
call: 'shh_newFilter'
|
call: 'shh_newFilter'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
args: [{
|
||||||
|
to: '0x47d33b27bb249a2dbab4c0612bf9caf4c1950855',
|
||||||
|
topics: ['0x324f5435', ['0x564b4566f3453', '0x345345343453']]
|
||||||
|
}],
|
||||||
|
formattedArgs: [{
|
||||||
|
to: '0x47d33b27bb249a2dbab4c0612bf9caf4c1950855',
|
||||||
|
topics: ['0x324f5435', ['0x564b4566f3453', '0x345345343453']]
|
||||||
|
}],
|
||||||
|
result: '0xf',
|
||||||
|
formattedResult: '0xf',
|
||||||
|
call: 'shh_newFilter'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
args: [{
|
||||||
|
to: '0x47d33b27bb249a2dbab4c0612bf9caf4c1950855',
|
||||||
|
topics: ['0x324f5435', null, ['0x564b4566f3453', '0x345345343453']]
|
||||||
|
}],
|
||||||
|
formattedArgs: [{
|
||||||
|
to: '0x47d33b27bb249a2dbab4c0612bf9caf4c1950855',
|
||||||
|
topics: ['0x324f5435', null, ['0x564b4566f3453', '0x345345343453']]
|
||||||
|
}],
|
||||||
|
result: '0xf',
|
||||||
|
formattedResult: '0xf',
|
||||||
|
call: 'shh_newFilter'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
args: [{
|
||||||
|
to: '0x47d33b27bb249a2dbab4c0612bf9caf4c1950855',
|
||||||
|
topics: ['myString', 11, '23', null]
|
||||||
|
}],
|
||||||
|
formattedArgs: [{
|
||||||
|
to: '0x47d33b27bb249a2dbab4c0612bf9caf4c1950855',
|
||||||
|
topics: ['0x6d79537472696e67', '0x3131', '0x3233', null]
|
||||||
|
}],
|
||||||
|
result: '0xf',
|
||||||
|
formattedResult: '0xf',
|
||||||
|
call: 'shh_newFilter'
|
||||||
}];
|
}];
|
||||||
|
|
||||||
describe('shh', function () {
|
describe('shh', function () {
|
49
web3.shh.post.js
Normal file
49
web3.shh.post.js
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
var chai = require('chai');
|
||||||
|
var web3 = require('../index');
|
||||||
|
var testMethod = require('./helpers/test.method.js');
|
||||||
|
|
||||||
|
var method = 'post';
|
||||||
|
|
||||||
|
var tests = [{
|
||||||
|
args: [{
|
||||||
|
from: '0x123123123',
|
||||||
|
topics: ['hello_world'],
|
||||||
|
payload: '12345',
|
||||||
|
ttl: 100,
|
||||||
|
workToProve: 101
|
||||||
|
}],
|
||||||
|
formattedArgs: [{
|
||||||
|
from: '0x123123123',
|
||||||
|
topics: [web3.fromAscii('hello_world')],
|
||||||
|
payload: web3.toHex('12345'),
|
||||||
|
ttl: web3.toHex('100'),
|
||||||
|
workToProve: web3.toHex('101'),
|
||||||
|
priority: '0x0'
|
||||||
|
}],
|
||||||
|
result: true,
|
||||||
|
formattedResult: true,
|
||||||
|
call: 'shh_'+ method
|
||||||
|
}, {
|
||||||
|
args: [{
|
||||||
|
from: '0x21312',
|
||||||
|
topics: ['hello_world'],
|
||||||
|
payload: '0x12345',
|
||||||
|
ttl: 0x100,
|
||||||
|
workToProve: 0x101,
|
||||||
|
priority: 0x15
|
||||||
|
}],
|
||||||
|
formattedArgs: [{
|
||||||
|
from: '0x21312',
|
||||||
|
topics: [web3.fromAscii('hello_world')],
|
||||||
|
payload: '0x12345',
|
||||||
|
ttl: '0x100',
|
||||||
|
workToProve: '0x101',
|
||||||
|
priority: '0x15'
|
||||||
|
}],
|
||||||
|
result: true,
|
||||||
|
formattedResult: true,
|
||||||
|
call: 'shh_'+ method
|
||||||
|
}];
|
||||||
|
|
||||||
|
testMethod.runTests('shh', method, tests);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user