a3d2e71ca6
* Update geth version: 1.10.18 * Upgrade to Go18 and fix broken interfaces * Update Go version in dockerfile * Update make file to download dependencies * Update go version for integration tests. * update file name * install packages. * Update gingko version and secret * Update unit test download package * Update vulcanize dependencies * Update commands for calling unit tests * Use latest version of statediff * Update go, geth, and tests * Update all the quotes * Update stack-orchestrator * Update docker-compose ref * Add ipld-eth-db locally * Deploy contracts * Update tests.yaml * Update config file properly * Fix steps for integration test after geth update Co-authored-by: nabarun <nabarun@deepstacksoft.com> |
||
---|---|---|
.. | ||
contract | ||
direct_proxy_integration_test.go | ||
helper.go | ||
integration_suite_test.go | ||
integration_test.go | ||
README.md | ||
watch_address_integration_test.go |
Test Insructions
Setup
-
Clone stack-orchestrator, ipld-eth-db go-ethereum repositories.
-
Checkout v4 release in ipld-eth-db repo.
# In ipld-eth-db repo. git checkout v4.1.1-alpha
-
Checkout v4 release in go-ethereum repo.
# In go-ethereum repo. git checkout v1.10.18-statediff-4.0.2-alpha
-
Checkout working commit in stack-orchestrator repo.
# In stack-orchestrator repo. git checkout 418957a1f745c921b21286c13bb033f922a91ae9
Run
-
Run unit tests:
# In ipld-eth-server root directory. ./scripts/run_unit_test.sh
-
Run integration tests:
-
In stack-orchestrator repo, create config file:
cd helper-scripts ./create-config.sh
A
config.sh
will be created in the root directory. -
Update/Edit the generated config file with:
#!/bin/bash # Path to ipld-eth-server repo. vulcanize_ipld_eth_db=~/ipld-eth-db/ # Path to go-ethereum repo. vulcanize_go_ethereum=~/go-ethereum/ # Path to ipld-eth-server repo. vulcanize_ipld_eth_server=~/ipld-eth-server/ # Path to test contract. vulcanize_test_contract=~/ipld-eth-server/test/contract db_write=true eth_forward_eth_calls=false eth_proxy_on_error=false eth_http_path="go-ethereum:8545" ipld_eth_server_db_dependency=access-node go_ethereum_db_dependency=access-node connecting_db_name=vulcanize_testing_v4
-
Run stack-orchestrator:
# In stack-orchestrator root directory. cd helper-scripts ./wrapper.sh \ -e docker \ -d ../docker/latest/docker-compose-timescale-db.yml \ -d ../docker/local/docker-compose-db-migration.yml \ -d ../docker/local/docker-compose-go-ethereum.yml \ -d ../docker/local/docker-compose-ipld-eth-server.yml \ -d ../docker/local/docker-compose-contract.yml \ -v remove \ -p ../config.sh
-
Run test:
# In ipld-eth-server root directory. ./scripts/run_integration_test.sh
-
Update stack-orchestrator
config.sh
file:#!/bin/bash # Path to go-ethereum repo. vulcanize_go_ethereum=~/go-ethereum/ # Path to ipld-eth-server repo. vulcanize_ipld_eth_server=~/ipld-eth-server/ # Path to test contract. vulcanize_test_contract=~/ipld-eth-server/test/contract db_write=false eth_forward_eth_calls=true eth_proxy_on_error=false eth_http_path="go-ethereum:8545" ipld_eth_server_db_dependency=access-node go_ethereum_db_dependency=access-node connecting_db_name=vulcanize_testing_v4
-
Stop the stack-orchestrator and start again using the same command
-
Run integration tests for direct proxy fall-through of eth_calls:
./scripts/run_integration_test_forward_eth_calls.sh
-