Compare commits
7 Commits
main
...
auction_te
Author | SHA1 | Date | |
---|---|---|---|
|
748cc65b9f | ||
|
cc2c94cd1c | ||
|
43545537e1 | ||
|
6fa47fa27c | ||
|
8d866149bc | ||
|
7ee03b47d1 | ||
|
4f5562d26f |
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@ -102,7 +102,7 @@ jobs:
|
|||||||
run: docker compose up -d
|
run: docker compose up -d
|
||||||
- name: run-tests.sh
|
- name: run-tests.sh
|
||||||
working-directory: tests/sdk_tests
|
working-directory: tests/sdk_tests
|
||||||
run: ./run-tests.sh
|
run: ./run-all-tests.sh
|
||||||
|
|
||||||
|
|
||||||
# integration_tests:
|
# integration_tests:
|
||||||
|
@ -47,7 +47,7 @@ WORKDIR /app
|
|||||||
RUN \
|
RUN \
|
||||||
git clone https://github.com/cerc-io/laconic-sdk.git \
|
git clone https://github.com/cerc-io/laconic-sdk.git \
|
||||||
&& cd laconic-sdk \
|
&& cd laconic-sdk \
|
||||||
&& git checkout jest_timeout \
|
&& git checkout auction_nameservice_tests \
|
||||||
&& yarn install
|
&& yarn install
|
||||||
|
|
||||||
WORKDIR /app/laconic-sdk
|
WORKDIR /app/laconic-sdk
|
||||||
|
@ -2,6 +2,9 @@ services:
|
|||||||
laconicd:
|
laconicd:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
image: cerc-io/laconicd:local-test
|
image: cerc-io/laconicd:local-test
|
||||||
|
environment:
|
||||||
|
- TEST_AUCTION_ENABLED=true
|
||||||
|
- TEST_REGISTRY_EXPIRY=true
|
||||||
command: ["sh", "/docker-entrypoint-scripts.d/create-fixturenet.sh"]
|
command: ["sh", "/docker-entrypoint-scripts.d/create-fixturenet.sh"]
|
||||||
volumes:
|
volumes:
|
||||||
- ../../init.sh:/docker-entrypoint-scripts.d/create-fixturenet.sh
|
- ../../init.sh:/docker-entrypoint-scripts.d/create-fixturenet.sh
|
||||||
|
18
tests/sdk_tests/run-all-tests.sh
Executable file
18
tests/sdk_tests/run-all-tests.sh
Executable file
@ -0,0 +1,18 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
if [ -n "$CERC_SCRIPT_DEBUG" ]; then
|
||||||
|
set -x
|
||||||
|
fi
|
||||||
|
# Get the key from laconicd
|
||||||
|
laconicd_key=$( docker compose exec laconicd echo y | docker compose exec laconicd laconicd keys export mykey --unarmored-hex --unsafe )
|
||||||
|
# Set parameters for the test suite
|
||||||
|
cosmos_chain_id=laconic_9000-1
|
||||||
|
laconicd_rest_endpoint=http://laconicd:1317
|
||||||
|
laconicd_gql_endpoint=http://laconicd:9473/api
|
||||||
|
# Run tests
|
||||||
|
docker network inspect sdk_tests_default
|
||||||
|
sleep 30s
|
||||||
|
|
||||||
|
docker compose exec sdk-test-runner sh -c "COSMOS_CHAIN_ID=${cosmos_chain_id} LACONICD_REST_ENDPOINT=${laconicd_rest_endpoint} LACONICD_GQL_ENDPOINT=${laconicd_gql_endpoint} PRIVATE_KEY=${laconicd_key} yarn test"
|
||||||
|
docker compose exec sdk-test-runner sh -c "COSMOS_CHAIN_ID=${cosmos_chain_id} LACONICD_REST_ENDPOINT=${laconicd_rest_endpoint} LACONICD_GQL_ENDPOINT=${laconicd_gql_endpoint} PRIVATE_KEY=${laconicd_key} yarn test:auctions"
|
||||||
|
docker compose exec sdk-test-runner sh -c "COSMOS_CHAIN_ID=${cosmos_chain_id} LACONICD_REST_ENDPOINT=${laconicd_rest_endpoint} LACONICD_GQL_ENDPOINT=${laconicd_gql_endpoint} PRIVATE_KEY=${laconicd_key} yarn test:nameservice-expiry"
|
||||||
|
docker logs sdk_tests-laconicd-1
|
Loading…
Reference in New Issue
Block a user