mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 16:21:02 +00:00
eadfbca388
* Allow functions to work over both parachains and relay chains * additional references * import * backup * refactoring para and relay traits * use runtime crates to build types * decouple ProcessMessage * decouple ProcessMessage 2 * dmp and xcmp handlers decouple * backup * refactor done * common int values working * added global ext with mutex * works for two mutex * single mutex and remove condvar * global test ext done * failing moving test_ext because relay block num * relay_block_number issue fixed * backup * Test working with assertions * assertions get Test as arg * DispatchArgs as generic * clean up * backup * teleports for asset-hub-kusama done * improve assert_expected_events macro * rename Test generics * check assertions for tuples * test assertions redone * reserve_transfer_assets done * send transact done * hrmp test for paras * hrmp channels test done * hrmp channels test done 2 * before modifying test dispatch * reserve tests done & Test dispatch fixed * reserve transfer local asset * force_create_and_mint_asset * force create and mint done * tests done * fix imports in common * common events refactored * add option to events attributes * asset-hub-polkadot tests done * asset-hub-westend half done * relay chain events move to common * remove failing send tests for asset-hub-westend * added events to bridge-hub-rococo * added events to collectives-polkadot * cargo clean up * fix asset-hub-westend tests * ".git/.scripts/commands/fmt/fmt.sh" * fix clippy * ".git/.scripts/commands/fmt/fmt.sh" * Removed unnecessary deps * Extracted some commonality for Kusama/Polkadot (which will be reused also for BridgeHubs) (#2971) * Extracted some commonality for Kusama/Polkadot (which will be reused also for BridgeHubs) * AssetHubRococo should better use AssetHubKusama runtime * add fund_account --------- Co-authored-by: NachoPal <ignacio.palacios.santos@gmail.com> * address comments * rename event assertion helpers * clean comments * address comments 2 * ".git/.scripts/commands/fmt/fmt.sh" --------- Co-authored-by: Giles Cope <gilescope@gmail.com> Co-authored-by: command-bot <> Co-authored-by: Branislav Kontur <bkontur@gmail.com>
74 lines
5.2 KiB
TOML
74 lines
5.2 KiB
TOML
[package]
|
|
name = "integration-tests-common"
|
|
version = "1.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
description = "Common resources for integration testing with xcm-emulator"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false }
|
|
lazy_static = "1.4.0"
|
|
paste = "1.0.14"
|
|
|
|
# Substrate
|
|
grandpa = { package = "sc-consensus-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-authority-discovery = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-weights = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus-babe = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-assets = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-staking = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-message-queue = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-im-online = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
beefy-primitives = { package = "sp-consensus-beefy", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
# Polkadot
|
|
polkadot-core-primitives = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-parachain = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-service = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "master", features = ["full-node"] }
|
|
polkadot-primitives = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-runtime = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-runtime-constants = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
kusama-runtime = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
kusama-runtime-constants = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
rococo-runtime = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
rococo-runtime-constants = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
westend-runtime = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
westend-runtime-constants = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
xcm = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
xcm-executor = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
pallet-xcm = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
|
|
# Cumulus
|
|
parachains-common = { path = "../../../common" }
|
|
parachain-info = { path = "../../../pallets/parachain-info" }
|
|
cumulus-primitives-core = { path = "../../../../primitives/core" }
|
|
penpal-runtime = { path = "../../../runtimes/testing/penpal" }
|
|
asset-hub-polkadot-runtime = { path = "../../../runtimes/assets/asset-hub-polkadot" }
|
|
asset-hub-kusama-runtime = { path = "../../../runtimes/assets/asset-hub-kusama" }
|
|
asset-hub-westend-runtime = { path = "../../../runtimes/assets/asset-hub-westend" }
|
|
collectives-polkadot-runtime = { path = "../../../runtimes/collectives/collectives-polkadot" }
|
|
bridge-hub-kusama-runtime = { path = "../../../runtimes/bridge-hubs/bridge-hub-kusama" }
|
|
bridge-hub-polkadot-runtime = { path = "../../../runtimes/bridge-hubs/bridge-hub-polkadot" }
|
|
bridge-hub-rococo-runtime = { path = "../../../runtimes/bridge-hubs/bridge-hub-rococo" }
|
|
xcm-emulator = { default-features = false, path = "../../../../xcm/xcm-emulator" }
|
|
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" }
|
|
bp-messages = { path = "../../../../bridges/primitives/messages"}
|
|
bp-runtime = { path = "../../../../bridges/primitives/runtime"}
|
|
pallet-bridge-messages = { path = "../../../../bridges/modules/messages" }
|
|
bridge-runtime-common = { path = "../../../../bridges/bin/runtime-common"}
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"kusama-runtime/runtime-benchmarks",
|
|
"polkadot-runtime/runtime-benchmarks",
|
|
"westend-runtime/runtime-benchmarks",
|
|
]
|