-
Notifications
You must be signed in to change notification settings - Fork 346
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
231 additions
and
0 deletions.
There are no files selected for viewing
209 changes: 209 additions & 0 deletions
209
test/suites/dev/moonbase/test-xcm-v4/test-xcm-dry-run-api.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,209 @@ | ||
import { beforeAll, describeSuite, expect } from "@moonwall/cli"; | ||
import { alith, generateKeyringPair } from "@moonwall/util"; | ||
import { ApiPromise, WsProvider } from "@polkadot/api"; | ||
import { u8aToHex } from "@polkadot/util"; | ||
import { XcmFragment } from "../../../../helpers"; | ||
|
||
// TODO: remove once the api is present in @polkadot/api | ||
const runtimeApi = { | ||
runtime: { | ||
DryRunApi: [ | ||
{ | ||
methods: { | ||
dry_run_call: { | ||
description: "Dry run call", | ||
params: [ | ||
{ | ||
name: "origin", | ||
type: "OriginCaller", | ||
}, | ||
{ | ||
name: "call", | ||
type: "Call", | ||
}, | ||
], | ||
type: "Result<CallDryRunEffects<Event>, XcmDryRunError>", | ||
}, | ||
dry_run_xcm: { | ||
description: "Dry run XCM program", | ||
params: [ | ||
{ | ||
name: "origin_location", | ||
type: "XcmVersionedLocation", | ||
}, | ||
{ | ||
name: "xcm", | ||
type: "XcmVersionedXcm", | ||
}, | ||
], | ||
type: "Result<XcmDryRunEffects, XcmDryRunError>", | ||
}, | ||
}, | ||
version: 1, | ||
}, | ||
], | ||
}, | ||
types: { | ||
CallDryRunEffects: { | ||
ExecutionResult: "DispatchResultWithPostInfo", | ||
EmittedEvents: "Vec<Event>", | ||
LocalXcm: "Option<XcmVersionedXcm>", | ||
ForwardedXcms: "Vec<(XcmVersionedLocation, Vec<XcmVersionedXcm>)>", | ||
}, | ||
DispatchErrorWithPostInfoTPostDispatchInfo: { | ||
postInfo: "PostDispatchInfo", | ||
error: "DispatchError", | ||
}, | ||
DispatchResultWithPostInfo: { | ||
_enum: { | ||
Ok: "PostDispatchInfo", | ||
Err: "DispatchErrorWithPostInfoTPostDispatchInfo", | ||
}, | ||
}, | ||
PostDispatchInfo: { | ||
actualWeight: "Option<Weight>", | ||
paysFee: "Pays", | ||
}, | ||
XcmDryRunEffects: { | ||
ExecutionResult: "StagingXcmV4TraitsOutcome", | ||
EmittedEvents: "Vec<Event>", | ||
ForwardedXcms: "Vec<(XcmVersionedLocation, Vec<XcmVersionedXcm>)>", | ||
}, | ||
XcmDryRunError: { | ||
_enum: { | ||
Unimplemented: "Null", | ||
VersionedConversionFailed: "Null", | ||
}, | ||
}, | ||
}, | ||
}; | ||
|
||
describeSuite({ | ||
id: "D014135", | ||
title: "XCM - DryRunApi", | ||
foundationMethods: "dev", | ||
testCases: ({ context, it }) => { | ||
let polkadotJs: ApiPromise; | ||
|
||
beforeAll(async function () { | ||
polkadotJs = await ApiPromise.create({ | ||
provider: new WsProvider(`ws://localhost:${process.env.MOONWALL_RPC_PORT}/`), | ||
...runtimeApi, | ||
}); | ||
}); | ||
|
||
it({ | ||
id: "T01", | ||
title: "Should succeed calling DryRunApi::dryRunCall", | ||
test: async function () { | ||
const metadata = await context.polkadotJs().rpc.state.getMetadata(); | ||
const balancesPalletIndex = metadata.asLatest.pallets | ||
.find(({ name }) => name.toString() == "Balances")! | ||
.index.toNumber(); | ||
|
||
const randomReceiver = "0x1111111111111111111111111111111111111111111111111111111111111111"; | ||
|
||
// Beneficiary from destination's point of view | ||
const destBeneficiary = { | ||
V3: { | ||
parents: 0, | ||
interior: { | ||
X1: { | ||
AccountId32: { | ||
network: null, | ||
id: randomReceiver, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}; | ||
|
||
const assetsToSend = { | ||
V3: [ | ||
{ | ||
id: { | ||
Concrete: { | ||
parents: 0, | ||
interior: { | ||
X1: { PalletInstance: Number(balancesPalletIndex) }, | ||
}, | ||
}, | ||
}, | ||
fun: { | ||
Fungible: 1_000_000_000_000_000n, | ||
}, | ||
}, | ||
], | ||
}; | ||
const dest = { | ||
V3: { | ||
parents: 1, | ||
interior: { | ||
Here: null, | ||
}, | ||
}, | ||
}; | ||
const polkadotXcmTx = polkadotJs.tx.polkadotXcm.transferAssets( | ||
dest, | ||
destBeneficiary, | ||
assetsToSend, | ||
0, | ||
"Unlimited" | ||
); | ||
|
||
const dryRunCall = await polkadotJs.call.dryRunApi.dryRunCall( | ||
{ system: { signed: alith.address } }, | ||
polkadotXcmTx | ||
); | ||
|
||
expect(dryRunCall.isOk).to.be.true; | ||
expect(dryRunCall.asOk.ExecutionResult.isOk).be.true; | ||
}, | ||
}); | ||
|
||
it({ | ||
id: "T02", | ||
title: "Should succeed calling DryRunApi::dryRunXcm", | ||
test: async function () { | ||
const metadata = await context.polkadotJs().rpc.state.getMetadata(); | ||
const balancesPalletIndex = metadata.asLatest.pallets | ||
.find(({ name }) => name.toString() == "Balances")! | ||
.index.toNumber(); | ||
const randomKeyPair = generateKeyringPair(); | ||
|
||
// We will dry run a "ReserveAssetDeposited" coming from the relay | ||
const xcmMessage = new XcmFragment({ | ||
assets: [ | ||
{ | ||
multilocation: { | ||
parents: 0, | ||
interior: { | ||
X1: { PalletInstance: Number(balancesPalletIndex) }, | ||
}, | ||
}, | ||
fungible: 1_000_000_000_000_000n, | ||
}, | ||
], | ||
beneficiary: u8aToHex(randomKeyPair.addressRaw), | ||
}) | ||
.reserve_asset_deposited() | ||
.clear_origin() | ||
.buy_execution() | ||
.deposit_asset_v3() | ||
.as_v3(); | ||
|
||
const dryRunXcm = await polkadotJs.call.dryRunApi.dryRunXcm( | ||
{ | ||
V3: { | ||
Concrete: { parent: 1, interior: { Here: null } }, | ||
}, | ||
}, | ||
xcmMessage | ||
); | ||
|
||
expect(dryRunXcm.isOk).to.be.true; | ||
expect(dryRunXcm.asOk.ExecutionResult.isComplete).be.true; | ||
}, | ||
}); | ||
}, | ||
}); |
22 changes: 22 additions & 0 deletions
22
test/suites/dev/moonbase/test-xcm-v4/test-xcm-location-to-account-api.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { describeSuite, expect } from "@moonwall/cli"; | ||
import { RELAY_V3_SOURCE_LOCATION } from "../../../../helpers/assets"; | ||
|
||
describeSuite({ | ||
id: "D014136", | ||
title: "XCM - LocationToAccountApi", | ||
foundationMethods: "dev", | ||
testCases: ({ context, it }) => { | ||
it({ | ||
id: "T01", | ||
title: "Should succeed calling LocationToAccountApi::convertLocation", | ||
test: async function () { | ||
const convertLocation = await context | ||
.polkadotJs() | ||
.call.locationToAccountApi.convertLocation(RELAY_V3_SOURCE_LOCATION); | ||
|
||
expect(convertLocation.isOk).to.be.true; | ||
expect(convertLocation.asOk.toHuman()).to.eq("0x506172656E740000000000000000000000000000"); | ||
}, | ||
}); | ||
}, | ||
}); |