mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 16:51:02 +00:00
2e6067d768
extracted useful code from #2982 This PR: - adds test 2 for Rococo <> Westend bridge: checks that relayer doesn't submit any extra headers while there are no any messages; - adds test 3 for Rococo <> Westend bridge: checks that relayer doesn't submit any extra headers when there are messages; - fixes most of comments from #2439 (like: log names, ability to run specify test number when calling `run-tests.sh`). Right now of all our tests, only test 2 is working (until BHs will be upgraded to use async backing), so you can test it with `./bridges/zombienet/run-tests.sh --test 2` locally.
27 lines
1.5 KiB
Plaintext
27 lines
1.5 KiB
Plaintext
Description: While relayer is active, we only sync mandatory and required Rococo (and Rococo BH) headers to Westend BH.
|
|
Network: ../../../cumulus/zombienet/bridge-hubs/bridge_hub_westend_local_network.toml
|
|
Creds: config
|
|
|
|
# step 1: initialize Westend AH
|
|
asset-hub-westend-collator1: run ../scripts/invoke-script.sh with "init-asset-hub-westend-local" within 60 seconds
|
|
|
|
# step 2: initialize Westend bridge hub
|
|
bridge-hub-westend-collator1: run ../scripts/invoke-script.sh with "init-bridge-hub-westend-local" within 60 seconds
|
|
|
|
# step 3: ensure that initialization has completed
|
|
asset-hub-westend-collator1: js-script ../helpers/wait-hrmp-channel-opened.js with "1002" within 600 seconds
|
|
|
|
# step 4: send message from Westend to Rococo
|
|
asset-hub-westend-collator1: run ../scripts/invoke-script.sh with "reserve-transfer-assets-from-asset-hub-westend-local" within 60 seconds
|
|
|
|
# step 5: start relayer
|
|
# (we are starting it after sending the message to be sure that relayer won't relay messages before our js script
|
|
# will be started at step 6)
|
|
# (it is started by sibling 0003-required-headers-synced-while-active-westend-to-rococo.zndsl)
|
|
|
|
# step 6: ensure that relayer won't sync any extra headers while delivering messages and confirmations
|
|
bridge-hub-westend-collator1: js-script ../helpers/only-required-headers-synced-when-active.js with "500,rococo-at-westend" within 600 seconds
|
|
|
|
# wait until other network test has completed OR exit with an error too
|
|
asset-hub-westend-collator1: run ../scripts/sync-exit.sh within 600 seconds
|