2024-01-29 04:46:32 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2024-03-18 13:58:52 +00:00
|
|
|
# Get the key from laconic2d
|
|
|
|
laconic2d_key=$(yes | docker compose exec laconic2d laconic2d keys export alice --keyring-backend test --unarmored-hex --unsafe)
|
2024-01-29 04:46:32 +00:00
|
|
|
|
|
|
|
# Get the fixturenet account address
|
2024-03-18 13:58:52 +00:00
|
|
|
laconic2d_account_address=$(docker compose exec laconic2d laconic2d keys list --keyring-backend test | awk '/- address:/ {print $3}')
|
2024-01-29 04:46:32 +00:00
|
|
|
|
|
|
|
# Set parameters for the test suite
|
|
|
|
cosmos_chain_id=laconic_9000-1
|
2024-03-18 13:58:52 +00:00
|
|
|
laconic2d_rpc_endpoint=http://127.0.0.1:26657
|
|
|
|
laconic2d_gql_endpoint=http://127.0.0.1:9473/api
|
2024-01-29 04:46:32 +00:00
|
|
|
|
|
|
|
# Create the required config
|
|
|
|
config_file="config.yml"
|
|
|
|
config=$(cat <<EOL
|
|
|
|
services:
|
2024-03-19 04:42:42 +00:00
|
|
|
registry:
|
2024-03-18 13:58:52 +00:00
|
|
|
restEndpoint: $laconic2d_rpc_endpoint
|
|
|
|
gqlEndpoint: $laconic2d_gql_endpoint
|
|
|
|
userKey: $laconic2d_key
|
2024-01-29 04:46:32 +00:00
|
|
|
bondId:
|
|
|
|
chainId: $cosmos_chain_id
|
|
|
|
gas: 200000
|
2024-03-18 13:58:52 +00:00
|
|
|
fees: 200000photon
|
2024-01-29 04:46:32 +00:00
|
|
|
EOL
|
|
|
|
)
|
|
|
|
echo "$config" > "$config_file"
|
|
|
|
|
|
|
|
# Wait for the laconid endpoint to come up
|
2024-03-18 13:58:52 +00:00
|
|
|
docker compose exec laconic2d sh -c "curl --retry 10 --retry-delay 3 --retry-connrefused http://127.0.0.1:9473/api"
|
2024-01-29 04:46:32 +00:00
|
|
|
|
|
|
|
# Run tests
|
2024-03-18 13:58:52 +00:00
|
|
|
TEST_ACCOUNT=$laconic2d_account_address yarn test
|