Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Replicate e2e integration test as emulated #2958

Merged
merged 64 commits into from
Aug 10, 2023
Merged
Show file tree
Hide file tree
Changes from 58 commits
Commits
Show all changes
64 commits
Select commit Hold shift + click to select a range
b0bb7ed
Allow functions to work over both parachains and relay chains
gilescope Jun 25, 2023
2aea880
additional references
gilescope Jun 25, 2023
6667656
import
gilescope Jun 25, 2023
70b7840
backup
NachoPal Jul 6, 2023
e79196a
add common trait Chain
NachoPal Jul 10, 2023
9279a52
refactoring para and relay traits
NachoPal Jul 10, 2023
dbff3d9
use runtime crates to build types
NachoPal Jul 11, 2023
b602c94
decouple ProcessMessage
NachoPal Jul 11, 2023
99b123a
decouple ProcessMessage 2
NachoPal Jul 11, 2023
05ca59b
dmp and xcmp handlers decouple
NachoPal Jul 11, 2023
e0776af
backup
NachoPal Jul 12, 2023
84da33f
refactor done
NachoPal Jul 12, 2023
68726e2
common int values working
NachoPal Jul 12, 2023
c02e298
added global ext with mutex
NachoPal Jul 13, 2023
2463414
works for two mutex
NachoPal Jul 14, 2023
13fa6fa
single mutex and remove condvar
NachoPal Jul 14, 2023
461f4f6
global test ext done
NachoPal Jul 15, 2023
ada9868
failing moving test_ext because relay block num
NachoPal Jul 15, 2023
f81fbce
relay_block_number issue fixed
NachoPal Jul 16, 2023
6d1f729
backup
NachoPal Jul 17, 2023
f1f7e95
Test working with assertions
NachoPal Jul 19, 2023
f703ae2
assertions get Test as arg
NachoPal Jul 19, 2023
ed56ae4
DispatchArgs as generic
NachoPal Jul 19, 2023
5696320
clean up
NachoPal Jul 20, 2023
a63cfeb
backup
NachoPal Jul 20, 2023
0dba54d
teleports for asset-hub-kusama done
NachoPal Jul 21, 2023
ac7579d
improve assert_expected_events macro
NachoPal Jul 21, 2023
4e2fa1d
rename Test generics
NachoPal Jul 22, 2023
58eea72
check assertions for tuples
NachoPal Jul 22, 2023
2801073
test assertions redone
NachoPal Jul 24, 2023
4e57c09
reserve_transfer_assets done
NachoPal Jul 25, 2023
fd40395
send transact done
NachoPal Jul 25, 2023
2898e8d
hrmp test for paras
NachoPal Jul 26, 2023
f473152
hrmp channels test done
NachoPal Jul 27, 2023
9cba7d7
hrmp channels test done 2
NachoPal Jul 27, 2023
0e6a1b2
before modifying test dispatch
NachoPal Jul 28, 2023
f9ea4f7
reserve tests done & Test dispatch fixed
NachoPal Jul 28, 2023
e606176
reserve transfer local asset
NachoPal Jul 30, 2023
3299b22
force_create_and_mint_asset
NachoPal Jul 30, 2023
20f2458
force create and mint done
NachoPal Jul 30, 2023
ae16097
tests done
NachoPal Jul 31, 2023
ff5117b
fix imports in common
NachoPal Jul 31, 2023
1e7a5d6
common events refactored
NachoPal Jul 31, 2023
aa3deff
add option to events attributes
NachoPal Jul 31, 2023
686ca90
asset-hub-polkadot tests done
NachoPal Jul 31, 2023
32abf0d
asset-hub-westend half done
NachoPal Jul 31, 2023
75e6d7a
relay chain events move to common
NachoPal Jul 31, 2023
0a863b6
remove failing send tests for asset-hub-westend
NachoPal Aug 1, 2023
3ae976a
added events to bridge-hub-rococo
NachoPal Aug 1, 2023
d84addd
added events to collectives-polkadot
NachoPal Aug 1, 2023
5a866db
cargo clean up
NachoPal Aug 1, 2023
072f9a3
merge master
NachoPal Aug 1, 2023
7fe97cd
fix asset-hub-westend tests
NachoPal Aug 1, 2023
f0671ee
".git/.scripts/commands/fmt/fmt.sh"
Aug 1, 2023
aaaf1cb
fix clippy
NachoPal Aug 1, 2023
e280d00
fix clippy 2
NachoPal Aug 1, 2023
667b0d1
".git/.scripts/commands/fmt/fmt.sh"
Aug 1, 2023
bf1f301
Removed unnecessary deps
bkontur Aug 3, 2023
a45c9f9
Extracted some commonality for Kusama/Polkadot (which will be reused …
bkontur Aug 4, 2023
9292c3a
address comments
NachoPal Aug 4, 2023
6d74ac3
rename event assertion helpers
NachoPal Aug 4, 2023
f80b5f5
clean comments
NachoPal Aug 4, 2023
643438e
address comments 2
NachoPal Aug 7, 2023
f9beb02
".git/.scripts/commands/fmt/fmt.sh"
Aug 7, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 16 additions & 18 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ pallet-xcm = { default-features = false, git = "https://github.com/paritytech/po

# Cumulus
parachains-common = { path = "../../../../common" }
penpal-runtime = { path = "../../../../runtimes/testing/penpal" }
asset-hub-kusama-runtime = { path = "../../../../runtimes/assets/asset-hub-kusama" }
cumulus-pallet-dmp-queue = { path = "../../../../../pallets/dmp-queue" }
cumulus-pallet-xcmp-queue = { default-features = false, path = "../../../../../pallets/xcmp-queue" }
cumulus-pallet-parachain-system = { path = "../../../../../pallets/parachain-system" }

# Local
xcm-emulator = { default-features = false, path = "../../../../../xcm/xcm-emulator" }
Expand Down
Loading