* Write state diff to CSV (#2)
* port statediff from 9b7fd9af80/statediff/statediff.go; minor fixes
* integrating state diff extracting, building, and persisting into geth processes
* work towards persisting created statediffs in ipfs; based off github.com/vulcanize/eth-block-extractor
* Add a state diff service
* Remove diff extractor from blockchain
* Update imports
* Move statediff on/off check to geth cmd config
* Update starting state diff service
* Add debugging logs for creating diff
* Add statediff extractor and builder tests and small refactoring
* Start to write statediff to a CSV
* Restructure statediff directory
* Pull CSV publishing methods into their own file
* Reformatting due to go fmt
* Add gomega to vendor dir
* Remove testing focuses
* Update statediff tests to use golang test pkg
instead of ginkgo
- builder_test
- extractor_test
- publisher_test
* Use hexutil.Encode instead of deprecated common.ToHex
* Remove OldValue from DiffBigInt and DiffUint64 fields
* Update builder test
* Remove old storage value from updated accounts
* Remove old values from created/deleted accounts
* Update publisher to account for only storing current account values
* Update service loop and fetching previous block
* Update testing
- remove statediff ginkgo test suite file
- move mocks to their own dir
* Updates per go fmt
* Updates to tests
* Pass statediff mode and path in through cli
* Return filename from publisher
* Remove some duplication in builder
* Remove code field from state diff output
this is the contract byte code, and it can still be obtained by querying
the db by the codeHash
* Consolidate acct diff structs for updated & updated/deleted accts
* Include block number in csv filename
* Clean up error logging
* Cleanup formatting, spelling, etc
* Address PR comments
* Add contract address and storage value to csv
* Refactor accumulating account row in csv publisher
* Add DiffStorage struct
* Add storage key to csv
* Address PR comments
* Fix publisher to include rows for accounts that don't have store updates
* Update builder test after merging in release/1.8
* Update test contract to include storage on contract intialization
- so that we're able to test that storage diffing works for created and
deleted accounts (not just updated accounts).
* Factor out a common trie iterator method in builder
* Apply goimports to statediff
* Apply gosimple changes to statediff
* Gracefully exit geth command(#4)
* Statediff for full node (#6)
* Open a trie from the in-memory database
* Use a node's LeafKey as an identifier instead of the address
It was proving difficult to find look the address up from a given path
with a full node (sometimes the value wouldn't exist in the disk db).
So, instead, for now we are using the node's LeafKey with is a Keccak256
hash of the address, so if we know the address we can figure out which
LeafKey it matches up to.
* Make sure that statediff has been processed before pruning
* Use blockchain stateCache.OpenTrie for storage diffs
* Clean up log lines and remove unnecessary fields from builder
* Apply go fmt changes
* Add a sleep to the blockchain test
* refactoring/reorganizing packages
* refactoring statediff builder and types and adjusted to relay proofs and paths (still need to make this optional)
* refactoring state diff service and adding api which allows for streaming state diff payloads over an rpc websocket subscription
* make proofs and paths optional + compress service loop into single for loop (may be missing something here)
* option to process intermediate nodes
* make state diff rlp serializable
* cli parameter to limit statediffing to select account addresses + test
* review fixes and fixes for issues ran into in integration
* review fixes; proper method signature for api; adjust service so that statediff processing is halted/paused until there is at least one subscriber listening for the results
* adjust buffering to improve stability; doc.go; fix notifier
err handling
* relay receipts with the rest of the data + review fixes/changes
* rpc method to get statediff at specific block; requires archival node or the block be within the pruning range
* fix linter issues
* include total difficulty to the payload
* fix state diff builder: emit actual leaf nodes instead of value nodes; diff on the leaf not on the value; emit correct path for intermediate nodes
* adjust statediff builder tests to changes and extend to test intermediate nodes; golint
* add genesis block to test; handle block 0 in StateDiffAt
* rlp files for mainnet blocks 0-3, for tests
* builder test on mainnet blocks
* common.BytesToHash(path) => crypto.Keaccak256(hash) in builder; BytesToHash produces same hash for e.g. []byte{} and []byte{\x00} - prefix \x00 steps are inconsequential to the hash result
* complete tests for early mainnet blocks
* diff type for representing deleted accounts
* fix builder so that we handle account deletions properly and properly diff storage when an account is moved to a new path; update params
* remove cli params; moving them to subscriber defined
* remove unneeded bc methods
* update service and api; statediffing params are now defined by user through api rather than by service provider by cli
* update top level tests
* add ability to watch specific storage slots (leaf keys) only
* comments; explain logic
* update mainnet blocks test
* update api_test.go
* storage leafkey filter test
* cleanup chain maker
* adjust chain maker for tests to add an empty account in block1 and switch to EIP-158 afterwards (now we just need to generate enough accounts until one causes the empty account to be touched and removed post-EIP-158 so we can simulate and test that process...); also added 2 new blocks where more contract storage is set and old slots are set to zero so they are removed so we can test that
* found an account whose creation causes the empty account to be moved to a new path; this should count as 'touching; the empty account and cause it to be removed according to eip-158... but it doesn't
* use new contract in unit tests that has self-destruct ability, so we can test eip-158 since simply moving an account to new path doesn't count as 'touchin' it
* handle storage deletions
* tests for eip-158 account removal and storage value deletions; there is one edge case left to test where we remove 1 account when only two exist such that the remaining account is moved up and replaces the root branch node
* finish testing known edge cases
* add endpoint to fetch all state and storage nodes at a given blockheight; useful for generating a recent atate cache/snapshot that we can diff forward from rather than needing to collect all diffs from genesis
* test for state trie builder
* if statediffing is on, lock tries in triedb until the statediffing service signals they are done using them
* fix mock blockchain; golint; bump patch
* increase maxRequestContentLength; bump patch
* log the sizes of the state objects we are sending
* CI build (#20)
* CI: run build on PR and on push to master
* CI: debug building geth
* CI: fix coping file
* CI: fix coping file v2
* CI: temporary upload file to release asset
* CI: get release upload_url by tag, upload asset to current relase
* CI: fix tag name
* fix ci build on statediff_at_anyblock-1.9.11 branch
* fix publishing assets in release
* use context deadline for timeout in eth_call
* collect and emit codehash=>code mappings for state objects
* subscription endpoint for retrieving all the codehash=>code mappings that exist at provided height
* Implement WriteStateDiffAt
* Writes state diffs directly to postgres
* Adds CLI flags to configure PG
* Refactors builder output with callbacks
* Copies refactored postgres handling code from ipld-eth-indexer
* rename PostgresCIDWriter.{index->upsert}*
* go.mod update
* rm unused
* cleanup
* output code & codehash iteratively
* had to rf some types for this
* prometheus metrics output
* duplicate recent eth-indexer changes
* migrations and metrics...
* [wip] prom.Init() here? another CLI flag?
* tidy & DRY
* statediff WriteLoop service + CLI flag
* [wip] update test mocks
* todo - do something meaningful to test write loop
* logging
* use geth log
* port tests to go testing
* drop ginkgo/gomega
* fix and cleanup tests
* fail before defer statement
* delete vendor/ dir
* fixes after rebase onto 1.9.23
* fix API registration
* use golang 1.15.5 version (#34)
* bump version meta; add 0.0.11 branch to actions
* bump version meta; update github actions workflows
* statediff: refactor metrics
* Remove redundant statediff/indexer/prom tooling and use existing
prometheus integration.
* "indexer" namespace for metrics
* add reporting loop for db metrics
* doc
* metrics for statediff stats
* metrics namespace/subsystem = statediff/{indexer,service}
* statediff: use a worker pool (for direct writes)
* fix test
* fix chain event subscription
* log tweaks
* func name
* unused import
* intermediate chain event channel for metrics
* update github actions; linting
* add poststate and status to receipt ipld indexes
* stateDiffFor endpoints for fetching or writing statediff object by blockhash; bump statediff version
* fixes after rebase on to v1.10.1
* update github actions and version meta; go fmt
* add leaf key to removed 'nodes'
* include Postgres migrations and schema
* service documentation
* touching up
update github actions after rebase
fix connection leak (misplaced defer) and perform proper rollback on errs
improve error logging; handle PushBlock internal err
* build docker image and publish it to Docker Hub on release
* add access list tx to unit tests
* MarshalBinary and UnmarshalBinary methods for receipt
* fix error caused by 2718 by using MarshalBinary instead of EncodeRLP methods
* ipld encoding/decoding tests
* update TxModel; add AccessListElementModel
* index tx type and access lists
* add access list metrics
* unit tests for tx_type and access list table
* unit tests for receipt marshal/unmarshal binary methods
* improve documentation of the encoding methods
* fix issue identified in linting
586 lines
21 KiB
Go
586 lines
21 KiB
Go
package ipld
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
"runtime"
|
|
"strconv"
|
|
"testing"
|
|
|
|
block "github.com/ipfs/go-block-format"
|
|
node "github.com/ipfs/go-ipld-format"
|
|
"github.com/multiformats/go-multihash"
|
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
)
|
|
|
|
func TestBlockBodyRlpParsing(t *testing.T) {
|
|
fi, err := os.Open("test_data/eth-block-body-rlp-999999")
|
|
checkError(err, t)
|
|
|
|
output, _, _, err := FromBlockRLP(fi)
|
|
checkError(err, t)
|
|
|
|
testEthBlockFields(output, t)
|
|
}
|
|
|
|
func TestBlockHeaderRlpParsing(t *testing.T) {
|
|
fi, err := os.Open("test_data/eth-block-header-rlp-999999")
|
|
checkError(err, t)
|
|
|
|
output, _, _, err := FromBlockRLP(fi)
|
|
checkError(err, t)
|
|
|
|
testEthBlockFields(output, t)
|
|
}
|
|
|
|
func TestBlockBodyJsonParsing(t *testing.T) {
|
|
fi, err := os.Open("test_data/eth-block-body-json-999999")
|
|
checkError(err, t)
|
|
|
|
output, _, _, err := FromBlockJSON(fi)
|
|
checkError(err, t)
|
|
|
|
testEthBlockFields(output, t)
|
|
}
|
|
|
|
func TestEthBlockProcessTransactionsError(t *testing.T) {
|
|
// Let's just change one byte in a field of one of these transactions.
|
|
fi, err := os.Open("test_data/error-tx-eth-block-body-json-999999")
|
|
checkError(err, t)
|
|
|
|
_, _, _, err = FromBlockJSON(fi)
|
|
if err == nil {
|
|
t.Fatal("Expected an error")
|
|
}
|
|
}
|
|
|
|
// TestDecodeBlockHeader should work for both inputs (block header and block body)
|
|
// as what we are storing is just the block header
|
|
func TestDecodeBlockHeader(t *testing.T) {
|
|
storedEthBlock := prepareStoredEthBlock("test_data/eth-block-header-rlp-999999", t)
|
|
|
|
ethBlock, err := DecodeEthHeader(storedEthBlock.Cid(), storedEthBlock.RawData())
|
|
checkError(err, t)
|
|
|
|
testEthBlockFields(ethBlock, t)
|
|
}
|
|
|
|
func TestEthBlockString(t *testing.T) {
|
|
ethBlock := prepareDecodedEthBlock("test_data/eth-block-header-rlp-999999", t)
|
|
if ethBlock.String() != "<EthHeader bagiacgzawt5236hkiuvrhfyy4jya3qitlt6icfcqgheew6vsptlraokppm4a>" {
|
|
t.Fatalf("Wrong String()\r\nexpected %s\r\ngot %s", "<EthHeader bagiacgzawt5236hkiuvrhfyy4jya3qitlt6icfcqgheew6vsptlraokppm4a>", ethBlock.String())
|
|
}
|
|
}
|
|
|
|
func TestEthBlockLoggable(t *testing.T) {
|
|
ethBlock := prepareDecodedEthBlock("test_data/eth-block-header-rlp-999999", t)
|
|
|
|
l := ethBlock.Loggable()
|
|
if _, ok := l["type"]; !ok {
|
|
t.Fatal("Loggable map expected the field 'type'")
|
|
}
|
|
|
|
if l["type"] != "eth-header" {
|
|
t.Fatalf("Wrong Loggable 'type' value\r\nexpected %s\r\ngot %s", "eth-header", l["type"])
|
|
}
|
|
}
|
|
|
|
func TestEthBlockJSONMarshal(t *testing.T) {
|
|
ethBlock := prepareDecodedEthBlock("test_data/eth-block-header-rlp-999999", t)
|
|
|
|
jsonOutput, err := ethBlock.MarshalJSON()
|
|
checkError(err, t)
|
|
|
|
var data map[string]interface{}
|
|
err = json.Unmarshal(jsonOutput, &data)
|
|
checkError(err, t)
|
|
|
|
// Testing all fields is boring, but can help us to avoid
|
|
// that dreaded regression
|
|
if data["bloom"].(string)[:10] != "0x00000000" {
|
|
t.Fatalf("Wrong Bloom\r\nexpected %s\r\ngot %s", "0x00000000", data["bloom"].(string)[:10])
|
|
t.Fatal("Wrong Bloom")
|
|
}
|
|
if data["coinbase"] != "0x52bc44d5378309ee2abf1539bf71de1b7d7be3b5" {
|
|
t.Fatalf("Wrong coinbase\r\nexpected %s\r\ngot %s", "0x52bc44d5378309ee2abf1539bf71de1b7d7be3b5", data["coinbase"])
|
|
}
|
|
if parseFloat(data["difficulty"]) != "12555463106190" {
|
|
t.Fatalf("Wrong Difficulty\r\nexpected %s\r\ngot %s", "12555463106190", parseFloat(data["difficulty"]))
|
|
}
|
|
if data["extra"] != "0xd783010303844765746887676f312e342e32856c696e7578" {
|
|
t.Fatalf("Wrong Extra\r\nexpected %s\r\ngot %s", "0xd783010303844765746887676f312e342e32856c696e7578", data["extra"])
|
|
}
|
|
if parseFloat(data["gaslimit"]) != "3141592" {
|
|
t.Fatalf("Wrong Gas limit\r\nexpected %s\r\ngot %s", "3141592", parseFloat(data["gaslimit"]))
|
|
}
|
|
if parseFloat(data["gasused"]) != "231000" {
|
|
t.Fatalf("Wrong Gas used\r\nexpected %s\r\ngot %s", "231000", parseFloat(data["gasused"]))
|
|
}
|
|
if data["mixdigest"] != "0x5b10f4a08a6c209d426f6158bd24b574f4f7b7aa0099c67c14a1f693b4dd04d0" {
|
|
t.Fatalf("Wrong Mix digest\r\nexpected %s\r\ngot %s", "0x5b10f4a08a6c209d426f6158bd24b574f4f7b7aa0099c67c14a1f693b4dd04d0", data["mixdigest"])
|
|
}
|
|
if data["nonce"] != "0xf491f46b60fe04b3" {
|
|
t.Fatalf("Wrong nonce\r\nexpected %s\r\ngot %s", "0xf491f46b60fe04b3", data["nonce"])
|
|
}
|
|
if parseFloat(data["number"]) != "999999" {
|
|
t.Fatalf("Wrong block number\r\nexpected %s\r\ngot %s", "999999", parseFloat(data["number"]))
|
|
}
|
|
if parseMapElement(data["parent"]) != "bagiacgza2m6j3xu774hlvjxhd2fsnuv5ufom6ei4ply3mm3jrleeozt7b62a" {
|
|
t.Fatalf("Wrong Parent cid\r\nexpected %s\r\ngot %s", "bagiacgza2m6j3xu774hlvjxhd2fsnuv5ufom6ei4ply3mm3jrleeozt7b62a", parseMapElement(data["parent"]))
|
|
}
|
|
if parseMapElement(data["receipts"]) != "bagkacgzap6qpnsrkagbdecgybaa63ljx4pr2aa5vlsetdg2f5mpzpbrk2iuq" {
|
|
t.Fatalf("Wrong Receipt root cid\r\nexpected %s\r\ngot %s", "bagkacgzap6qpnsrkagbdecgybaa63ljx4pr2aa5vlsetdg2f5mpzpbrk2iuq", parseMapElement(data["receipts"]))
|
|
}
|
|
if parseMapElement(data["root"]) != "baglacgza5wmkus23dhec7m2tmtyikcfobjw6yzs7uv3ghxfjjroxavkm3yia" {
|
|
t.Fatalf("Wrong root hash cid\r\nexpected %s\r\ngot %s", "baglacgza5wmkus23dhec7m2tmtyikcfobjw6yzs7uv3ghxfjjroxavkm3yia", parseMapElement(data["root"]))
|
|
}
|
|
if parseFloat(data["time"]) != "1455404037" {
|
|
t.Fatalf("Wrong Time\r\nexpected %s\r\ngot %s", "1455404037", parseFloat(data["time"]))
|
|
}
|
|
if parseMapElement(data["tx"]) != "bagjacgzair6l3dci6smknejlccbrzx7vtr737s56onoksked2t5anxgxvzka" {
|
|
t.Fatalf("Wrong Tx root cid\r\nexpected %s\r\ngot %s", "bagjacgzair6l3dci6smknejlccbrzx7vtr737s56onoksked2t5anxgxvzka", parseMapElement(data["tx"]))
|
|
}
|
|
if parseMapElement(data["uncles"]) != "bagiqcgzadxge32g6y5oxvk4fwvt3ntgudljreri3ssfhie7qufbp2qgusndq" {
|
|
t.Fatalf("Wrong Uncle hash cid\r\nexpected %s\r\ngot %s", "bagiqcgzadxge32g6y5oxvk4fwvt3ntgudljreri3ssfhie7qufbp2qgusndq", parseMapElement(data["uncles"]))
|
|
}
|
|
}
|
|
|
|
func TestEthBlockLinks(t *testing.T) {
|
|
ethBlock := prepareDecodedEthBlock("test_data/eth-block-header-rlp-999999", t)
|
|
|
|
links := ethBlock.Links()
|
|
if links[0].Cid.String() != "bagiacgza2m6j3xu774hlvjxhd2fsnuv5ufom6ei4ply3mm3jrleeozt7b62a" {
|
|
t.Fatalf("Wrong cid for parent link\r\nexpected: %s\r\ngot %s", "bagiacgza2m6j3xu774hlvjxhd2fsnuv5ufom6ei4ply3mm3jrleeozt7b62a", links[0].Cid.String())
|
|
}
|
|
if links[1].Cid.String() != "bagkacgzap6qpnsrkagbdecgybaa63ljx4pr2aa5vlsetdg2f5mpzpbrk2iuq" {
|
|
t.Fatalf("Wrong cid for receipt root link\r\nexpected: %s\r\ngot %s", "bagkacgzap6qpnsrkagbdecgybaa63ljx4pr2aa5vlsetdg2f5mpzpbrk2iuq", links[1].Cid.String())
|
|
}
|
|
if links[2].Cid.String() != "baglacgza5wmkus23dhec7m2tmtyikcfobjw6yzs7uv3ghxfjjroxavkm3yia" {
|
|
t.Fatalf("Wrong cid for state root link\r\nexpected: %s\r\ngot %s", "baglacgza5wmkus23dhec7m2tmtyikcfobjw6yzs7uv3ghxfjjroxavkm3yia", links[2].Cid.String())
|
|
}
|
|
if links[3].Cid.String() != "bagjacgzair6l3dci6smknejlccbrzx7vtr737s56onoksked2t5anxgxvzka" {
|
|
t.Fatalf("Wrong cid for tx root link\r\nexpected: %s\r\ngot %s", "bagjacgzair6l3dci6smknejlccbrzx7vtr737s56onoksked2t5anxgxvzka", links[3].Cid.String())
|
|
}
|
|
if links[4].Cid.String() != "bagiqcgzadxge32g6y5oxvk4fwvt3ntgudljreri3ssfhie7qufbp2qgusndq" {
|
|
t.Fatalf("Wrong cid for uncles root link\r\nexpected: %s\r\ngot %s", "bagiqcgzadxge32g6y5oxvk4fwvt3ntgudljreri3ssfhie7qufbp2qgusndq", links[4].Cid.String())
|
|
}
|
|
}
|
|
|
|
func TestEthBlockResolveEmptyPath(t *testing.T) {
|
|
ethBlock := prepareDecodedEthBlock("test_data/eth-block-header-rlp-999999", t)
|
|
|
|
obj, rest, err := ethBlock.Resolve([]string{})
|
|
checkError(err, t)
|
|
|
|
if ethBlock != obj.(*EthHeader) {
|
|
t.Fatal("Should have returned the same eth-block object")
|
|
}
|
|
|
|
if len(rest) != 0 {
|
|
t.Fatalf("Wrong len of rest of the path returned\r\nexpected %d\r\ngot %d", 0, len(rest))
|
|
}
|
|
}
|
|
|
|
func TestEthBlockResolveNoSuchLink(t *testing.T) {
|
|
ethBlock := prepareDecodedEthBlock("test_data/eth-block-header-rlp-999999", t)
|
|
|
|
_, _, err := ethBlock.Resolve([]string{"wewonthavethisfieldever"})
|
|
if err == nil {
|
|
t.Fatal("Should have failed with unknown field")
|
|
}
|
|
|
|
if err.Error() != "no such link" {
|
|
t.Fatalf("Wrong error message\r\nexpected %s\r\ngot %s", "no such link", err.Error())
|
|
}
|
|
}
|
|
|
|
func TestEthBlockResolveBloom(t *testing.T) {
|
|
ethBlock := prepareDecodedEthBlock("test_data/eth-block-header-rlp-999999", t)
|
|
|
|
obj, rest, err := ethBlock.Resolve([]string{"bloom"})
|
|
checkError(err, t)
|
|
|
|
// The marshaler of types.Bloom should output it as 0x
|
|
bloomInText := fmt.Sprintf("%x", obj.(types.Bloom))
|
|
if bloomInText[:10] != "0000000000" {
|
|
t.Fatalf("Wrong Bloom\r\nexpected %s\r\ngot %s", "0000000000", bloomInText[:10])
|
|
}
|
|
|
|
if len(rest) != 0 {
|
|
t.Fatalf("Wrong len of rest of the path returned\r\nexpected %d\r\ngot %d", 0, len(rest))
|
|
}
|
|
}
|
|
|
|
func TestEthBlockResolveBloomExtraPathElements(t *testing.T) {
|
|
ethBlock := prepareDecodedEthBlock("test_data/eth-block-header-rlp-999999", t)
|
|
|
|
obj, rest, err := ethBlock.Resolve([]string{"bloom", "unexpected", "extra", "elements"})
|
|
if obj != nil {
|
|
t.Fatal("Returned obj should be nil")
|
|
}
|
|
|
|
if rest != nil {
|
|
t.Fatal("Returned rest should be nil")
|
|
}
|
|
|
|
if err.Error() != "unexpected path elements past bloom" {
|
|
t.Fatalf("Wrong error\r\nexpected %s\r\ngot %s", "unexpected path elements past bloom", err.Error())
|
|
}
|
|
}
|
|
|
|
func TestEthBlockResolveNonLinkFields(t *testing.T) {
|
|
ethBlock := prepareDecodedEthBlock("test_data/eth-block-header-rlp-999999", t)
|
|
|
|
testCases := map[string][]string{
|
|
"coinbase": {"%x", "52bc44d5378309ee2abf1539bf71de1b7d7be3b5"},
|
|
"difficulty": {"%s", "12555463106190"},
|
|
"extra": {"%s", "0xd783010303844765746887676f312e342e32856c696e7578"},
|
|
"gaslimit": {"%d", "3141592"},
|
|
"gasused": {"%d", "231000"},
|
|
"mixdigest": {"%x", "5b10f4a08a6c209d426f6158bd24b574f4f7b7aa0099c67c14a1f693b4dd04d0"},
|
|
"nonce": {"%x", "f491f46b60fe04b3"},
|
|
"number": {"%s", "999999"},
|
|
"time": {"%d", "1455404037"},
|
|
}
|
|
|
|
for field, value := range testCases {
|
|
obj, rest, err := ethBlock.Resolve([]string{field})
|
|
checkError(err, t)
|
|
|
|
format := value[0]
|
|
result := value[1]
|
|
if fmt.Sprintf(format, obj) != result {
|
|
t.Fatalf("Wrong %v\r\nexpected %v\r\ngot %s", field, result, fmt.Sprintf(format, obj))
|
|
}
|
|
|
|
if len(rest) != 0 {
|
|
t.Fatalf("Wrong len of rest of the path returned\r\nexpected %d\r\ngot %d", 0, len(rest))
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestEthBlockResolveNonLinkFieldsExtraPathElements(t *testing.T) {
|
|
ethBlock := prepareDecodedEthBlock("test_data/eth-block-header-rlp-999999", t)
|
|
|
|
testCases := []string{
|
|
"coinbase",
|
|
"difficulty",
|
|
"extra",
|
|
"gaslimit",
|
|
"gasused",
|
|
"mixdigest",
|
|
"nonce",
|
|
"number",
|
|
"time",
|
|
}
|
|
|
|
for _, field := range testCases {
|
|
obj, rest, err := ethBlock.Resolve([]string{field, "unexpected", "extra", "elements"})
|
|
if obj != nil {
|
|
t.Fatal("Returned obj should be nil")
|
|
}
|
|
|
|
if rest != nil {
|
|
t.Fatal("Returned rest should be nil")
|
|
}
|
|
|
|
if err.Error() != "unexpected path elements past "+field {
|
|
t.Fatalf("Wrong error\r\nexpected %s\r\ngot %s", "unexpected path elements past "+field, err.Error())
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
func TestEthBlockResolveLinkFields(t *testing.T) {
|
|
ethBlock := prepareDecodedEthBlock("test_data/eth-block-header-rlp-999999", t)
|
|
|
|
testCases := map[string]string{
|
|
"parent": "bagiacgza2m6j3xu774hlvjxhd2fsnuv5ufom6ei4ply3mm3jrleeozt7b62a",
|
|
"receipts": "bagkacgzap6qpnsrkagbdecgybaa63ljx4pr2aa5vlsetdg2f5mpzpbrk2iuq",
|
|
"root": "baglacgza5wmkus23dhec7m2tmtyikcfobjw6yzs7uv3ghxfjjroxavkm3yia",
|
|
"tx": "bagjacgzair6l3dci6smknejlccbrzx7vtr737s56onoksked2t5anxgxvzka",
|
|
"uncles": "bagiqcgzadxge32g6y5oxvk4fwvt3ntgudljreri3ssfhie7qufbp2qgusndq",
|
|
}
|
|
|
|
for field, result := range testCases {
|
|
obj, rest, err := ethBlock.Resolve([]string{field, "anything", "goes", "here"})
|
|
checkError(err, t)
|
|
|
|
lnk, ok := obj.(*node.Link)
|
|
if !ok {
|
|
t.Fatal("Returned object is not a link")
|
|
}
|
|
|
|
if lnk.Cid.String() != result {
|
|
t.Fatalf("Wrong %s cid\r\nexpected %v\r\ngot %v", field, result, lnk.Cid.String())
|
|
}
|
|
|
|
for i, p := range []string{"anything", "goes", "here"} {
|
|
if rest[i] != p {
|
|
t.Fatalf("Wrong rest of the path returned\r\nexpected %s\r\ngot %s", p, rest[i])
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestEthBlockTreeBadParams(t *testing.T) {
|
|
ethBlock := prepareDecodedEthBlock("test_data/eth-block-header-rlp-999999", t)
|
|
|
|
tree := ethBlock.Tree("non-empty-string", 0)
|
|
if tree != nil {
|
|
t.Fatal("Expected nil to be returned")
|
|
}
|
|
|
|
tree = ethBlock.Tree("non-empty-string", 1)
|
|
if tree != nil {
|
|
t.Fatal("Expected nil to be returned")
|
|
}
|
|
|
|
tree = ethBlock.Tree("", 0)
|
|
if tree != nil {
|
|
t.Fatal("Expected nil to be returned")
|
|
}
|
|
}
|
|
|
|
func TestEThBlockTree(t *testing.T) {
|
|
ethBlock := prepareDecodedEthBlock("test_data/eth-block-header-rlp-999999", t)
|
|
|
|
tree := ethBlock.Tree("", 1)
|
|
lookupElements := map[string]interface{}{
|
|
"bloom": nil,
|
|
"coinbase": nil,
|
|
"difficulty": nil,
|
|
"extra": nil,
|
|
"gaslimit": nil,
|
|
"gasused": nil,
|
|
"mixdigest": nil,
|
|
"nonce": nil,
|
|
"number": nil,
|
|
"parent": nil,
|
|
"receipts": nil,
|
|
"root": nil,
|
|
"time": nil,
|
|
"tx": nil,
|
|
"uncles": nil,
|
|
}
|
|
|
|
if len(tree) != len(lookupElements) {
|
|
t.Fatalf("Wrong number of elements\r\nexpected %d\r\ngot %d", len(lookupElements), len(tree))
|
|
}
|
|
|
|
for _, te := range tree {
|
|
if _, ok := lookupElements[te]; !ok {
|
|
t.Fatalf("Unexpected Element: %v", te)
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
The two functions above: TestEthBlockResolveNonLinkFields and
|
|
TestEthBlockResolveLinkFields did all the heavy lifting. Then, we will
|
|
just test two use cases.
|
|
*/
|
|
func TestEthBlockResolveLinksBadLink(t *testing.T) {
|
|
ethBlock := prepareDecodedEthBlock("test_data/eth-block-header-rlp-999999", t)
|
|
|
|
obj, rest, err := ethBlock.ResolveLink([]string{"supercalifragilist"})
|
|
if obj != nil {
|
|
t.Fatalf("Expected obj to be nil")
|
|
}
|
|
if rest != nil {
|
|
t.Fatal("Expected rest to be nil")
|
|
}
|
|
if err.Error() != "no such link" {
|
|
t.Fatalf("Expected error\r\nexpected %s\r\ngot %s", "no such link", err.Error())
|
|
}
|
|
}
|
|
|
|
func TestEthBlockResolveLinksGoodLink(t *testing.T) {
|
|
ethBlock := prepareDecodedEthBlock("test_data/eth-block-header-rlp-999999", t)
|
|
|
|
obj, rest, err := ethBlock.ResolveLink([]string{"tx", "0", "0", "0"})
|
|
if obj == nil {
|
|
t.Fatalf("Expected valid *node.Link obj to be returned")
|
|
}
|
|
|
|
if rest == nil {
|
|
t.Fatal("Expected rest to be returned")
|
|
}
|
|
for i, p := range []string{"0", "0", "0"} {
|
|
if rest[i] != p {
|
|
t.Fatalf("Wrong rest of the path returned\r\nexpected %s\r\ngot %s", p, rest[i])
|
|
}
|
|
}
|
|
|
|
if err != nil {
|
|
t.Fatal("Non error expected")
|
|
}
|
|
}
|
|
|
|
/*
|
|
These functions below should go away
|
|
We are working on test coverage anyways...
|
|
*/
|
|
func TestEthBlockCopy(t *testing.T) {
|
|
ethBlock := prepareDecodedEthBlock("test_data/eth-block-header-rlp-999999", t)
|
|
|
|
defer func() {
|
|
r := recover()
|
|
if r == nil {
|
|
t.Fatal("Expected panic")
|
|
}
|
|
if r != "implement me" {
|
|
t.Fatalf("Wrong panic message\r\nexpected %s\r\ngot %s", "'implement me'", r)
|
|
}
|
|
}()
|
|
|
|
_ = ethBlock.Copy()
|
|
}
|
|
|
|
func TestEthBlockStat(t *testing.T) {
|
|
ethBlock := prepareDecodedEthBlock("test_data/eth-block-header-rlp-999999", t)
|
|
|
|
obj, err := ethBlock.Stat()
|
|
if obj == nil {
|
|
t.Fatal("Expected a not null object node.NodeStat")
|
|
}
|
|
|
|
if err != nil {
|
|
t.Fatal("Expected a nil error")
|
|
}
|
|
}
|
|
|
|
func TestEthBlockSize(t *testing.T) {
|
|
ethBlock := prepareDecodedEthBlock("test_data/eth-block-header-rlp-999999", t)
|
|
|
|
size, err := ethBlock.Size()
|
|
if size != 0 {
|
|
t.Fatalf("Wrong size\r\nexpected %d\r\ngot %d", 0, size)
|
|
}
|
|
|
|
if err != nil {
|
|
t.Fatal("Expected a nil error")
|
|
}
|
|
}
|
|
|
|
/*
|
|
AUXILIARS
|
|
*/
|
|
|
|
// checkError makes 3 lines into 1.
|
|
func checkError(err error, t *testing.T) {
|
|
if err != nil {
|
|
_, fn, line, _ := runtime.Caller(1)
|
|
t.Fatalf("[%v:%v] %v", fn, line, err)
|
|
}
|
|
}
|
|
|
|
// parseFloat is a convenience function to test json output
|
|
func parseFloat(v interface{}) string {
|
|
return strconv.FormatFloat(v.(float64), 'f', 0, 64)
|
|
}
|
|
|
|
// parseMapElement is a convenience function to tets json output
|
|
func parseMapElement(v interface{}) string {
|
|
return v.(map[string]interface{})["/"].(string)
|
|
}
|
|
|
|
// prepareStoredEthBlock reads the block from a file source to get its rawdata
|
|
// and computes its cid, for then, feeding it into a new IPLD block function.
|
|
// So we can pretend that we got this block from the datastore
|
|
func prepareStoredEthBlock(filepath string, t *testing.T) *block.BasicBlock {
|
|
// Prepare the "fetched block". This one is supposed to be in the datastore
|
|
// and given away by github.com/ipfs/go-ipfs/merkledag
|
|
fi, err := os.Open(filepath)
|
|
checkError(err, t)
|
|
|
|
b, err := ioutil.ReadAll(fi)
|
|
checkError(err, t)
|
|
|
|
c, err := RawdataToCid(MEthHeader, b, multihash.KECCAK_256)
|
|
checkError(err, t)
|
|
|
|
// It's good to clarify that this one below is an IPLD block
|
|
storedEthBlock, err := block.NewBlockWithCid(b, c)
|
|
checkError(err, t)
|
|
|
|
return storedEthBlock
|
|
}
|
|
|
|
// prepareDecodedEthBlock is more complex than function above, as it stores a
|
|
// basic block and RLP-decodes it
|
|
func prepareDecodedEthBlock(filepath string, t *testing.T) *EthHeader {
|
|
// Get the block from the datastore and decode it.
|
|
storedEthBlock := prepareStoredEthBlock("test_data/eth-block-header-rlp-999999", t)
|
|
ethBlock, err := DecodeEthHeader(storedEthBlock.Cid(), storedEthBlock.RawData())
|
|
checkError(err, t)
|
|
|
|
return ethBlock
|
|
}
|
|
|
|
// testEthBlockFields checks the fields of EthBlock one by one.
|
|
func testEthBlockFields(ethBlock *EthHeader, t *testing.T) {
|
|
// Was the cid calculated?
|
|
if ethBlock.Cid().String() != "bagiacgzawt5236hkiuvrhfyy4jya3qitlt6icfcqgheew6vsptlraokppm4a" {
|
|
t.Fatalf("Wrong cid\r\nexpected %s\r\ngot %s", "bagiacgzawt5236hkiuvrhfyy4jya3qitlt6icfcqgheew6vsptlraokppm4a", ethBlock.Cid().String())
|
|
}
|
|
|
|
// Do we have the rawdata available?
|
|
if fmt.Sprintf("%x", ethBlock.RawData()[:10]) != "f90218a0d33c9dde9fff" {
|
|
t.Fatalf("Wrong Rawdata\r\nexpected %s\r\ngot %s", "f90218a0d33c9dde9fff", fmt.Sprintf("%x", ethBlock.RawData()[:10]))
|
|
}
|
|
|
|
// Proper Fields of types.Header
|
|
if fmt.Sprintf("%x", ethBlock.ParentHash) != "d33c9dde9fff0ebaa6e71e8b26d2bda15ccf111c7af1b633698ac847667f0fb4" {
|
|
t.Fatalf("Wrong ParentHash\r\nexpected %s\r\ngot %s", "d33c9dde9fff0ebaa6e71e8b26d2bda15ccf111c7af1b633698ac847667f0fb4", fmt.Sprintf("%x", ethBlock.ParentHash))
|
|
}
|
|
if fmt.Sprintf("%x", ethBlock.UncleHash) != "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" {
|
|
t.Fatalf("Wrong UncleHash field\r\nexpected %s\r\ngot %s", "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", fmt.Sprintf("%x", ethBlock.UncleHash))
|
|
}
|
|
if fmt.Sprintf("%x", ethBlock.Coinbase) != "52bc44d5378309ee2abf1539bf71de1b7d7be3b5" {
|
|
t.Fatalf("Wrong Coinbase\r\nexpected %s\r\ngot %s", "52bc44d5378309ee2abf1539bf71de1b7d7be3b5", fmt.Sprintf("%x", ethBlock.Coinbase))
|
|
}
|
|
if fmt.Sprintf("%x", ethBlock.Root) != "ed98aa4b5b19c82fb35364f08508ae0a6dec665fa57663dca94c5d70554cde10" {
|
|
t.Fatalf("Wrong Root\r\nexpected %s\r\ngot %s", "ed98aa4b5b19c82fb35364f08508ae0a6dec665fa57663dca94c5d70554cde10", fmt.Sprintf("%x", ethBlock.Root))
|
|
}
|
|
if fmt.Sprintf("%x", ethBlock.TxHash) != "447cbd8c48f498a6912b10831cdff59c7fbfcbbe735ca92883d4fa06dcd7ae54" {
|
|
t.Fatalf("Wrong TxHash\r\nexpected %s\r\ngot %s", "447cbd8c48f498a6912b10831cdff59c7fbfcbbe735ca92883d4fa06dcd7ae54", fmt.Sprintf("%x", ethBlock.TxHash))
|
|
}
|
|
if fmt.Sprintf("%x", ethBlock.ReceiptHash) != "7fa0f6ca2a01823208d80801edad37e3e3a003b55c89319b45eb1f97862ad229" {
|
|
t.Fatalf("Wrong ReceiptHash\r\nexpected %s\r\ngot %s", "7fa0f6ca2a01823208d80801edad37e3e3a003b55c89319b45eb1f97862ad229", fmt.Sprintf("%x", ethBlock.ReceiptHash))
|
|
}
|
|
if len(ethBlock.Bloom) != 256 {
|
|
t.Fatalf("Wrong Bloom Length\r\nexpected %d\r\ngot %d", 256, len(ethBlock.Bloom))
|
|
}
|
|
if fmt.Sprintf("%x", ethBlock.Bloom[71:76]) != "0000000000" { // You wouldn't want me to print out the whole bloom field?
|
|
t.Fatalf("Wrong Bloom\r\nexpected %s\r\ngot %s", "0000000000", fmt.Sprintf("%x", ethBlock.Bloom[71:76]))
|
|
}
|
|
if ethBlock.Difficulty.String() != "12555463106190" {
|
|
t.Fatalf("Wrong Difficulty\r\nexpected %s\r\ngot %s", "12555463106190", ethBlock.Difficulty.String())
|
|
}
|
|
if ethBlock.Number.String() != "999999" {
|
|
t.Fatalf("Wrong Block Number\r\nexpected %s\r\ngot %s", "999999", ethBlock.Number.String())
|
|
}
|
|
if ethBlock.GasLimit != uint64(3141592) {
|
|
t.Fatalf("Wrong Gas Limit\r\nexpected %d\r\ngot %d", 3141592, ethBlock.GasLimit)
|
|
}
|
|
if ethBlock.GasUsed != uint64(231000) {
|
|
t.Fatalf("Wrong Gas Used\r\nexpected %d\r\ngot %d", 231000, ethBlock.GasUsed)
|
|
}
|
|
if ethBlock.Time != uint64(1455404037) {
|
|
t.Fatalf("Wrong Time\r\nexpected %d\r\ngot %d", 1455404037, ethBlock.Time)
|
|
}
|
|
if fmt.Sprintf("%x", ethBlock.Extra) != "d783010303844765746887676f312e342e32856c696e7578" {
|
|
t.Fatalf("Wrong Extra\r\nexpected %s\r\ngot %s", "d783010303844765746887676f312e342e32856c696e7578", fmt.Sprintf("%x", ethBlock.Extra))
|
|
}
|
|
if fmt.Sprintf("%x", ethBlock.Nonce) != "f491f46b60fe04b3" {
|
|
t.Fatalf("Wrong Nonce\r\nexpected %s\r\ngot %s", "f491f46b60fe04b3", fmt.Sprintf("%x", ethBlock.Nonce))
|
|
}
|
|
if fmt.Sprintf("%x", ethBlock.MixDigest) != "5b10f4a08a6c209d426f6158bd24b574f4f7b7aa0099c67c14a1f693b4dd04d0" {
|
|
t.Fatalf("Wrong MixDigest\r\nexpected %s\r\ngot %s", "5b10f4a08a6c209d426f6158bd24b574f4f7b7aa0099c67c14a1f693b4dd04d0", fmt.Sprintf("%x", ethBlock.MixDigest))
|
|
}
|
|
}
|