370 Commits

Author SHA1 Message Date
coffeepots
1871a7b090 eth_getBlockTransactionCountByHash 2018-08-14 16:53:45 +01:00
coffeepots
404d4d883d eth_getTransactionCount 2018-08-14 16:52:30 +01:00
Yuriy Glukhov
55b5dbd719 Raise KeyError when key not found 2018-08-14 18:40:59 +03:00
Dustin Brody
f91bb16bdd Initial EVMC message type API matching: reorder overlapping fields to match EMVC; rename to to destination; replace isStatic with more general flags (with only one non-zero value); remove superfluous-seeming shouldTransferValue; keep internalFoo fields, which aren't in PyEVM either, so weren't per se part of PyEVM matching 2018-08-14 15:03:18 +03:00
coffeepots
c3fbb0a098 Add eth_syncing, eth_getStorageAt, eth_blockNumber, eth_coinbase and some stubs 2018-08-13 19:29:38 +01:00
coffeepots
fb185b7965 Update RPC signatures 2018-08-13 19:26:34 +01:00
coffeepots
370da80478 Add types to support RPC data transfer 2018-08-13 19:25:21 +01:00
coffeepots
0b5d8d53be Added EthHashStr tests 2018-08-13 19:03:09 +01:00
coffeepots
4c38ede9c9 Add EthHashStr validation 2018-08-13 18:39:17 +01:00
coffeepots
d1f283b004 Updated test_rpc to use EthAddressStr 2018-08-13 17:34:54 +01:00
coffeepots
6aab8b05c5 Included tests for EthAddressStr 2018-08-13 17:34:14 +01:00
coffeepots
e4d1c6817a Added EthAddressStr to validation 2018-08-13 17:33:57 +01:00
Dustin Brody
3c0d27021e
remove callcreates-handling code in VMTests harness (#102)
(1) callcreates, empirically, is always missing or empty in VMTests
(2) by policy, callcreates will not be in new VMTests
(3) the code was broken regardless, in a couple of since-removed VMTests which had non-empty callcreates
2018-08-09 21:58:51 +00:00
coffeepots
ac2de74d8f Standardised test between data and quantity, added tests for "0x" 2018-08-09 13:50:49 +03:00
coffeepots
581b4a98ef Fixed allowing "0x" for data but not quantity, less exports 2018-08-09 13:50:49 +03:00
coffeepots
a0833475d4 Rename test suite 2018-08-09 13:50:49 +03:00
coffeepots
a48e1e96c5 Rename test suite 2018-08-09 13:50:49 +03:00
coffeepots
07e28ac01e proc to func and update names 2018-08-09 13:50:49 +03:00
coffeepots
b37bdecc02 Convert some procs to funcs and a bit of renaming, use unlikely 2018-08-09 13:50:49 +03:00
coffeepots
f3ccd72f91 Remove redundant account creation, already done in mutateStateDb 2018-08-09 13:50:49 +03:00
coffeepots
64b96cd8f5 Remove redundant conversion 2018-08-09 13:50:49 +03:00
coffeepots
155457d47f Basic eth node setup for RPC testing (WIP) 2018-08-09 13:50:49 +03:00
coffeepots
a027ca2b25 eth_getBalance in p2p 2018-08-09 13:50:49 +03:00
coffeepots
da8849a5a0 Removed eth_getBalance from common 2018-08-09 13:50:49 +03:00
coffeepots
4773559739 Fixes for short strings, added raise-on-failed-validation procs 2018-08-09 13:50:49 +03:00
coffeepots
723ef3cf70 Fix for json conversion of hexstrings 2018-08-09 13:50:49 +03:00
coffeepots
c5514155ee Add tests for JSON RPC hex strings 2018-08-09 13:50:49 +03:00
coffeepots
d4571c01dd Add JSON RPC hex strings support 2018-08-09 13:50:49 +03:00
coffeepots
79abeafa41 Setup test rpc server, initial call to eth_getBalance 2018-08-09 13:50:49 +03:00
Yuriy Glukhov
989ac892aa
Merge pull request #100 from status-im/fix-genesis-hash-computation
Fix the genesis state hash computation
2018-08-09 12:49:25 +03:00
Zahary Karadjov
350188bd29 address review comments 2018-08-09 12:25:37 +03:00
coffeepots
06b9471ef1
Merge pull request #99 from status-im/RunVMTestsDuringCI
Run VMTests during CI and drop VMTests.md
2018-08-08 14:48:29 +01:00
Zahary Karadjov
d902be66ee Fix the genesis state hash computation
The account database needed to use the secure flavour of the Hexary
Trie. This means all keys are SHA3 hashed before being inserted.
2018-08-08 15:48:34 +03:00
Dustin Brody
72a2993039 All VMTests pass and in CI, so progress indicator redundant 2018-08-07 13:19:15 -07:00
Dustin Brody
7fd2fa6184 Run VMTests as part of nimble tests, as well as Appveyor and Travis CI 2018-08-07 13:15:56 -07:00
Dustin Brody
21fcaeb8ef add inexpensive vmPerformanceTests, especially Ackermann and Fibonacci tests; whole suite still runs in a few seconds 2018-08-07 12:24:37 -07:00
Dustin Brody
ea2f3b71bf
Complete VM Test sync, with EXP(0, 0) defined as 1 now (#98) 2018-08-07 18:41:01 +00:00
Dustin Brody
2136bc74fd
Sanitize memory addresses and lengths (#97)
* add a helper function to ensure for memory addressing and length purposes, especially as applied to array indexing and bounds-checking, that non-negative UInt256 numbers remain non-negative when lossily converted to int's
2018-08-06 16:33:20 +00:00
Yuriy Glukhov
467a9c3d7a
Merge pull request #93 from status-im/genesis
Added genesis initialization
2018-08-06 18:02:39 +03:00
Dustin Brody
6a3fa4cb22
Merge pull request #94 from status-im/FixLog3Log4CallDataCopyRandomTestFixtures
fix assorted test fixtures which have been un-skipped
2018-08-03 21:07:36 +00:00
Dustin Brody
e2dd3ae051 Import current official GeneralStateTests 2018-08-03 13:18:04 -07:00
Yuriy Glukhov
e4929d4f60 Slightly reworked ChainDB interface to more consistent 2018-08-03 14:56:49 +03:00
Yuriy Glukhov
db62ef132e More comments addressed 2018-08-03 14:10:07 +03:00
Dustin Brody
71679d6d95 fix assorted test fixtures which have been un-skipped 2018-08-02 15:57:28 -07:00
Dustin Brody
8325b6461f Stop skipping all but time-intensive vmPerformance VMTests by default 2018-08-02 09:37:16 -07:00
Yuriy Glukhov
39d604a8d7 Fixed rinkeby alloc data 2018-08-02 17:16:34 +03:00
Yuriy Glukhov
ebfe25fc2c Comments addressed 2018-08-02 17:08:10 +03:00
Yuriy Glukhov
3ec46fa668 Use real file for sqlite 2018-08-02 17:07:44 +03:00
Dustin Brody
d94dfbdb43 following https://github.com/ethereum/tests/pull/444 synchronize with upstream test changes by removing many which rely on mocking BLOCKHASH/BALANCE just for VM tests (#92) 2018-08-02 14:21:42 +02:00
Yuriy Glukhov
04f404fb22 Fixed toPublicNetwork 2018-08-02 11:18:12 +03:00