Run registry CLI tests as part of laconicd fixturenet tests #791

Merged
ashwin merged 10 commits from deep-stack/stack-orchestrator:pm-run-registry-cli-tests into main 2024-04-04 07:16:48 +00:00
3 changed files with 3 additions and 6 deletions
Showing only changes of commit f2f9d5749a - Show all commits

View File

@ -28,6 +28,7 @@ services:
image: cerc/laconic-registry-cli:local
volumes:
- ../config/fixturenet-laconicd/registry-cli-config-template.yml:/registry-cli-config-template.yml
- ${BASE_DIR}/laconic-registry-cli:/laconic-registry-cli
volumes:
laconicd-data:

View File

@ -52,10 +52,6 @@ RUN npm config set @cerc-io:registry ${CERC_NPM_REGISTRY_URL} \
# Globally install the cli package
RUN yarn global add @cerc-io/laconic-registry-cli
# Clone the repo for running CLI tests inside the container
RUN git clone https://git.vdb.to/cerc-io/laconic-registry-cli.git \
&& cd laconic-registry-cli && yarn
# Add scripts
RUN mkdir /scripts
RUN mkdir /scripts/demo-records

View File

@ -12,7 +12,7 @@ cat /etc/hosts
TEST_TARGET_SO=$( ls -t1 ./package/laconic-so* | head -1 )
echo "$(date +"%Y-%m-%d %T"): Starting stack"
TEST_AUCTION_ENABLED=true $TEST_TARGET_SO --stack fixturenet-laconicd deploy --cluster laconicd up
TEST_AUCTION_ENABLED=true BASE_DIR=~/cerc $TEST_TARGET_SO --stack fixturenet-laconicd deploy --cluster laconicd up
echo "$(date +"%Y-%m-%d %T"): Stack started"
# Verify that the fixturenet is up and running
@ -30,7 +30,7 @@ docker exec laconicd-laconicd-1 sh -c "curl --retry 10 --retry-delay 3 --retry-c
# Run the tests
echo "Running the tests"
docker exec -e TEST_ACCOUNT=$laconicd_account_address laconicd-cli-1 sh -c 'cd laconic-registry-cli && yarn test'
docker exec -e TEST_ACCOUNT=$laconicd_account_address laconicd-cli-1 sh -c 'cd laconic-registry-cli && yarn && yarn test'
# Clean up
$TEST_TARGET_SO --stack fixturenet-laconicd deploy --cluster laconicd down --delete-volumes