status-desktop/test/status-go/integration
Stefan 7e146d662d test(wallet) add dev integration tests for ERC1155 route estimator
Used for debugging ERC1155 route estimation issues

Updates: #14212
2024-04-03 16:23:32 +02:00
..
helpers test(wallet) add dev integration tests for ERC721 route estimator 2024-04-03 16:23:32 +02:00
wallet test(wallet) add dev integration tests for ERC1155 route estimator 2024-04-03 16:23:32 +02:00
.gitignore
README.md test(wallet) add dev integration tests for incremental activity updates 2024-02-01 21:21:13 +01:00
go.mod test(wallet) add dev integration tests for ERC721 route estimator 2024-04-03 16:23:32 +02:00
go.sum test(wallet) add dev integration tests for ERC721 route estimator 2024-04-03 16:23:32 +02:00
integration_tests_config-template.json

README.md

Development integration tests for status-go

These integration tests are an experiment. They rely on an existing developer environment (working user folder, blockchain access tokens) and internet connection.

If it proves its usefulness we might consider automating them and make it independent of internet services

How to run tests

Setup steps

  • Dump the node config passed to Login status-go call as .node_config.json and use its path later on in as nodeConfigFile in .integration_tests_config.json
    • Ensure the blockchain access tokens are configured when dumping the configuration file
  • Copy integration_tests_config-template.json to tests sub-folders and rename it as .integration_tests_config.json, then update it with your own values.
    • Update nodeConfigFile with the previously extracted node config path
    • The hashedPassword should be the "0x" + keccak256(clearPassword)
    • For dataDir it is expected an working status-go user folder (e.g. the usual status-desktop/Second/data used with make run command)

Run wallet tests

  • once

    (cd test/status-go/integration && go test -count=1 -v ./wallet/... --tags=gowaku_no_rln,gowaku_skip_migrations)
    
  • continuously on code changes

    (cd test/status-go/integration && nodemon --watch ../../../vendor/status-go/ --watch .  --ext "*.go,*.sql" --exec 'go test -count=1 -v ./wallet/... --tags=gowaku_no_rln,gowaku_skip_migrations 2>&1 | tee ~/proj/tmp/status-go-tests.log || exit 1')