2024-06-12 09:47:41 +00:00
|
|
|
services:
|
|
|
|
status-go:
|
2024-09-24 15:33:26 +00:00
|
|
|
user: ${INTEGRATION_TESTS_DOCKER_UID}
|
2024-06-12 09:47:41 +00:00
|
|
|
build:
|
|
|
|
context: ../
|
|
|
|
dockerfile: _assets/build/Dockerfile
|
|
|
|
args:
|
|
|
|
build_tags: gowaku_no_rln
|
|
|
|
build_target: statusd
|
2024-09-24 15:33:26 +00:00
|
|
|
build_flags: -cover
|
|
|
|
entrypoint: [
|
|
|
|
"statusd",
|
|
|
|
"-c", "/static/configs/config.json",
|
|
|
|
"--server", "0.0.0.0:8354",
|
|
|
|
"--seed-phrase", "test test test test test test test test test test test junk",
|
|
|
|
"--password", "Strong12345",
|
|
|
|
"--dir", "/tmp/status-go-data", # Keep in sync with `config.json/DataDir` value. Later this arg will not be needed.
|
|
|
|
]
|
2024-09-25 12:27:04 +00:00
|
|
|
ports:
|
|
|
|
- 3333:3333
|
|
|
|
# - 8354:8354 # use for local debbuging only
|
2024-08-13 12:46:48 +00:00
|
|
|
healthcheck:
|
|
|
|
test: ["CMD-SHELL", "curl -X POST --data '{\"jsonrpc\":\"2.0\",\"method\":\"net_version\",\"params\":[],\"id\":1}' -H 'Content-Type: application/json' http://0.0.0.0:3333 || exit 1"]
|
|
|
|
interval: 5s
|
|
|
|
timeout: 2s
|
|
|
|
retries: 120
|
2024-09-24 15:33:26 +00:00
|
|
|
environment:
|
|
|
|
GOCOVERDIR: "/coverage/binary"
|
|
|
|
volumes:
|
|
|
|
- ./coverage/binary:/coverage/binary
|
|
|
|
stop_signal: SIGINT
|
2024-08-13 12:46:48 +00:00
|
|
|
|
2024-09-24 15:33:26 +00:00
|
|
|
# TODO: Remove this duplication when implemented: https://github.com/status-im/status-go/issues/5803
|
2024-08-13 12:46:48 +00:00
|
|
|
status-go-no-funds:
|
2024-09-24 15:33:26 +00:00
|
|
|
user: ${INTEGRATION_TESTS_DOCKER_UID}
|
2024-08-13 12:46:48 +00:00
|
|
|
build:
|
|
|
|
context: ../
|
|
|
|
dockerfile: _assets/build/Dockerfile
|
|
|
|
args:
|
|
|
|
build_tags: gowaku_no_rln
|
|
|
|
build_target: statusd
|
2024-09-24 15:33:26 +00:00
|
|
|
build_flags: -cover
|
|
|
|
entrypoint: [
|
|
|
|
"statusd",
|
|
|
|
"-c", "/static/configs/config.json",
|
|
|
|
"--seed-phrase", "test test test test test test test test test test test takoe",
|
|
|
|
"--password", "Strong12345",
|
|
|
|
"--dir", "/tmp/status-go-data", # Keep in sync with `config.json/DataDir` value. Later this arg will not be needed.
|
|
|
|
]
|
2024-07-04 10:50:15 +00:00
|
|
|
healthcheck:
|
|
|
|
test: ["CMD-SHELL", "curl -X POST --data '{\"jsonrpc\":\"2.0\",\"method\":\"net_version\",\"params\":[],\"id\":1}' -H 'Content-Type: application/json' http://0.0.0.0:3333 || exit 1"]
|
|
|
|
interval: 5s
|
|
|
|
timeout: 2s
|
|
|
|
retries: 120
|
2024-09-24 15:33:26 +00:00
|
|
|
environment:
|
|
|
|
GOCOVERDIR: "/coverage/binary"
|
|
|
|
volumes:
|
|
|
|
- ./coverage/binary:/coverage/binary
|
|
|
|
stop_signal: SIGINT
|
2024-07-04 10:50:15 +00:00
|
|
|
|
|
|
|
tests-rpc:
|
2024-07-10 09:28:25 +00:00
|
|
|
user: ${INTEGRATION_TESTS_DOCKER_UID}
|
2024-07-04 10:50:15 +00:00
|
|
|
depends_on:
|
|
|
|
status-go:
|
|
|
|
condition: service_healthy
|
2024-09-16 08:23:57 +00:00
|
|
|
status-go-no-funds:
|
|
|
|
condition: service_healthy
|
2024-07-04 10:50:15 +00:00
|
|
|
deploy-communities-contracts:
|
|
|
|
condition: service_completed_successfully
|
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: Dockerfile.tests-rpc
|
2024-09-24 15:33:26 +00:00
|
|
|
entrypoint: [
|
|
|
|
"pytest",
|
|
|
|
"-m", "wallet",
|
|
|
|
"--rpc_url=http://status-go:3333",
|
|
|
|
"--rpc_url_2=http://status-go-no-funds:3333",
|
2024-09-25 12:27:04 +00:00
|
|
|
"--anvil_url=http://anvil:8545",
|
|
|
|
"--ws_url=ws://status-go:8354",
|
2024-09-24 15:33:26 +00:00
|
|
|
"--junitxml=/tests-rpc/reports/report.xml",
|
|
|
|
]
|
2024-07-04 10:50:15 +00:00
|
|
|
volumes:
|
|
|
|
- .:/tests-rpc
|