From 29a470378d658b2aaf00a5e91c392f26af8fba01 Mon Sep 17 00:00:00 2001 From: Roy Crihfield Date: Wed, 27 Sep 2023 22:54:06 +0800 Subject: [PATCH] update ci test --- .gitea/workflows/test.yml | 21 ++++++++++++++------- test/ci-config.toml | 8 +++----- 2 files changed, 17 insertions(+), 12 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 1ecb6fb..2453578 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -17,6 +17,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: Install test fixtures + uses: actions/checkout@v3 + with: + repository: cerc-io/eth-testing + path: ./fixtures + ref: v0.3.1 + token: ${{ secrets.CICD_REPO_TOKEN }} - uses: actions/setup-go@v3 with: go-version-file: go.mod @@ -25,7 +32,7 @@ jobs: env: TOKEN: ${{ secrets.CICD_REPO_TOKEN }} run: | - git config --global url."https://$TOKEN:@git.vdb.to/".insteadOf "https://git.vdb.to/" + git config --global url."https://$TOKEN:@git.vdb.to/".insteadOf 'https://git.vdb.to/' - name: Build package run: go build . - name: Run unit tests @@ -40,12 +47,12 @@ jobs: # Run a sanity test against the fixture data # Complete integration tests are TODO - - name: Run integration tests + - name: Run basic integration test env: SNAPSHOT_MODE: postgres - SNAPSHOT_BLOCK_HEIGHT: 32 - LEVELDB_PATH: ./fixture/chain2data - LEVELDB_ANCIENT: ./fixture/chain2data/ancient + SNAPSHOT_BLOCK_HEIGHT: 10 + LEVELDB_PATH: ./fixtures/chaindata/_data/small2 + LEVELDB_ANCIENT: ./fixtures/chaindata/_data/small2/ancient run: | until ready_query='select max(version_id) from goose_db_version;' @@ -63,5 +70,5 @@ jobs: } set -x [[ "$(count_results eth.header_cids)" = 1 ]] - [[ "$(count_results eth.state_cids)" = 5 ]] - [[ "$(count_results eth.storage_cids)" = 13 ]] + [[ "$(count_results eth.state_cids)" = 273 ]] + [[ "$(count_results eth.storage_cids)" = 31 ]] diff --git a/test/ci-config.toml b/test/ci-config.toml index 47127c3..d4cf968 100644 --- a/test/ci-config.toml +++ b/test/ci-config.toml @@ -9,13 +9,11 @@ level = "debug" [snapshot] - mode = "postgres" workers = 4 - blockHeight = 0 recoveryFile = "snapshot_recovery_file" - -[file] - outputDir = "test-output" + # Note: these are overriden in the workflow step + # mode = "postgres" + # blockHeight = 0 [ethereum] clientName = "test-client"