difftreelog
fix(test) remove token schedulers from tests
in: master
3 files changed
tests/src/maintenance.seqtest.tsdiffbeforeafterboth1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.2// This file is part of Unique Network.34// Unique Network is free software: you can redistribute it and/or modify5// it under the terms of the GNU General Public License as published by6// the Free Software Foundation, either version 3 of the License, or7// (at your option) any later version.89// Unique Network is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12// GNU General Public License for more details.1314// You should have received a copy of the GNU General Public License15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.1617import {IKeyringPair} from '@polkadot/types/types';18import {ApiPromise} from '@polkadot/api';19import {expect, itSched, itSub, Pallets, requirePalletsOrSkip, usingPlaygrounds} from './util';20import {itEth} from './eth/util';21import {main as correctState} from './migrations/correctStateAfterMaintenance';2223async function maintenanceEnabled(api: ApiPromise): Promise<boolean> {24 return (await api.query.maintenance.enabled()).toJSON() as boolean;25}2627describe('Integration Test: Maintenance Functionality', () => {28 let superuser: IKeyringPair;29 let donor: IKeyringPair;30 let bob: IKeyringPair;3132 before(async function() {33 await usingPlaygrounds(async (helper, privateKey) => {34 requirePalletsOrSkip(this, helper, [Pallets.Maintenance]);35 superuser = await privateKey('//Alice');36 donor = await privateKey({url: import.meta.url});37 [bob] = await helper.arrange.createAccounts([10000n], donor);3839 });40 });4142 describe('Maintenance Mode', () => {43 before(async function() {44 await usingPlaygrounds(async (helper) => {45 if(await maintenanceEnabled(helper.getApi())) {46 console.warn('\tMaintenance mode was left enabled BEFORE the test suite! Disabling it now.');47 await expect(helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', [])).to.be.fulfilled;48 }49 });50 });5152 itSub('Allows superuser to enable and disable maintenance mode - and disallows anyone else', async ({helper}) => {53 // Make sure non-sudo can't enable maintenance mode54 await expect(helper.executeExtrinsic(superuser, 'api.tx.maintenance.enable', []), 'on commoner enabling MM')55 .to.be.rejectedWith(/BadOrigin/);5657 // Set maintenance mode58 await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);59 expect(await maintenanceEnabled(helper.getApi()), 'MM is OFF when it should be ON').to.be.true;6061 // Make sure non-sudo can't disable maintenance mode62 await expect(helper.executeExtrinsic(bob, 'api.tx.maintenance.disable', []), 'on commoner disabling MM')63 .to.be.rejectedWith(/BadOrigin/);6465 // Disable maintenance mode66 await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);67 expect(await maintenanceEnabled(helper.getApi()), 'MM is ON when it should be OFF').to.be.false;68 });6970 itSub('MM blocks unique pallet calls', async ({helper}) => {71 // Can create an NFT collection before enabling the MM72 const nftCollection = await helper.nft.mintCollection(bob, {73 tokenPropertyPermissions: [{74 key: 'test', permission: {75 collectionAdmin: true,76 tokenOwner: true,77 mutable: true,78 },79 }],80 });8182 // Can mint an NFT before enabling the MM83 const nft = await nftCollection.mintToken(bob);8485 // Can create an FT collection before enabling the MM86 const ftCollection = await helper.ft.mintCollection(superuser);8788 // Can mint an FT before enabling the MM89 await expect(ftCollection.mint(superuser)).to.be.fulfilled;9091 await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);92 expect(await maintenanceEnabled(helper.getApi()), 'MM is OFF when it should be ON').to.be.true;9394 // Unable to create a collection when the MM is enabled95 await expect(helper.nft.mintCollection(superuser), 'cudo forbidden stuff')96 .to.be.rejectedWith(/Invalid Transaction: Transaction call is not expected/);9798 // Unable to set token properties when the MM is enabled99 await expect(nft.setProperties(100 bob,101 [{key: 'test', value: 'test-val'}],102 )).to.be.rejectedWith(/Invalid Transaction: Transaction call is not expected/);103104 // Unable to mint an NFT when the MM is enabled105 await expect(nftCollection.mintToken(superuser))106 .to.be.rejectedWith(/Invalid Transaction: Transaction call is not expected/);107108 // Unable to mint an FT when the MM is enabled109 await expect(ftCollection.mint(superuser))110 .to.be.rejectedWith(/Invalid Transaction: Transaction call is not expected/);111112 await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);113 expect(await maintenanceEnabled(helper.getApi()), 'MM is ON when it should be OFF').to.be.false;114115 // Can create a collection after disabling the MM116 await expect(helper.nft.mintCollection(bob), 'MM is disabled, the collection should be created').to.be.fulfilled;117118 // Can set token properties after disabling the MM119 await nft.setProperties(bob, [{key: 'test', value: 'test-val'}]);120121 // Can mint an NFT after disabling the MM122 await nftCollection.mintToken(bob);123124 // Can mint an FT after disabling the MM125 await ftCollection.mint(superuser);126 });127128 itSub.ifWithPallets('MM blocks unique pallet calls (Re-Fungible)', [Pallets.ReFungible], async ({helper}) => {129 // Can create an RFT collection before enabling the MM130 const rftCollection = await helper.rft.mintCollection(superuser);131132 // Can mint an RFT before enabling the MM133 await expect(rftCollection.mintToken(superuser)).to.be.fulfilled;134135 await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);136 expect(await maintenanceEnabled(helper.getApi()), 'MM is OFF when it should be ON').to.be.true;137138 // Unable to mint an RFT when the MM is enabled139 await expect(rftCollection.mintToken(superuser))140 .to.be.rejectedWith(/Invalid Transaction: Transaction call is not expected/);141142 await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);143 expect(await maintenanceEnabled(helper.getApi()), 'MM is ON when it should be OFF').to.be.false;144145 // Can mint an RFT after disabling the MM146 await rftCollection.mintToken(superuser);147 });148149 itSub('MM allows native token transfers and RPC calls', async ({helper}) => {150 // We can use RPC before the MM is enabled151 const totalCount = await helper.collection.getTotalCount();152153 // We can transfer funds before the MM is enabled154 await expect(helper.balance.transferToSubstrate(superuser, bob.address, 2n)).to.be.fulfilled;155156 await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);157 expect(await maintenanceEnabled(helper.getApi()), 'MM is OFF when it should be ON').to.be.true;158159 // RPCs work while in maintenance160 expect(await helper.collection.getTotalCount()).to.be.deep.equal(totalCount);161162 // We still able to transfer funds163 await expect(helper.balance.transferToSubstrate(bob, superuser.address, 1n)).to.be.fulfilled;164165 await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);166 expect(await maintenanceEnabled(helper.getApi()), 'MM is ON when it should be OFF').to.be.false;167168 // RPCs work after maintenance169 expect(await helper.collection.getTotalCount()).to.be.deep.equal(totalCount);170171 // Transfers work after maintenance172 await expect(helper.balance.transferToSubstrate(bob, superuser.address, 1n)).to.be.fulfilled;173 });174175 itSched.ifWithPallets('MM blocks scheduled calls and the scheduler itself', [Pallets.UniqueScheduler], async (scheduleKind, {helper}) => {176 const collection = await helper.nft.mintCollection(bob);177178 const nftBeforeMM = await collection.mintToken(bob);179 const nftDuringMM = await collection.mintToken(bob);180 const nftAfterMM = await collection.mintToken(bob);181182 const [183 scheduledIdBeforeMM,184 scheduledIdDuringMM,185 scheduledIdBunkerThroughMM,186 scheduledIdAttemptDuringMM,187 scheduledIdAfterMM,188 ] = scheduleKind == 'named'189 ? helper.arrange.makeScheduledIds(5)190 : new Array(5);191192 const blocksToWait = 6;193194 // Scheduling works before the maintenance195 await helper.scheduler.scheduleAfter(blocksToWait, {scheduledId: scheduledIdBeforeMM})196 .nft.transferToken(bob, collection.collectionId, nftBeforeMM.tokenId, {Substrate: superuser.address});197198199 await helper.wait.newBlocks(blocksToWait + 1);200 expect(await nftBeforeMM.getOwner()).to.be.deep.equal({Substrate: superuser.address});201202 // Schedule a transaction that should occur *during* the maintenance203 await helper.scheduler.scheduleAfter(blocksToWait, {scheduledId: scheduledIdDuringMM})204 .nft.transferToken(bob, collection.collectionId, nftDuringMM.tokenId, {Substrate: superuser.address});205206207 // Schedule a transaction that should occur *after* the maintenance208 await helper.scheduler.scheduleAfter(blocksToWait * 2, {scheduledId: scheduledIdBunkerThroughMM})209 .nft.transferToken(bob, collection.collectionId, nftDuringMM.tokenId, {Substrate: superuser.address});210211212 await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);213 expect(await maintenanceEnabled(helper.getApi()), 'MM is OFF when it should be ON').to.be.true;214215 await helper.wait.newBlocks(blocksToWait + 1);216 // The owner should NOT change since the scheduled transaction should be rejected217 expect(await nftDuringMM.getOwner()).to.be.deep.equal({Substrate: bob.address});218219 // Any attempts to schedule a tx during the MM should be rejected220 await expect(helper.scheduler.scheduleAfter(blocksToWait, {scheduledId: scheduledIdAttemptDuringMM})221 .nft.transferToken(bob, collection.collectionId, nftDuringMM.tokenId, {Substrate: superuser.address}))222 .to.be.rejectedWith(/Invalid Transaction: Transaction call is not expected/);223224 await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);225 expect(await maintenanceEnabled(helper.getApi()), 'MM is ON when it should be OFF').to.be.false;226227 // Scheduling works after the maintenance228 await helper.scheduler.scheduleAfter(blocksToWait, {scheduledId: scheduledIdAfterMM})229 .nft.transferToken(bob, collection.collectionId, nftAfterMM.tokenId, {Substrate: superuser.address});230231 await helper.wait.newBlocks(blocksToWait + 1);232233 expect(await nftAfterMM.getOwner()).to.be.deep.equal({Substrate: superuser.address});234 // The owner of the token scheduled for transaction *before* maintenance should now change *after* maintenance235 expect(await nftDuringMM.getOwner()).to.be.deep.equal({Substrate: superuser.address});236 });237238 itEth('Disallows Ethereum transactions to execute while in maintenance', async ({helper}) => {239 const owner = await helper.eth.createAccountWithBalance(donor);240 const receiver = helper.eth.createAccount();241242 const {collectionAddress} = await helper.eth.createERC721MetadataCompatibleNFTCollection(owner, 'A', 'B', 'C', '');243244 // Set maintenance mode245 await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);246 expect(await maintenanceEnabled(helper.getApi()), 'MM is OFF when it should be ON').to.be.true;247248 const contract = await helper.ethNativeContract.collection(collectionAddress, 'nft', owner);249 const tokenId = await contract.methods.nextTokenId().call();250 expect(tokenId).to.be.equal('1');251252 await expect(contract.methods.mintWithTokenURI(receiver, 'Test URI').send())253 .to.be.rejectedWith(/Returned error: unknown error/);254255 await expect(contract.methods.ownerOf(tokenId).call()).rejectedWith(/token not found/);256257 // Disable maintenance mode258 await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);259 expect(await maintenanceEnabled(helper.getApi()), 'MM is ON when it should be OFF').to.be.false;260 });261262 itSub('Allows to enable and disable MM repeatedly', async ({helper}) => {263 // Set maintenance mode264 await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);265 await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);266 expect(await maintenanceEnabled(helper.getApi()), 'MM is OFF when it should be ON').to.be.true;267268 // Disable maintenance mode269 await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);270 await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);271 expect(await maintenanceEnabled(helper.getApi()), 'MM is ON when it should be OFF').to.be.false;272 });273274 afterEach(async () => {275 await usingPlaygrounds(async helper => {276 if(helper.fetchMissingPalletNames([Pallets.Maintenance]).length != 0) return;277 if(await maintenanceEnabled(helper.getApi())) {278 console.warn('\tMaintenance mode was left enabled AFTER a test has finished! Be careful. Disabling it now.');279 await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);280 }281 expect(await maintenanceEnabled(helper.getApi()), 'Disastrous! Exited the test suite with maintenance mode on.').to.be.false;282 });283 });284 });285286 describe('Preimage Execution', () => {287 const preimageHashes: string[] = [];288289 before(async function() {290 await usingPlaygrounds(async (helper) => {291 requirePalletsOrSkip(this, helper, [Pallets.Preimage, Pallets.Maintenance]);292293 // create a preimage to be operated with in the tests294 const randomAccounts = await helper.arrange.createCrowd(10, 0n, superuser);295 const randomIdentities = randomAccounts.map((acc, i) => [296 acc.address, {297 deposit: 0n,298 judgements: [],299 info: {300 display: {301 raw: `Random Account #${i}`,302 },303 },304 },305 ]);306 const preimage = helper.constructApiCall('api.tx.identity.forceInsertIdentities', [randomIdentities]).method.toHex();307 preimageHashes.push(await helper.preimage.notePreimage(bob, preimage, true));308 });309 });310311 itSub('Successfully executes call in a preimage', async ({helper}) => {312 const result = await expect(helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.executePreimage', [313 preimageHashes[0], {refTime: 10000000000, proofSize: 10000},314 ])).to.be.fulfilled;315316 // preimage is executed, and an appropriate event is present317 const events = result.result.events.filter((x: any) => x.event.method === 'IdentitiesInserted' && x.event.section === 'identity');318 expect(events.length).to.be.equal(1);319320 // the preimage goes back to being unrequested321 expect(await helper.preimage.getPreimageInfo(preimageHashes[0])).to.have.property('unrequested');322 });323324 itSub('Does not allow execution of a preimage that would fail', async ({helper}) => {325 const [zeroAccount] = await helper.arrange.createAccounts([0n], superuser);326327 const preimage = helper.constructApiCall('api.tx.balances.forceTransfer', [328 {Id: zeroAccount.address}, {Id: superuser.address}, 1000n,329 ]).method.toHex();330 const preimageHash = await helper.preimage.notePreimage(bob, preimage, true);331 preimageHashes.push(preimageHash);332333 await expect(helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.executePreimage', [334 preimageHash, {refTime: 10000000000, proofSize: 10000},335 ])).to.be.rejectedWith(/^Token: FundsUnavailable$/);336 });337338 itSub('Does not allow preimage execution with non-root', async ({helper}) => {339 await expect(helper.executeExtrinsic(bob, 'api.tx.maintenance.executePreimage', [340 preimageHashes[0], {refTime: 10000000000, proofSize: 10000},341 ])).to.be.rejectedWith(/^Misc: BadOrigin$/);342 });343344 itSub('Does not allow execution of non-existent preimages', async ({helper}) => {345 await expect(helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.executePreimage', [346 '0x1010101010101010101010101010101010101010101010101010101010101010', {refTime: 10000000000, proofSize: 10000},347 ])).to.be.rejectedWith(/^Misc: Unavailable$/);348 });349350 itSub('Does not allow preimage execution with less than minimum weights', async ({helper}) => {351 await expect(helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.executePreimage', [352 preimageHashes[0], {refTime: 1000, proofSize: 100},353 ])).to.be.rejectedWith(/^Misc: Exhausted$/);354 });355356 after(async function() {357 await usingPlaygrounds(async (helper) => {358 if(helper.fetchMissingPalletNames([Pallets.Preimage, Pallets.Maintenance]).length != 0) return;359360 for(const hash of preimageHashes) {361 await helper.preimage.unnotePreimage(bob, hash);362 }363 });364 });365 });366367 describe('Integration Test: Maintenance mode & App Promo', () => {368 let superuser: IKeyringPair;369370 before(async function() {371 await usingPlaygrounds(async (helper, privateKey) => {372 requirePalletsOrSkip(this, helper, [Pallets.Maintenance]);373 superuser = await privateKey('//Alice');374 });375 });376377 describe('Test AppPromo script for check state after Maintenance mode', () => {378 before(async function () {379 await usingPlaygrounds(async (helper) => {380 if(await maintenanceEnabled(helper.getApi())) {381 console.warn('\tMaintenance mode was left enabled BEFORE the test suite! Disabling it now.');382 await expect(helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', [])).to.be.fulfilled;383 }384 });385 });386 itSub('Can find and fix inconsistent state', async ({helper}) => {387 const api = helper.getApi();388389 await helper.executeExtrinsic(superuser, 'api.tx.sudo.sudo', [api.tx.system.setStorage([390 // pendingUnstake(1 -> [superuser.address, 100UNQ])391 ['0x42b67acb8bd223c60d0c8f621ffefc0ae280fa2db99bd3827aac976de75af95f5153cb1f00942ff401000000',392 '0x04d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d000010632d5ec76b0500000000000000'],393 // pendingUnstake(2 -> [superuser.address, 100UNQ])394 ['0x42b67acb8bd223c60d0c8f621ffefc0ae280fa2db99bd3827aac976de75af95f9eb2dcce60f37a2702000000',395 '0x04d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d000010632d5ec76b0500000000000000'],396 // Balances.freezes(superuser.address -> freeze with app promo id and 200 UNQ )397 ['0xc2261276cc9d1f8598ea4b6a74b15c2fb1c0eb12e038e5c7f91e120ed4b7ebf1de1e86a9a8c739864cf3cc5ec2bea59fd43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d',398 '0x046170707374616b656170707374616b65000020c65abc8ed70a00000000000000'],399 ])]);400401 expect((await api.query.appPromotion.pendingUnstake(1)).toJSON()).to.be.deep.equal([[superuser.address, '0x00000000000000056bc75e2d63100000']]);402 expect((await api.query.appPromotion.pendingUnstake(2)).toJSON()).to.be.deep.equal([[superuser.address, '0x00000000000000056bc75e2d63100000']]);403 expect((await api.query.balances.freezes(superuser.address))404 .map(lock => ({id: lock.id.toUtf8(), amount: lock.amount.toBigInt()})))405 .to.be.deep.equal([{id: 'appstakeappstake', amount: 200000000000000000000n}]);406 await correctState();407408 expect((await api.query.appPromotion.pendingUnstake(1)).toJSON()).to.be.deep.equal([]);409 expect((await api.query.appPromotion.pendingUnstake(2)).toJSON()).to.be.deep.equal([]);410 expect((await api.query.balances.freezes(superuser.address)).toJSON()).to.be.deep.equal([]);411412 });413414 itSub('(!negative test!) Only works when Maintenance mode is disabled', async({helper}) => {415 await expect(helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', [])).to.be.fulfilled;416 await expect(correctState()).to.be.rejectedWith('The network is still in maintenance mode');417 await expect(helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', [])).to.be.fulfilled;418 });419 });420 });421422 after(async () => {423 await usingPlaygrounds(async(helper) => {424 await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);425 });426 });427});tests/src/scheduler.seqtest.tsdiffbeforeafterboth--- a/tests/src/scheduler.seqtest.ts
+++ b/tests/src/scheduler.seqtest.ts
@@ -47,9 +47,8 @@
const token = await collection.mintToken(alice);
const scheduledId = scheduleKind == 'named' ? helper.arrange.makeScheduledId() : undefined;
const blocksBeforeExecution = 4;
-
- await token.scheduleAfter(blocksBeforeExecution, {scheduledId})
- .transfer(alice, {Substrate: bob.address});
+ await helper.scheduler.scheduleAfter(blocksBeforeExecution, {scheduledId})
+ .nft.transferToken(alice, collection.collectionId, token.tokenId, {Substrate: bob.address});
const executionBlock = await helper.chain.getLatestBlockNumber() + blocksBeforeExecution + 1;
expect(await token.getOwner()).to.be.deep.equal({Substrate: alice.address});
@@ -103,8 +102,8 @@
expect(await token.getOwner()).to.be.deep.equal({Substrate: alice.address});
- await token.scheduleAfter(waitForBlocks, {scheduledId})
- .transfer(alice, {Substrate: bob.address});
+ await helper.scheduler.scheduleAfter(waitForBlocks, {scheduledId})
+ .nft.transferToken(alice, collection.collectionId, token.tokenId, {Substrate: bob.address});
const executionBlock = await helper.chain.getLatestBlockNumber() + waitForBlocks + 1;
await helper.scheduler.cancelScheduled(alice, scheduledId);
@@ -363,8 +362,8 @@
const scheduledId = helper.arrange.makeScheduledId();
const waitForBlocks = 4;
- await token.scheduleAfter(waitForBlocks, {scheduledId})
- .transfer(bob, {Substrate: alice.address});
+ await helper.scheduler.scheduleAfter(waitForBlocks, {scheduledId})
+ .nft.transferToken(bob, collection.collectionId, token.tokenId, {Substrate: alice.address});
const executionBlock = await helper.chain.getLatestBlockNumber() + waitForBlocks + 1;
await helper.getSudo().scheduler.cancelScheduled(superuser, scheduledId);
@@ -404,8 +403,8 @@
const scheduledId = helper.arrange.makeScheduledId();
const waitForBlocks = 6;
- await token.scheduleAfter(waitForBlocks, {scheduledId})
- .transfer(bob, {Substrate: alice.address});
+ await helper.scheduler.scheduleAfter(waitForBlocks, {scheduledId})
+ .nft.transferToken(bob, collection.collectionId, token.tokenId, {Substrate: alice.address});
const executionBlock = await helper.chain.getLatestBlockNumber() + waitForBlocks + 1;
const priority = 112;
@@ -583,8 +582,8 @@
const scheduledId = helper.arrange.makeScheduledId();
const waitForBlocks = 4;
- await token.scheduleAfter(waitForBlocks, {scheduledId})
- .transfer(alice, {Substrate: bob.address});
+ await helper.scheduler.scheduleAfter(waitForBlocks, {scheduledId})
+ .nft.transferToken(alice, collection.collectionId, token.tokenId, {Substrate: bob.address});
const executionBlock = await helper.chain.getLatestBlockNumber() + waitForBlocks + 1;
const scheduled = helper.scheduler.scheduleAfter(waitForBlocks, {scheduledId});
@@ -614,8 +613,8 @@
const scheduledId = helper.arrange.makeScheduledId();
const waitForBlocks = 4;
- await token.scheduleAfter(waitForBlocks, {scheduledId})
- .transfer(alice, {Substrate: bob.address});
+ await helper.scheduler.scheduleAfter(waitForBlocks, {scheduledId})
+ .nft.transferToken(alice, collection.collectionId, token.tokenId, {Substrate: bob.address});
const executionBlock = await helper.chain.getLatestBlockNumber() + waitForBlocks + 1;
await expect(helper.scheduler.cancelScheduled(bob, scheduledId))
@@ -655,8 +654,8 @@
const scheduledId = helper.arrange.makeScheduledId();
const waitForBlocks = 4;
- await token.scheduleAfter(waitForBlocks, {scheduledId})
- .transfer(bob, {Substrate: alice.address});
+ await helper.scheduler.scheduleAfter(waitForBlocks, {scheduledId})
+ .nft.transferToken(bob, collection.collectionId, token.tokenId, {Substrate: alice.address});
const priority = 112;
await expect(helper.scheduler.changePriority(alice, scheduledId, priority))
tests/src/util/playgrounds/unique.dev.tsdiffbeforeafterboth--- a/tests/src/util/playgrounds/unique.dev.ts
+++ b/tests/src/util/playgrounds/unique.dev.ts
@@ -609,7 +609,7 @@
this.wait = new WaitGroup(this);
}
- getSudo<T extends UniqueHelper>() {
+ getSudo<T extends AstarHelper>() {
// eslint-disable-next-line @typescript-eslint/naming-convention
const SudoHelperType = SudoHelper(this.helperBase);
return this.clone(SudoHelperType) as T;
@@ -636,7 +636,7 @@
super(logger, options);
this.wait = new WaitGroup(this);
}
- getSudo<T extends UniqueHelper>() {
+ getSudo<T extends AcalaHelper>() {
// eslint-disable-next-line @typescript-eslint/naming-convention
const SudoHelperType = SudoHelper(this.helperBase);
return this.clone(SudoHelperType) as T;