[Zombienet] add dummy upgrade test (#4660)

This commit is contained in:
Javier Viola
2022-01-20 06:02:50 -03:00
committed by GitHub
parent fe7c34bbff
commit 883b490cae
3 changed files with 84 additions and 1 deletions
+37 -1
View File
@@ -27,7 +27,7 @@ variables:
CI_IMAGE: "paritytech/ci-linux:production" CI_IMAGE: "paritytech/ci-linux:production"
DOCKER_OS: "debian:stretch" DOCKER_OS: "debian:stretch"
ARCH: "x86_64" ARCH: "x86_64"
ZOMBIENET_IMAGE: "docker.io/paritytech/zombienet:v1.1.4" ZOMBIENET_IMAGE: "docker.io/paritytech/zombienet:v1.2.3"
VAULT_SERVER_URL: "https://vault.parity-mgmt-vault.parity.io" VAULT_SERVER_URL: "https://vault.parity-mgmt-vault.parity.io"
VAULT_AUTH_PATH: "gitlab-parity-io-jwt" VAULT_AUTH_PATH: "gitlab-parity-io-jwt"
VAULT_AUTH_ROLE: "cicd_gitlab_parity_${CI_PROJECT_NAME}" VAULT_AUTH_ROLE: "cicd_gitlab_parity_${CI_PROJECT_NAME}"
@@ -651,6 +651,42 @@ zombienet-tests-parachains-smoke-test:
tags: tags:
- zombienet-polkadot-integration-test - zombienet-polkadot-integration-test
zombienet-test-parachains-upgrade-smoke-test:
stage: deploy
image: "${ZOMBIENET_IMAGE}"
<<: *kubernetes-env
rules:
- if: $CI_PIPELINE_SOURCE == "schedule"
- if: $CI_COMMIT_REF_NAME == "master"
- if: $CI_COMMIT_REF_NAME =~ /^[0-9]+$/ # PRs
- if: $CI_COMMIT_REF_NAME == "rococo-v1"
needs:
- job: publish-polkadot-image
- job: publish-malus-image
- job: publish-adder-collator-image
variables:
GH_DIR: 'https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/parachains'
before_script:
- echo "ZombieNet Tests Config"
- echo "docker.io/parity/polkadot:latest"
- echo "docker.io/parity/polkadot-collator:latest"
- echo "${ZOMBIENET_IMAGE}"
- echo "${GH_DIR}"
- export DEBUG=zombie,zombie::network-node
- export ZOMBIENET_INTEGRATION_TEST_IMAGE="docker.io/parity/polkadot:latest" # Use polkadot latest image
- export COL_IMAGE="docker.io/parity/polkadot-collator:latest" # Use cumulus lastest image
script:
- /home/nonroot/zombie-net/scripts/run-test-env-manager.sh
--github-remote-dir="${GH_DIR}"
--test="0002-parachains-upgrade-smoke-test.feature"
allow_failure: true
retry: 2
tags:
- zombienet-polkadot-integration-test
zombienet-tests-malus-dispute-valid: zombienet-tests-malus-dispute-valid:
stage: deploy stage: deploy
image: "${ZOMBIENET_IMAGE}" image: "${ZOMBIENET_IMAGE}"
@@ -0,0 +1,11 @@
Description: Smoke Test
Network: ./0002-parachains-upgrade-smoke-test.toml
Creds: config
alice: is up
bob: is up
alice: parachain 100 is registered within 225 seconds
alice: parachain 100 block height is at least 10 within 400 seconds
alice: parachain 100 perform dummy upgrade within 200 seconds
alice: parachain 100 block height is at least 14 within 200 seconds
@@ -0,0 +1,36 @@
[settings]
timeout = 1000
[relaychain]
default_image = "{{ZOMBIENET_INTEGRATION_TEST_IMAGE}}"
chain = "rococo-local"
command = "polkadot"
[[relaychain.nodes]]
name = "alice"
extra_args = [ "--alice" ]
[[relaychain.nodes.env]]
name = "RUST_LOG"
value = "runtime=debug,parachain=trace,cumulus-collator=trace,aura=trace"
[[relaychain.nodes]]
name = "bob"
extra_args = [ "--bob" ]
[[relaychain.nodes.env]]
name = "RUST_LOG"
value = "runtime=debug,parachain=trace,cumulus-collator=trace,aura=trace"
[[parachains]]
id = 100
addToGenesis = true
[parachains.collator]
name = "collator01"
image = "{{COL_IMAGE}}"
commandWithArgs = "polkadot-collator --collator --alice --force-authoring --tmp --parachain-id 100 --rpc-cors all --unsafe-rpc-external --rpc-methods unsafe --unsafe-ws-external -- --execution wasm --chain /cfg/rococo-local.json --bootnodes /dns/bootnode/tcp/30333/p2p/12D3KooWEyoppNCUx8Yx66oV9fJnriXwCcXwDDUA2kj6vnc6iDEp"
[[parachains.collator.env]]
name = "RUST_LOG"
value = "runtime=debug,parachain=trace,cumulus-collator=trace,aura=trace"