From 8e9f08b65204cfa4de51c4729988f816ac7aef1f Mon Sep 17 00:00:00 2001 From: Prathamesh Musale Date: Wed, 13 Mar 2024 06:19:15 +0000 Subject: [PATCH] Add CI workflows for SDK tests (#23) Part of https://www.notion.so/Port-laconicd-to-cosmos-sdk-v0-50-x-43b30ab4e33a49c5912ebb2871cb777c Reviewed-on: https://git.vdb.to/deep-stack/laconic2d/pulls/23 Co-authored-by: Prathamesh Musale Co-committed-by: Prathamesh Musale --- .gitea/workflows/test-sdk-auction.yml | 40 +++++++++++++++++++++++ .gitea/workflows/test-sdk-nameservice.yml | 40 +++++++++++++++++++++++ .gitea/workflows/test-sdk.yml | 38 +++++++++++++++++++++ gql/status.go | 4 +-- 4 files changed, 120 insertions(+), 2 deletions(-) create mode 100644 .gitea/workflows/test-sdk-auction.yml create mode 100644 .gitea/workflows/test-sdk-nameservice.yml create mode 100644 .gitea/workflows/test-sdk.yml diff --git a/.gitea/workflows/test-sdk-auction.yml b/.gitea/workflows/test-sdk-auction.yml new file mode 100644 index 00000000..cf29e5bb --- /dev/null +++ b/.gitea/workflows/test-sdk-auction.yml @@ -0,0 +1,40 @@ +name: SDK Tests +on: + pull_request: + push: + branches: + - main + - release/** + +jobs: + sdk_tests_auctions: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Checkout registry-sdk + uses: actions/checkout@v3 + with: + path: "./registry-sdk/" + repository: deep-stack/registry-sdk # Use cerc-io/registry-sdk + fetch-depth: 0 + ref: main + - name: Environment + run: ls -tlh && env + + - name: Build laconic2d container + working-directory: tests/sdk_tests + run: ./build-laconic2d-container.sh + + - name: Build sdk container + working-directory: registry-sdk + run: ./scripts/build-sdk-test-container.sh + + - name: Start containers (auctions enabled) + working-directory: tests/sdk_tests + env: + TEST_AUCTION_ENABLED: true + run: docker compose up -d + + - name: Run auction tests + working-directory: tests/sdk_tests + run: ./run-tests.sh test:auctions diff --git a/.gitea/workflows/test-sdk-nameservice.yml b/.gitea/workflows/test-sdk-nameservice.yml new file mode 100644 index 00000000..c54048c9 --- /dev/null +++ b/.gitea/workflows/test-sdk-nameservice.yml @@ -0,0 +1,40 @@ +name: SDK Tests +on: + pull_request: + push: + branches: + - main + - release/** + +jobs: + sdk_tests_nameservice_expiry: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Checkout registry-sdk + uses: actions/checkout@v3 + with: + path: "./registry-sdk/" + repository: deep-stack/registry-sdk # Use cerc-io/registry-sdk + fetch-depth: 0 + ref: main + - name: Environment + run: ls -tlh && env + + - name: Build laconic2d container + working-directory: tests/sdk_tests + run: ./build-laconic2d-container.sh + + - name: Build sdk container + working-directory: registry-sdk + run: ./scripts/build-sdk-test-container.sh + + - name: Start containers (expiry enabled) + working-directory: tests/sdk_tests + env: + TEST_REGISTRY_EXPIRY: true + run: docker compose up -d + + - name: Run nameservice expiry tests + working-directory: tests/sdk_tests + run: ./run-tests.sh test:nameservice-expiry diff --git a/.gitea/workflows/test-sdk.yml b/.gitea/workflows/test-sdk.yml new file mode 100644 index 00000000..fe37821d --- /dev/null +++ b/.gitea/workflows/test-sdk.yml @@ -0,0 +1,38 @@ +name: SDK Tests +on: + pull_request: + push: + branches: + - main + - release/** + +jobs: + sdk_tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Checkout registry-sdk + uses: actions/checkout@v3 + with: + path: "./registry-sdk/" + repository: deep-stack/registry-sdk # Use cerc-io/registry-sdk + fetch-depth: 0 + ref: main + - name: Environment + run: ls -tlh && env + + - name: Build laconic2d container + working-directory: tests/sdk_tests + run: ./build-laconic2d-container.sh + + - name: Build sdk container + working-directory: registry-sdk + run: ./scripts/build-sdk-test-container.sh + + - name: Start containers + working-directory: tests/sdk_tests + run: docker compose up -d + + - name: Run tests + working-directory: tests/sdk_tests + run: ./run-tests.sh diff --git a/gql/status.go b/gql/status.go index 4608f058..38a079ad 100644 --- a/gql/status.go +++ b/gql/status.go @@ -10,8 +10,8 @@ import ( "github.com/cosmos/cosmos-sdk/client" ) -// NodeDataPath is the path to the laconicd data folder. -var NodeDataPath = os.ExpandEnv("$HOME/.laconicd/data") +// NodeDataPath is the path to the laconic2d data folder. +var NodeDataPath = os.ExpandEnv("$HOME/.laconic2d/data") func getStatusInfo(client client.Context) (*NodeInfo, *SyncInfo, *ValidatorInfo, error) { nodeClient, err := client.GetNode()