status-desktop/test/status-go/integration
Stefan 1d0643e926 tests(integration) add integration test to debug MTID transfer
Updates #14071
2024-04-05 20:18:15 +02:00
..
helpers tests(integration) add integration test to debug MTID transfer 2024-04-05 20:18:15 +02:00
wallet tests(integration) add integration test to debug MTID transfer 2024-04-05 20:18:15 +02:00
.gitignore chore(wallet): add integration dev tests for pending tx status update 2024-01-12 22:23:39 +01:00
README.md test(wallet) add dev integration tests for incremental activity updates 2024-02-01 21:21:13 +01:00
go.mod tests(integration) add integration test to debug MTID transfer 2024-04-05 20:18:15 +02:00
go.sum tests(integration) add integration test to debug MTID transfer 2024-04-05 20:18:15 +02:00
integration_tests_config-template.json chore(wallet): add integration dev tests for pending tx status update 2024-01-12 22:23:39 +01:00

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')