git.delta.rocks / unique-network / refs/commits / 96cdb9b3ccba

difftreelog

fix code style

rkv2022-09-14parent: #9844c48.patch.diff
in: master

6 files changed

modifiedtests/src/adminTransferAndBurn.test.tsdiffbeforeafterboth
--- a/tests/src/adminTransferAndBurn.test.ts
+++ b/tests/src/adminTransferAndBurn.test.ts
@@ -15,20 +15,7 @@
 // along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
 
 import {IKeyringPair} from '@polkadot/types/types';
-import chai from 'chai';
-import chaiAsPromised from 'chai-as-promised';
-import {usingPlaygrounds} from './util/playgrounds';
-
-chai.use(chaiAsPromised);
-const expect = chai.expect;
-
-let donor: IKeyringPair;
-
-before(async () => {
-  await usingPlaygrounds(async (_, privateKey) => {
-    donor = privateKey('//Alice');
-  });
-});
+import {usingPlaygrounds, expect, itSub} from './util/playgrounds';
 
 describe('Integration Test: ownerCanTransfer allows admins to use only transferFrom/burnFrom:', () => {
   let alice: IKeyringPair;
@@ -36,44 +23,41 @@
   let charlie: IKeyringPair;
 
   before(async () => {
-    await usingPlaygrounds(async (helper) => {
+    await usingPlaygrounds(async (helper, privateKey) => {
+      const donor = privateKey('//Alice');
       [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);
     });
   });
 
-  it('admin transfers other user\'s token', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const {collectionId} = await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL'});
-      await helper.collection.setLimits(alice, collectionId, {ownerCanTransfer: true});
-      const limits = await helper.collection.getEffectiveLimits(collectionId);
-      expect(limits.ownerCanTransfer).to.be.true;
+  itSub('admin transfers other user\'s token', async ({helper}) => {
+    const {collectionId} = await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL'});
+    await helper.collection.setLimits(alice, collectionId, {ownerCanTransfer: true});
+    const limits = await helper.collection.getEffectiveLimits(collectionId);
+    expect(limits.ownerCanTransfer).to.be.true;
 
-      const {tokenId} = await helper.nft.mintToken(alice, {collectionId: collectionId, owner: bob.address});
-      const transferResult = async () => helper.nft.transferToken(alice, collectionId, tokenId, {Substrate: charlie.address});
-      await expect(transferResult()).to.be.rejected;
+    const {tokenId} = await helper.nft.mintToken(alice, {collectionId: collectionId, owner: bob.address});
+    const transferResult = async () => helper.nft.transferToken(alice, collectionId, tokenId, {Substrate: charlie.address});
+    await expect(transferResult()).to.be.rejected;
 
-      await helper.nft.transferTokenFrom(alice, collectionId, tokenId, {Substrate: bob.address}, {Substrate: charlie.address});
-      const newTokenOwner = await helper.nft.getTokenOwner(collectionId, tokenId);
-      expect(newTokenOwner.Substrate).to.be.equal(charlie.address);
-    });
+    await helper.nft.transferTokenFrom(alice, collectionId, tokenId, {Substrate: bob.address}, {Substrate: charlie.address});
+    const newTokenOwner = await helper.nft.getTokenOwner(collectionId, tokenId);
+    expect(newTokenOwner.Substrate).to.be.equal(charlie.address);
   });
 
-  it('admin burns other user\'s token', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const {collectionId} = await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL'});
+  itSub('admin burns other user\'s token', async ({helper}) => {
+    const {collectionId} = await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL'});
 
-      await helper.collection.setLimits(alice, collectionId, {ownerCanTransfer: true});
-      const limits = await helper.collection.getEffectiveLimits(collectionId);
-      expect(limits.ownerCanTransfer).to.be.true;
+    await helper.collection.setLimits(alice, collectionId, {ownerCanTransfer: true});
+    const limits = await helper.collection.getEffectiveLimits(collectionId);
+    expect(limits.ownerCanTransfer).to.be.true;
 
-      const {tokenId} = await helper.nft.mintToken(alice, {collectionId: collectionId, owner: bob.address});
-      const burnTxFailed = async () => helper.nft.burnToken(alice, collectionId, tokenId);
+    const {tokenId} = await helper.nft.mintToken(alice, {collectionId: collectionId, owner: bob.address});
+    const burnTxFailed = async () => helper.nft.burnToken(alice, collectionId, tokenId);
 
-      await expect(burnTxFailed()).to.be.rejected;
+    await expect(burnTxFailed()).to.be.rejected;
 
-      await helper.nft.burnToken(bob, collectionId, tokenId);
-      const token = await helper.nft.getToken(collectionId, tokenId);
-      expect(token).to.be.null;
-    });
+    await helper.nft.burnToken(bob, collectionId, tokenId);
+    const token = await helper.nft.getToken(collectionId, tokenId);
+    expect(token).to.be.null;
   });
 });
modifiedtests/src/change-collection-owner.test.tsdiffbeforeafterboth
--- a/tests/src/change-collection-owner.test.ts
+++ b/tests/src/change-collection-owner.test.ts
@@ -1,12 +1,12 @@
 // Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
 // This file is part of Unique Network.
 
-// Unique Network is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
+// Unique Network is free software: you can redistribute itSub and/or modify
+// itSub under the terms of the GNU General Public License as published by
 // the Free Software Foundation, either version 3 of the License, or
 // (at your option) any later version.
 
-// Unique Network is distributed in the hope that it will be useful,
+// Unique Network is distributed in the hope that itSub will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 // GNU General Public License for more details.
@@ -15,41 +15,27 @@
 // along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
 
 import {IKeyringPair} from '@polkadot/types/types';
-import chai from 'chai';
-import chaiAsPromised from 'chai-as-promised';
-import {usingPlaygrounds} from './util/playgrounds';
-
-chai.use(chaiAsPromised);
-const expect = chai.expect;
+import {usingPlaygrounds, expect, itSub} from './util/playgrounds';
 
-let donor: IKeyringPair;
-
-before(async () => {
-  await usingPlaygrounds(async (_, privateKey) => {
-    donor = privateKey('//Alice');
-  });
-});
-
 describe('Integration Test changeCollectionOwner(collection_id, new_owner):', () => {
   let alice: IKeyringPair;
   let bob: IKeyringPair;
 
   before(async () => {
-    await usingPlaygrounds(async (helper) => {
+    await usingPlaygrounds(async (helper, privateKey) => {
+      const donor = privateKey('//Alice');
       [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
     });
   });
 
-  it('Changing owner changes owner address', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      const beforeChanging = await helper.collection.getData(collection.collectionId);
-      expect(beforeChanging?.normalizedOwner).to.be.equal(alice.address);
+  itSub('Changing owner changes owner address', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    const beforeChanging = await helper.collection.getData(collection.collectionId);
+    expect(beforeChanging?.normalizedOwner).to.be.equal(alice.address);
 
-      await collection.changeOwner(alice, bob.address);
-      const afterChanging = await helper.collection.getData(collection.collectionId);
-      expect(afterChanging?.normalizedOwner).to.be.equal(bob.address);
-    });
+    await collection.changeOwner(alice, bob.address);
+    const afterChanging = await helper.collection.getData(collection.collectionId);
+    expect(afterChanging?.normalizedOwner).to.be.equal(bob.address);
   });
 });
 
@@ -59,64 +45,59 @@
   let charlie: IKeyringPair;
 
   before(async () => {
-    await usingPlaygrounds(async (helper) => {
+    await usingPlaygrounds(async (helper, privateKey) => {
+      const donor = privateKey('//Alice');
       [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
     });
   });
 
-  it('Changing the owner of the collection is not allowed for the former owner', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+  itSub('Changing the owner of the collection is not allowed for the former owner', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
 
-      await collection.changeOwner(alice, bob.address);
+    await collection.changeOwner(alice, bob.address);
 
-      const changeOwnerTx = async () => collection.changeOwner(alice, alice.address);
-      await expect(changeOwnerTx()).to.be.rejected;
+    const changeOwnerTx = async () => collection.changeOwner(alice, alice.address);
+    await expect(changeOwnerTx()).to.be.rejectedWith(/common\.NoPermission/);
 
-      const afterChanging = await helper.collection.getData(collection.collectionId);
-      expect(afterChanging?.normalizedOwner).to.be.equal(bob.address);
-    });
+    const afterChanging = await helper.collection.getData(collection.collectionId);
+    expect(afterChanging?.normalizedOwner).to.be.equal(bob.address);
   });
 
-  it('New collectionOwner has access to sponsorship management operations in the collection', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.changeOwner(alice, bob.address);
+  itSub('New collectionOwner has access to sponsorship management operations in the collection', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.changeOwner(alice, bob.address);
 
-      const afterChanging = await helper.collection.getData(collection.collectionId);
-      expect(afterChanging?.normalizedOwner).to.be.equal(bob.address);
+    const afterChanging = await helper.collection.getData(collection.collectionId);
+    expect(afterChanging?.normalizedOwner).to.be.equal(bob.address);
 
-      await collection.setSponsor(bob, charlie.address);
-      await collection.confirmSponsorship(charlie);
-      await collection.removeSponsor(bob);
-      const limits = {
-        accountTokenOwnershipLimit: 1,
-        tokenLimit: 1,
-        sponsorTransferTimeout: 1,
-        ownerCanDestroy: true,
-        ownerCanTransfer: true,
-      };
+    await collection.setSponsor(bob, charlie.address);
+    await collection.confirmSponsorship(charlie);
+    await collection.removeSponsor(bob);
+    const limits = {
+      accountTokenOwnershipLimit: 1,
+      tokenLimit: 1,
+      sponsorTransferTimeout: 1,
+      ownerCanDestroy: true,
+      ownerCanTransfer: true,
+    };
 
-      await collection.setLimits(bob, limits);
-      const gotLimits = await collection.getEffectiveLimits();
-      expect(gotLimits).to.be.deep.contains(limits);
+    await collection.setLimits(bob, limits);
+    const gotLimits = await collection.getEffectiveLimits();
+    expect(gotLimits).to.be.deep.contains(limits);
 
-      await collection.setPermissions(bob, {access: 'AllowList', mintMode: true});
+    await collection.setPermissions(bob, {access: 'AllowList', mintMode: true});
 
-      await collection.burn(bob);
-      const collectionData = await helper.collection.getData(collection.collectionId);
-      expect(collectionData).to.be.null;
-    });
+    await collection.burn(bob);
+    const collectionData = await helper.collection.getData(collection.collectionId);
+    expect(collectionData).to.be.null;
   });
 
-  it('New collectionOwner has access to changeCollectionOwner', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.changeOwner(alice, bob.address);
-      await collection.changeOwner(bob, charlie.address);
-      const collectionData = await collection.getData();
-      expect(collectionData?.normalizedOwner).to.be.equal(charlie.address);
-    });
+  itSub('New collectionOwner has access to changeCollectionOwner', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.changeOwner(alice, bob.address);
+    await collection.changeOwner(bob, charlie.address);
+    const collectionData = await collection.getData();
+    expect(collectionData?.normalizedOwner).to.be.equal(charlie.address);
   });
 });
 
@@ -126,70 +107,63 @@
   let charlie: IKeyringPair;
 
   before(async () => {
-    await usingPlaygrounds(async (helper) => {
+    await usingPlaygrounds(async (helper, privateKey) => {
+      const donor = privateKey('//Alice');
       [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
     });
   });
 
-  it('Not owner can\'t change owner.', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      const changeOwnerTx = async () => collection.changeOwner(bob, bob.address);
-      await expect(changeOwnerTx()).to.be.rejected;
-    });
+  itSub('Not owner can\'t change owner.', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    const changeOwnerTx = async () => collection.changeOwner(bob, bob.address);
+    await expect(changeOwnerTx()).to.be.rejectedWith(/common\.NoPermission/);
   });
 
-  it('Collection admin can\'t change owner.', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.addAdmin(alice, {Substrate: bob.address});
-      const changeOwnerTx = async () => collection.changeOwner(bob, bob.address);
-      await expect(changeOwnerTx()).to.be.rejected;
-    });
+  itSub('Collection admin can\'t change owner.', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.addAdmin(alice, {Substrate: bob.address});
+    const changeOwnerTx = async () => collection.changeOwner(bob, bob.address);
+    await expect(changeOwnerTx()).to.be.rejectedWith(/common\.NoPermission/);
   });
 
-  it('Can\'t change owner of a non-existing collection.', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collectionId = (1 << 32) - 1;
-      const changeOwnerTx = async () => helper.collection.changeOwner(bob, collectionId, bob.address);
-      await expect(changeOwnerTx()).to.be.rejected;
-    });
+  itSub('Can\'t change owner of a non-existing collection.', async ({helper}) => {
+    const collectionId = (1 << 32) - 1;
+    const changeOwnerTx = async () => helper.collection.changeOwner(bob, collectionId, bob.address);
+    await expect(changeOwnerTx()).to.be.rejectedWith(/common\.CollectionNotFound/);
   });
 
-  it('Former collectionOwner not allowed to sponsorship management operations in the collection', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.changeOwner(alice, bob.address);
+  itSub('Former collectionOwner not allowed to sponsorship management operations in the collection', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.changeOwner(alice, bob.address);
 
-      const changeOwnerTx = async () => collection.changeOwner(alice, alice.address);
-      await expect(changeOwnerTx()).to.be.rejected;
+    const changeOwnerTx = async () => collection.changeOwner(alice, alice.address);
+    await expect(changeOwnerTx()).to.be.rejectedWith(/common\.NoPermission/);
 
-      const afterChanging = await helper.collection.getData(collection.collectionId);
-      expect(afterChanging?.normalizedOwner).to.be.equal(bob.address);
+    const afterChanging = await helper.collection.getData(collection.collectionId);
+    expect(afterChanging?.normalizedOwner).to.be.equal(bob.address);
 
-      const setSponsorTx = async () => collection.setSponsor(alice, charlie.address);
-      const confirmSponsorshipTx = async () => collection.confirmSponsorship(alice);
-      const removeSponsorTx = async () => collection.removeSponsor(alice);
-      await expect(setSponsorTx()).to.be.rejected;
-      await expect(confirmSponsorshipTx()).to.be.rejected;
-      await expect(removeSponsorTx()).to.be.rejected;
+    const setSponsorTx = async () => collection.setSponsor(alice, charlie.address);
+    const confirmSponsorshipTx = async () => collection.confirmSponsorship(alice);
+    const removeSponsorTx = async () => collection.removeSponsor(alice);
+    await expect(setSponsorTx()).to.be.rejectedWith(/common\.NoPermission/);
+    await expect(confirmSponsorshipTx()).to.be.rejectedWith(/unique\.ConfirmUnsetSponsorFail/);
+    await expect(removeSponsorTx()).to.be.rejectedWith(/common\.NoPermission/);
 
-      const limits = {
-        accountTokenOwnershipLimit: 1,
-        tokenLimit: 1,
-        sponsorTransferTimeout: 1,
-        ownerCanDestroy: true,
-        ownerCanTransfer: true,
-      };
+    const limits = {
+      accountTokenOwnershipLimit: 1,
+      tokenLimit: 1,
+      sponsorTransferTimeout: 1,
+      ownerCanDestroy: true,
+      ownerCanTransfer: true,
+    };
 
-      const setLimitsTx = async () => collection.setLimits(alice, limits);
-      await expect(setLimitsTx()).to.be.rejected;
+    const setLimitsTx = async () => collection.setLimits(alice, limits);
+    await expect(setLimitsTx()).to.be.rejectedWith(/common\.NoPermission/);
 
-      const setPermissionTx = async () => collection.setPermissions(alice, {access: 'AllowList', mintMode: true});
-      await expect(setPermissionTx()).to.be.rejected;
+    const setPermissionTx = async () => collection.setPermissions(alice, {access: 'AllowList', mintMode: true});
+    await expect(setPermissionTx()).to.be.rejectedWith(/common\.NoPermission/);
 
-      const burnTx = async () => collection.burn(alice);
-      await expect(burnTx()).to.be.rejected;
-    });
+    const burnTx = async () => collection.burn(alice);
+    await expect(burnTx()).to.be.rejectedWith(/common\.NoPermission/);
   });
 });
modifiedtests/src/confirmSponsorship.test.tsdiffbeforeafterboth
--- a/tests/src/confirmSponsorship.test.ts
+++ b/tests/src/confirmSponsorship.test.ts
@@ -1,12 +1,12 @@
 // Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
 // This file is part of Unique Network.
 
-// Unique Network is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
+// Unique Network is free software: you can redistribute itSub and/or modify
+// itSub under the terms of the GNU General Public License as published by
 // the Free Software Foundation, either version 3 of the License, or
 // (at your option) any later version.
 
-// Unique Network is distributed in the hope that it will be useful,
+// Unique Network is distributed in the hope that itSub will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 // GNU General Public License for more details.
@@ -14,268 +14,218 @@
 // You should have received a copy of the GNU General Public License
 // along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
 
-import chai from 'chai';
-import chaiAsPromised from 'chai-as-promised';
 import {IKeyringPair} from '@polkadot/types/types';
-import {usingPlaygrounds} from './util/playgrounds';
-
-chai.use(chaiAsPromised);
-const expect = chai.expect;
-
-let donor: IKeyringPair;
-
-before(async () => {
-  await usingPlaygrounds(async (_, privateKey) => {
-    donor = privateKey('//Alice');
-  });
-});
-
-let alice: IKeyringPair;
-let bob: IKeyringPair;
-let charlie: IKeyringPair;
+import {usingPlaygrounds, expect, itSub, Pallets} from './util/playgrounds';
 
 describe('integration test: ext. confirmSponsorship():', () => {
+  let alice: IKeyringPair;
+  let bob: IKeyringPair;
+  let charlie: IKeyringPair;
+  let zeroBalance: IKeyringPair;
 
   before(async () => {
-    await usingPlaygrounds(async (helper) => {
-      [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
+    await usingPlaygrounds(async (helper, privateKey) => {
+      const donor = privateKey('//Alice');
+      [alice, bob, charlie, zeroBalance] = await helper.arrange.createAccounts([100n, 100n, 100n, 0n], donor);
     });
   });
 
-  it('Confirm collection sponsorship', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.setSponsor(alice, bob.address);
-      await collection.confirmSponsorship(bob);
-    });
+  itSub('Confirm collection sponsorship', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.setSponsor(alice, bob.address);
+    await collection.confirmSponsorship(bob);
   });
 
-  it('Add sponsor to a collection after the same sponsor was already added and confirmed', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.setSponsor(alice, bob.address);
-      await collection.confirmSponsorship(bob);
-      await collection.setSponsor(alice, bob.address);
-    });
+  itSub('Add sponsor to a collection after the same sponsor was already added and confirmed', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.setSponsor(alice, bob.address);
+    await collection.confirmSponsorship(bob);
+    await collection.setSponsor(alice, bob.address);
   });
-  it('Add new sponsor to a collection after another sponsor was already added and confirmed', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.setSponsor(alice, bob.address);
-      await collection.confirmSponsorship(bob);
-      await collection.setSponsor(alice, charlie.address);
-    });
+  itSub('Add new sponsor to a collection after another sponsor was already added and confirmed', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.setSponsor(alice, bob.address);
+    await collection.confirmSponsorship(bob);
+    await collection.setSponsor(alice, charlie.address);
   });
 
-  it('NFT: Transfer fees are paid by the sponsor after confirmation', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const [zeroBalance] = await helper.arrange.createAccounts([0n], donor);
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.setSponsor(alice, bob.address);
-      await collection.confirmSponsorship(bob);
-      const bobBalanceBefore = await helper.balance.getSubstrate(bob.address);
-      const token = await collection.mintToken(alice, {Substrate: zeroBalance.address});
-      await token.transfer(zeroBalance, {Substrate: alice.address});
-      const bobBalanceAfter = await helper.balance.getSubstrate(bob.address);
-      expect(bobBalanceAfter < bobBalanceBefore).to.be.true;
-    });
+  itSub('NFT: Transfer fees are paid by the sponsor after confirmation', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.setSponsor(alice, bob.address);
+    await collection.confirmSponsorship(bob);
+    const bobBalanceBefore = await helper.balance.getSubstrate(bob.address);
+    const token = await collection.mintToken(alice, {Substrate: zeroBalance.address});
+    await token.transfer(zeroBalance, {Substrate: alice.address});
+    const bobBalanceAfter = await helper.balance.getSubstrate(bob.address);
+    expect(bobBalanceAfter < bobBalanceBefore).to.be.true;
   });
 
-  it('Fungible: Transfer fees are paid by the sponsor after confirmation', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const [zeroBalance] = await helper.arrange.createAccounts([0n], donor);
-      const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);
-      await collection.setSponsor(alice, bob.address);
-      await collection.confirmSponsorship(bob);
-      const bobBalanceBefore = await helper.balance.getSubstrate(bob.address);
-      await collection.mint(alice, {Substrate: zeroBalance.address}, 100n);
-      await collection.transfer(zeroBalance, {Substrate: alice.address}, 1n);
-      const bobBalanceAfter = await helper.balance.getSubstrate(bob.address);
-      expect(bobBalanceAfter < bobBalanceBefore).to.be.true;
-    });
+  itSub('Fungible: Transfer fees are paid by the sponsor after confirmation', async ({helper}) => {
+    const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);
+    await collection.setSponsor(alice, bob.address);
+    await collection.confirmSponsorship(bob);
+    const bobBalanceBefore = await helper.balance.getSubstrate(bob.address);
+    await collection.mint(alice, 100n, {Substrate: zeroBalance.address});
+    await collection.transfer(zeroBalance, {Substrate: alice.address}, 1n);
+    const bobBalanceAfter = await helper.balance.getSubstrate(bob.address);
+    expect(bobBalanceAfter < bobBalanceBefore).to.be.true;
   });
 
-  it('ReFungible: Transfer fees are paid by the sponsor after confirmation', async function() {
-    await usingPlaygrounds(async (helper) => {
-      const [zeroBalance] = await helper.arrange.createAccounts([0n], donor);
-      const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.setSponsor(alice, bob.address);
-      await collection.confirmSponsorship(bob);
-      const bobBalanceBefore = await helper.balance.getSubstrate(bob.address);
-      const token = await collection.mintToken(alice, {Substrate: zeroBalance.address}, 100n);
-      await token.transfer(zeroBalance, {Substrate: alice.address}, 1n);
-      const bobBalanceAfter = await helper.balance.getSubstrate(bob.address);
-      expect(bobBalanceAfter < bobBalanceBefore).to.be.true;
-    });
+  itSub.ifWithPallets('ReFungible: Transfer fees are paid by the sponsor after confirmation', [Pallets.ReFungible], async ({helper}) => {
+    const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.setSponsor(alice, bob.address);
+    await collection.confirmSponsorship(bob);
+    const bobBalanceBefore = await helper.balance.getSubstrate(bob.address);
+    const token = await collection.mintToken(alice, 100n, {Substrate: zeroBalance.address});
+    await token.transfer(zeroBalance, {Substrate: alice.address}, 1n);
+    const bobBalanceAfter = await helper.balance.getSubstrate(bob.address);
+    expect(bobBalanceAfter < bobBalanceBefore).to.be.true;
   });
 
-  it('CreateItem fees are paid by the sponsor after confirmation', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const [zeroBalance] = await helper.arrange.createAccounts([0n], donor);
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.setSponsor(alice, bob.address);
-      await collection.confirmSponsorship(bob);
-      await collection.setPermissions(alice, {access: 'AllowList', mintMode: true});
-      await collection.addToAllowList(alice, {Substrate: zeroBalance.address});
+  itSub('CreateItem fees are paid by the sponsor after confirmation', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.setSponsor(alice, bob.address);
+    await collection.confirmSponsorship(bob);
+    await collection.setPermissions(alice, {access: 'AllowList', mintMode: true});
+    await collection.addToAllowList(alice, {Substrate: zeroBalance.address});
 
-      const bobBalanceBefore = await helper.balance.getSubstrate(bob.address);
-      await collection.mintToken(zeroBalance, {Substrate: zeroBalance.address});
-      const bobBalanceAfter = await helper.balance.getSubstrate(bob.address);
+    const bobBalanceBefore = await helper.balance.getSubstrate(bob.address);
+    await collection.mintToken(zeroBalance, {Substrate: zeroBalance.address});
+    const bobBalanceAfter = await helper.balance.getSubstrate(bob.address);
 
-      expect(bobBalanceAfter < bobBalanceBefore).to.be.true;
-    });
+    expect(bobBalanceAfter < bobBalanceBefore).to.be.true;
   });
 
-  it('NFT: Sponsoring of transfers is rate limited', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const [zeroBalance] = await helper.arrange.createAccounts([0n], donor);
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.setSponsor(alice, bob.address);
-      await collection.confirmSponsorship(bob);
+  itSub('NFT: Sponsoring of transfers is rate limited', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.setSponsor(alice, bob.address);
+    await collection.confirmSponsorship(bob);
 
-      const token = await collection.mintToken(alice, {Substrate: alice.address});
-      await token.transfer(alice, {Substrate: zeroBalance.address});
-      const bobBalanceBefore = await helper.balance.getSubstrate(bob.address);
+    const token = await collection.mintToken(alice, {Substrate: alice.address});
+    await token.transfer(alice, {Substrate: zeroBalance.address});
+    const bobBalanceBefore = await helper.balance.getSubstrate(bob.address);
 
-      const transferTx = async () => token.transfer(zeroBalance, {Substrate: alice.address});
-      await expect(transferTx()).to.be.rejectedWith('Inability to pay some fees');
-      const bobBalanceAfter = await helper.balance.getSubstrate(bob.address);
+    const transferTx = async () => token.transfer(zeroBalance, {Substrate: alice.address});
+    await expect(transferTx()).to.be.rejectedWith('Inability to pay some fees');
+    const bobBalanceAfter = await helper.balance.getSubstrate(bob.address);
 
-      expect(bobBalanceAfter === bobBalanceBefore).to.be.true;
-    });
+    expect(bobBalanceAfter === bobBalanceBefore).to.be.true;
   });
 
-  it('Fungible: Sponsoring is rate limited', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const [zeroBalance] = await helper.arrange.createAccounts([0n], donor);
-      const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.setSponsor(alice, bob.address);
-      await collection.confirmSponsorship(bob);
+  itSub('Fungible: Sponsoring is rate limited', async ({helper}) => {
+    const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.setSponsor(alice, bob.address);
+    await collection.confirmSponsorship(bob);
 
-      await collection.mint(alice, {Substrate: zeroBalance.address}, 100n);
-      await collection.transfer(zeroBalance, {Substrate: zeroBalance.address}, 1n);
-      const bobBalanceBefore = await helper.balance.getSubstrate(bob.address);
+    await collection.mint(alice, 100n, {Substrate: zeroBalance.address});
+    await collection.transfer(zeroBalance, {Substrate: zeroBalance.address}, 1n);
+    const bobBalanceBefore = await helper.balance.getSubstrate(bob.address);
 
-      const transferTx = async () => collection.transfer(zeroBalance, {Substrate: zeroBalance.address});
-      await expect(transferTx()).to.be.rejected;
-      const bobBalanceAfter = await helper.balance.getSubstrate(bob.address);
+    const transferTx = async () => collection.transfer(zeroBalance, {Substrate: zeroBalance.address});
+    await expect(transferTx()).to.be.rejected;
+    const bobBalanceAfter = await helper.balance.getSubstrate(bob.address);
 
-      expect(bobBalanceAfter === bobBalanceBefore).to.be.true;
-    });
+    expect(bobBalanceAfter === bobBalanceBefore).to.be.true;
   });
 
-  it('ReFungible: Sponsoring is rate limited', async function() {
-    await usingPlaygrounds(async (helper) => {
-      const [zeroBalance] = await helper.arrange.createAccounts([0n], donor);
-      const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.setSponsor(alice, bob.address);
-      await collection.confirmSponsorship(bob);
+  itSub.ifWithPallets('ReFungible: Sponsoring is rate limited', [Pallets.ReFungible], async ({helper}) => {
+    const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.setSponsor(alice, bob.address);
+    await collection.confirmSponsorship(bob);
 
-      const token = await collection.mintToken(alice, {Substrate: zeroBalance.address}, 100n);
-      await token.transfer(zeroBalance, {Substrate: alice.address});
+    const token = await collection.mintToken(alice, 100n, {Substrate: zeroBalance.address});
+    await token.transfer(zeroBalance, {Substrate: alice.address});
 
-      const bobBalanceBefore = await helper.balance.getSubstrate(bob.address);
-      const transferTx = async () => token.transfer(zeroBalance, {Substrate: alice.address});
-      await expect(transferTx()).to.be.rejectedWith('Inability to pay some fees');
-      const bobBalanceAfter = await helper.balance.getSubstrate(bob.address);
+    const bobBalanceBefore = await helper.balance.getSubstrate(bob.address);
+    const transferTx = async () => token.transfer(zeroBalance, {Substrate: alice.address});
+    await expect(transferTx()).to.be.rejectedWith('Inability to pay some fees');
+    const bobBalanceAfter = await helper.balance.getSubstrate(bob.address);
 
-      expect(bobBalanceAfter === bobBalanceBefore).to.be.true;
-    });
+    expect(bobBalanceAfter === bobBalanceBefore).to.be.true;
   });
 
-  it('NFT: Sponsoring of createItem is rate limited', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const [zeroBalance] = await helper.arrange.createAccounts([0n], donor);
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.setSponsor(alice, bob.address);
-      await collection.confirmSponsorship(bob);
-      await collection.setPermissions(alice, {mintMode: true, access: 'AllowList'});
-      await collection.addToAllowList(alice, {Substrate: zeroBalance.address});
+  itSub('NFT: Sponsoring of createItem is rate limited', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.setSponsor(alice, bob.address);
+    await collection.confirmSponsorship(bob);
+    await collection.setPermissions(alice, {mintMode: true, access: 'AllowList'});
+    await collection.addToAllowList(alice, {Substrate: zeroBalance.address});
 
-      await collection.mintToken(zeroBalance, {Substrate: zeroBalance.address});
+    await collection.mintToken(zeroBalance, {Substrate: zeroBalance.address});
 
-      const bobBalanceBefore = await helper.balance.getSubstrate(bob.address);
-      const mintTx = async () => collection.mintToken(zeroBalance, {Substrate: zeroBalance.address});
-      await expect(mintTx()).to.be.rejectedWith('Inability to pay some fees');
-      const bobBalanceAfter = await helper.balance.getSubstrate(bob.address);
+    const bobBalanceBefore = await helper.balance.getSubstrate(bob.address);
+    const mintTx = async () => collection.mintToken(zeroBalance, {Substrate: zeroBalance.address});
+    await expect(mintTx()).to.be.rejectedWith('Inability to pay some fees');
+    const bobBalanceAfter = await helper.balance.getSubstrate(bob.address);
 
-      expect(bobBalanceAfter === bobBalanceBefore).to.be.true;
-    });
+    expect(bobBalanceAfter === bobBalanceBefore).to.be.true;
   });
 });
 
 describe('(!negative test!) integration test: ext. confirmSponsorship():', () => {
+  let alice: IKeyringPair;
+  let bob: IKeyringPair;
+  let charlie: IKeyringPair;
+  let ownerZeroBalance: IKeyringPair;
+  let senderZeroBalance: IKeyringPair;
+
   before(async () => {
-    await usingPlaygrounds(async (helper) => {
-      [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
+    await usingPlaygrounds(async (helper, privateKey) => {
+      const donor = privateKey('//Alice');
+      [alice, bob, charlie, ownerZeroBalance, senderZeroBalance] = await helper.arrange.createAccounts([100n, 100n, 100n, 0n, 0n], donor);
     });
   });
 
-  it('(!negative test!) Confirm sponsorship for a collection that never existed', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collectionId = 1 << 32 - 1;
-      const confirmSponsorshipTx = async () => helper.collection.confirmSponsorship(bob, collectionId);
-      await expect(confirmSponsorshipTx()).to.be.rejected;
-    });
+  itSub('(!negative test!) Confirm sponsorship for a collection that never existed', async ({helper}) => {
+    const collectionId = 1_000_000;
+    const confirmSponsorshipTx = async () => helper.collection.confirmSponsorship(bob, collectionId);
+    await expect(confirmSponsorshipTx()).to.be.rejectedWith(/common\.CollectionNotFound/);
   });
 
-  it('(!negative test!) Confirm sponsorship using a non-sponsor address', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.setSponsor(alice, bob.address);
-      const confirmSponsorshipTx = async () => collection.confirmSponsorship(charlie);
-      await expect(confirmSponsorshipTx()).to.be.rejected;
-    });
+  itSub('(!negative test!) Confirm sponsorship using a non-sponsor address', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.setSponsor(alice, bob.address);
+    const confirmSponsorshipTx = async () => collection.confirmSponsorship(charlie);
+    await expect(confirmSponsorshipTx()).to.be.rejectedWith(/unique\.ConfirmUnsetSponsorFail/);
   });
 
-  it('(!negative test!) Confirm sponsorship using owner address', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.setSponsor(alice, bob.address);
-      const confirmSponsorshipTx = async () => collection.confirmSponsorship(alice);
-      await expect(confirmSponsorshipTx()).to.be.rejected;
-    });
+  itSub('(!negative test!) Confirm sponsorship using owner address', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.setSponsor(alice, bob.address);
+    const confirmSponsorshipTx = async () => collection.confirmSponsorship(alice);
+    await expect(confirmSponsorshipTx()).to.be.rejectedWith(/unique\.ConfirmUnsetSponsorFail/);
   });
 
-  it('(!negative test!) Confirm sponsorship by collection admin', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.setSponsor(alice, bob.address);
-      await collection.addAdmin(alice, {Substrate: charlie.address});
-      const confirmSponsorshipTx = async () => collection.confirmSponsorship(charlie);
-      await expect(confirmSponsorshipTx()).to.be.rejected;
-    });
+  itSub('(!negative test!) Confirm sponsorship by collection admin', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.setSponsor(alice, bob.address);
+    await collection.addAdmin(alice, {Substrate: charlie.address});
+    const confirmSponsorshipTx = async () => collection.confirmSponsorship(charlie);
+    await expect(confirmSponsorshipTx()).to.be.rejectedWith(/unique\.ConfirmUnsetSponsorFail/);
   });
 
-  it('(!negative test!) Confirm sponsorship without sponsor being set with setCollectionSponsor', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      const confirmSponsorshipTx = async () => collection.confirmSponsorship(charlie);
-      await expect(confirmSponsorshipTx()).to.be.rejected;
-    });
+  itSub('(!negative test!) Confirm sponsorship without sponsor being set with setCollectionSponsor', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    const confirmSponsorshipTx = async () => collection.confirmSponsorship(charlie);
+    await expect(confirmSponsorshipTx()).to.be.rejectedWith(/unique\.ConfirmUnsetSponsorFail/);
   });
 
-  it('(!negative test!) Confirm sponsorship in a collection that was destroyed', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.burn(alice);
-      const confirmSponsorshipTx = async () => collection.confirmSponsorship(charlie);
-      await expect(confirmSponsorshipTx()).to.be.rejected;
-    });
+  itSub('(!negative test!) Confirm sponsorship in a collection that was destroyed', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.burn(alice);
+    const confirmSponsorshipTx = async () => collection.confirmSponsorship(charlie);
+    await expect(confirmSponsorshipTx()).to.be.rejectedWith(/common\.CollectionNotFound/);
   });
 
-  it('(!negative test!) Transfer fees are not paid by the sponsor if the transfer failed', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.setSponsor(alice, bob.address);
-      await collection.confirmSponsorship(bob);
-      const [ownerZeroBalance, senderZeroBalance] = await helper.arrange.createAccounts([0n, 0n], donor);
-      const token = await collection.mintToken(alice, {Substrate: ownerZeroBalance.address});
-      const sponsorBalanceBefore = await helper.balance.getSubstrate(bob.address);
-      const transferTx = async () =>  token.transfer(senderZeroBalance, {Substrate: alice.address});
-      await expect(transferTx()).to.be.rejected;
-      const sponsorBalanceAfter = await helper.balance.getSubstrate(bob.address);
-      expect(sponsorBalanceAfter).to.equal(sponsorBalanceBefore);
-    });
+  itSub('(!negative test!) Transfer fees are not paid by the sponsor if the transfer failed', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.setSponsor(alice, bob.address);
+    await collection.confirmSponsorship(bob);
+    const token = await collection.mintToken(alice, {Substrate: ownerZeroBalance.address});
+    const sponsorBalanceBefore = await helper.balance.getSubstrate(bob.address);
+    const transferTx = async () =>  token.transfer(senderZeroBalance, {Substrate: alice.address});
+    await expect(transferTx()).to.be.rejectedWith('Inability to pay some fees');
+    const sponsorBalanceAfter = await helper.balance.getSubstrate(bob.address);
+    expect(sponsorBalanceAfter).to.equal(sponsorBalanceBefore);
   });
 });
modifiedtests/src/createCollection.test.tsdiffbeforeafterboth
--- a/tests/src/createCollection.test.ts
+++ b/tests/src/createCollection.test.ts
@@ -1,12 +1,12 @@
 // Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
 // This file is part of Unique Network.
 
-// Unique Network is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
+// Unique Network is free software: you can redistribute itSub and/or modify
+// itSub under the terms of the GNU General Public License as published by
 // the Free Software Foundation, either version 3 of the License, or
 // (at your option) any later version.
 
-// Unique Network is distributed in the hope that it will be useful,
+// Unique Network is distributed in the hope that itSub will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 // GNU General Public License for more details.
@@ -14,145 +14,125 @@
 // You should have received a copy of the GNU General Public License
 // along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
 
-import chai from 'chai';
-import chaiAsPromised from 'chai-as-promised';
-import {usingPlaygrounds} from './util/playgrounds';
+import {usingPlaygrounds, expect, itSub, Pallets} from './util/playgrounds';
 import {IKeyringPair} from '@polkadot/types/types';
 import {IProperty} from './util/playgrounds/types';
-
-chai.use(chaiAsPromised);
-const expect = chai.expect;
-
-let donor: IKeyringPair;
-
-before(async () => {
-  await usingPlaygrounds(async (_, privateKey) => {
-    donor = privateKey('//Alice');
-  });
-});
-
-let alice: IKeyringPair;
 
 describe('integration test: ext. createCollection():', () => {
+  let alice: IKeyringPair;
+
   before(async () => {
-    await usingPlaygrounds(async (helper) => {
+    await usingPlaygrounds(async (helper, privateKey) => {
+      const donor = privateKey('//Alice');
       [alice] = await helper.arrange.createAccounts([100n], donor);
     });
   });
-  it('Create new NFT collection', async () => {
-    await usingPlaygrounds(async (helper) => {
-      await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-    });
+  itSub('Create new NFT collection', async ({helper}) => {
+
+    await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
   });
-  it('Create new NFT collection whith collection_name of maximum length (64 bytes)', async () => {
-    await usingPlaygrounds(async (helper) => {
-      await helper.nft.mintCollection(alice, {name: 'A'.repeat(64), description: 'descr', tokenPrefix: 'COL'});
-    });
+  itSub('Create new NFT collection whith collection_name of maximum length (64 bytes)', async ({helper}) => {
+
+    await helper.nft.mintCollection(alice, {name: 'A'.repeat(64), description: 'descr', tokenPrefix: 'COL'});
   });
-  it('Create new NFT collection whith collection_description of maximum length (256 bytes)', async () => {
-    await usingPlaygrounds(async (helper) => {
-      await helper.nft.mintCollection(alice, {name: 'name', description: 'A'.repeat(256), tokenPrefix: 'COL'});
-    });
+  itSub('Create new NFT collection whith collection_description of maximum length (256 bytes)', async ({helper}) => {
+
+    await helper.nft.mintCollection(alice, {name: 'name', description: 'A'.repeat(256), tokenPrefix: 'COL'});
   });
-  it('Create new NFT collection whith token_prefix of maximum length (16 bytes)', async () => {
-    await usingPlaygrounds(async (helper) => {
-      await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'A'.repeat(16)});
-    });
+  itSub('Create new NFT collection whith token_prefix of maximum length (16 bytes)', async ({helper}) => {
+
+    await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'A'.repeat(16)});
   });
-  it('Create new Fungible collection', async () => {
-    await usingPlaygrounds(async (helper) => {
-      await helper.ft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL'}, 0);
-    });
+  itSub('Create new Fungible collection', async ({helper}) => {
+
+    await helper.ft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL'}, 0);
   });
-  it('Create new ReFungible collection', async function() {
-    await usingPlaygrounds(async (helper) => {
-      await helper.rft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL'});
-    });
+  itSub.ifWithPallets('Create new ReFungible collection', [Pallets.ReFungible], async ({helper}) => {
+
+    await helper.rft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL'});
   });
 
-  it('create new collection with properties', async () => {
-    await usingPlaygrounds(async (helper) => {
-      await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL',
-        properties: [{key: 'key1', value: 'val1'}],
-        tokenPropertyPermissions: [{key: 'key1', permission: {tokenOwner: true, mutable: false, collectionAdmin: true}}],
-      });
+  itSub('create new collection with properties', async ({helper}) => {
+
+    await helper.nft.mintCollection(alice, {
+      name: 'name', description: 'descr', tokenPrefix: 'COL',
+      properties: [{key: 'key1', value: 'val1'}],
+      tokenPropertyPermissions: [{key: 'key1', permission: {tokenOwner: true, mutable: false, collectionAdmin: true}}],
     });
   });
 
-  it('Create new collection with extra fields', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.ft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL'}, 8);
-      await collection.setPermissions(alice, {access: 'AllowList'});
-      await collection.setLimits(alice, {accountTokenOwnershipLimit: 3});
-      const data = await collection.getData();
-      const limits = await collection.getEffectiveLimits();
-      const raw = data?.raw;
+  itSub('Create new collection with extra fields', async ({helper}) => {
+
+    const collection = await helper.ft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL'}, 8);
+    await collection.setPermissions(alice, {access: 'AllowList'});
+    await collection.setLimits(alice, {accountTokenOwnershipLimit: 3});
+    const data = await collection.getData();
+    const limits = await collection.getEffectiveLimits();
+    const raw = data?.raw;
 
-      expect(data?.normalizedOwner).to.be.equal(alice.address);
-      expect(data?.name).to.be.equal('name');
-      expect(data?.description).to.be.equal('descr');
-      expect(raw.permissions.access).to.be.equal('AllowList');
-      expect(raw.mode).to.be.deep.equal({Fungible: '8'});
-      expect(limits.accountTokenOwnershipLimit).to.be.equal(3);
-    });
+    expect(data?.normalizedOwner).to.be.equal(alice.address);
+    expect(data?.name).to.be.equal('name');
+    expect(data?.description).to.be.equal('descr');
+    expect(raw.permissions.access).to.be.equal('AllowList');
+    expect(raw.mode).to.be.deep.equal({Fungible: '8'});
+    expect(limits.accountTokenOwnershipLimit).to.be.equal(3);
   });
 
-  it('New collection is not external', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL'});
-      const data = await collection.getData();
-      expect(data?.raw.readOnly).to.be.false;
-    });
+  itSub('New collection is not external', async ({helper}) => {
+
+    const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL'});
+    const data = await collection.getData();
+    expect(data?.raw.readOnly).to.be.false;
   });
 });
 
 describe('(!negative test!) integration test: ext. createCollection():', () => {
-  it('(!negative test!) create new NFT collection whith incorrect data (collection_name)', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const mintCollectionTx = async () => helper.nft.mintCollection(alice, {name: 'A'.repeat(65), description: 'descr', tokenPrefix: 'COL'});
-      await expect(mintCollectionTx()).to.be.rejected;
+  let alice: IKeyringPair;
+
+  before(async () => {
+    await usingPlaygrounds(async (helper, privateKey) => {
+      const donor = privateKey('//Alice');
+      [alice] = await helper.arrange.createAccounts([100n], donor);
     });
   });
-  it('(!negative test!) create new NFT collection whith incorrect data (collection_description)', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const mintCollectionTx = async () => helper.nft.mintCollection(alice, {name: 'name', description: 'A'.repeat(257), tokenPrefix: 'COL'});
-      await expect(mintCollectionTx()).to.be.rejected;
-    });
+
+  itSub('(!negative test!) create new NFT collection whith incorrect data (collection_name)', async ({helper}) => {
+    const mintCollectionTx = async () => helper.nft.mintCollection(alice, {name: 'A'.repeat(65), description: 'descr', tokenPrefix: 'COL'});
+    await expect(mintCollectionTx()).to.be.rejectedWith('Verification Error');
+  });
+  itSub('(!negative test!) create new NFT collection whith incorrect data (collection_description)', async ({helper}) => {
+    const mintCollectionTx = async () => helper.nft.mintCollection(alice, {name: 'name', description: 'A'.repeat(257), tokenPrefix: 'COL'});
+    await expect(mintCollectionTx()).to.be.rejectedWith('Verification Error');
   });
-  it('(!negative test!) create new NFT collection whith incorrect data (token_prefix)', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const mintCollectionTx = async () => helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'A'.repeat(17)});
-      await expect(mintCollectionTx()).to.be.rejected;
-    });
+  itSub('(!negative test!) create new NFT collection whith incorrect data (token_prefix)', async ({helper}) => {
+
+    const mintCollectionTx = async () => helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'A'.repeat(17)});
+    await expect(mintCollectionTx()).to.be.rejectedWith('Verification Error');
   });
-  it('(!negative test!) fails when bad limits are set', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const mintCollectionTx = async () => helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL', limits: {tokenLimit: 0}});
-      await expect(mintCollectionTx()).to.be.rejected;
-    });
+  itSub('(!negative test!) fails when bad limits are set', async ({helper}) => {
+
+    const mintCollectionTx = async () => helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL', limits: {tokenLimit: 0}});
+    await expect(mintCollectionTx()).to.be.rejectedWith(/common\.CollectionTokenLimitExceeded/);
   });
 
-  it('(!negative test!) create collection with incorrect property limit (64 elements)', async () => {
+  itSub('(!negative test!) create collection with incorrect property limit (64 elements)', async ({helper}) => {
     const props: IProperty[] = [];
 
     for (let i = 0; i < 65; i++) {
       props.push({key: `key${i}`, value: `value${i}`});
     }
-    await usingPlaygrounds(async (helper) => {
-      const mintCollectionTx = async () => helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL', properties: props});
-      await expect(mintCollectionTx()).to.be.rejected;
-    });
+    const mintCollectionTx = async () => helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL', properties: props});
+    await expect(mintCollectionTx()).to.be.rejectedWith('Verification Error');
   });
 
-  it('(!negative test!) create collection with incorrect property limit (40 kb)', async () => {
+  itSub('(!negative test!) create collection with incorrect property limit (40 kb)', async ({helper}) => {
     const props: IProperty[] = [];
 
     for (let i = 0; i < 32; i++) {
       props.push({key: `key${i}`.repeat(80), value: `value${i}`.repeat(80)});
     }
-    await usingPlaygrounds(async (helper) => {
-      const mintCollectionTx = async () => helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL', properties: props});
-      await expect(mintCollectionTx()).to.be.rejected;
-    });
+
+    const mintCollectionTx = async () => helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL', properties: props});
+    await expect(mintCollectionTx()).to.be.rejectedWith('Verification Error');
   });
 });
modifiedtests/src/createItem.test.tsdiffbeforeafterboth
--- a/tests/src/createItem.test.ts
+++ b/tests/src/createItem.test.ts
@@ -1,12 +1,12 @@
 // Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
 // This file is part of Unique Network.
 
-// Unique Network is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
+// Unique Network is free software: you can redistribute itSub and/or modify
+// itSub under the terms of the GNU General Public License as published by
 // the Free Software Foundation, either version 3 of the License, or
 // (at your option) any later version.
 
-// Unique Network is distributed in the hope that it will be useful,
+// Unique Network is distributed in the hope that itSub will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 // GNU General Public License for more details.
@@ -14,51 +14,38 @@
 // You should have received a copy of the GNU General Public License
 // along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
 
-import chai from 'chai';
-import chaiAsPromised from 'chai-as-promised';
 import {IKeyringPair} from '@polkadot/types/types';
+
 import {
   createCollection,
   itApi,
   normalizeAccountId,
   getCreateItemResult,
 } from './util/helpers';
-import {usingPlaygrounds} from './util/playgrounds';
+
+import {usingPlaygrounds, expect, itSub, Pallets} from './util/playgrounds';
 import {IProperty} from './util/playgrounds/types';
 import {executeTransaction} from './substrate/substrate-api';
-
-chai.use(chaiAsPromised);
-const expect = chai.expect;
 
-let donor: IKeyringPair;
 
-before(async () => {
-  await usingPlaygrounds(async (_, privateKey) => {
-    donor = privateKey('//Alice');
-  });
-});
-
-let alice: IKeyringPair;
-let bob: IKeyringPair;
+describe('integration test: ext. ():', () => {
+  let alice: IKeyringPair;
+  let bob: IKeyringPair;
 
-describe('integration test: ext. ():', () => {
   before(async () => {
-    await usingPlaygrounds(async (helper) => {
+    await usingPlaygrounds(async (helper, privateKey) => {
+      const donor = privateKey('//Alice');
       [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
     });
   });
 
-  it('Create new item in NFT collection', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.mintToken(alice, {Substrate: alice.address});
-    });
+  itSub('Create new item in NFT collection', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.mintToken(alice, {Substrate: alice.address});
   });
-  it('Create new item in Fungible collection', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);
-      await collection.mint(alice, {Substrate: alice.address}, 10n);
-    });
+  itSub('Create new item in Fungible collection', async ({helper}) => {
+    const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);
+    await collection.mint(alice, 10n, {Substrate: alice.address});
   });
   itApi.skip('Check events on create new item in Fungible collection', async ({api}) => {
     const createMode = 'Fungible';
@@ -84,229 +71,191 @@
       expect(result.collectionId).to.be.equal(newCollectionID);
       expect(result.recipient).to.be.deep.equal(to);
     }
-
   });
-  it('Create new item in ReFungible collection', async function() {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.mintToken(alice, {Substrate: alice.address}, 100n);
-    });
+  itSub.ifWithPallets('Create new item in ReFungible collection', [Pallets.ReFungible], async ({helper}) =>  {
+    const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.mintToken(alice, 100n, {Substrate: alice.address});
   });
-  it('Create new item in NFT collection with collection admin permissions', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.addAdmin(alice, {Substrate: bob.address});
-      await collection.mintToken(bob, {Substrate: alice.address});
-    });
+  itSub('Create new item in NFT collection with collection admin permissions', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.addAdmin(alice, {Substrate: bob.address});
+    await collection.mintToken(bob, {Substrate: alice.address});
   });
-  it('Create new item in Fungible collection with collection admin permissions', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);
-      await collection.addAdmin(alice, {Substrate: bob.address});
-      await collection.mint(bob, {Substrate: alice.address}, 10n);
-    });
+  itSub('Create new item in Fungible collection with collection admin permissions', async ({helper}) => {
+    const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);
+    await collection.addAdmin(alice, {Substrate: bob.address});
+    await collection.mint(bob, 10n, {Substrate: alice.address});
   });
-  it('Create new item in ReFungible collection with collection admin permissions', async function() {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      await collection.addAdmin(alice, {Substrate: bob.address});
-      await collection.mintToken(bob, {Substrate: alice.address}, 100n);
-    });
+  itSub.ifWithPallets('Create new item in ReFungible collection with collection admin permissions', [Pallets.ReFungible], async ({helper}) =>  {
+    const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    await collection.addAdmin(alice, {Substrate: bob.address});
+    await collection.mintToken(bob, 100n, {Substrate: alice.address});
   });
 
-  it('Set property Admin', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL',
-        properties: [{key: 'k', value: 'v'}],
-        tokenPropertyPermissions: [{key: 'k', permission: {tokenOwner: false, mutable: true, collectionAdmin: true}}],
-      });
-      await collection.mintToken(alice, {Substrate: bob.address}, [{key: 'k', value: 'v'}]);
+  itSub('Set property Admin', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL',
+      properties: [{key: 'k', value: 'v'}],
+      tokenPropertyPermissions: [{key: 'k', permission: {tokenOwner: false, mutable: true, collectionAdmin: true}}],
     });
+    await collection.mintToken(alice, {Substrate: bob.address}, [{key: 'k', value: 'v'}]);
   });
 
-  it('Set property AdminConst', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL',
-        properties: [{key: 'k', value: 'v'}],
-        tokenPropertyPermissions: [{key: 'k', permission: {tokenOwner: false, mutable: false, collectionAdmin: true}}],
-      });
-      await collection.mintToken(alice, {Substrate: bob.address}, [{key: 'k', value: 'v'}]);
+  itSub('Set property AdminConst', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL',
+      properties: [{key: 'k', value: 'v'}],
+      tokenPropertyPermissions: [{key: 'k', permission: {tokenOwner: false, mutable: false, collectionAdmin: true}}],
     });
+    await collection.mintToken(alice, {Substrate: bob.address}, [{key: 'k', value: 'v'}]);
   });
 
-  it('Set property itemOwnerOrAdmin', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL',
-        properties: [{key: 'k', value: 'v'}],
-        tokenPropertyPermissions: [{key: 'k', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}}],
-      });
-      await collection.mintToken(alice, {Substrate: bob.address}, [{key: 'k', value: 'v'}]);
+  itSub('Set property itemOwnerOrAdmin', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL',
+      properties: [{key: 'k', value: 'v'}],
+      tokenPropertyPermissions: [{key: 'k', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}}],
     });
+    await collection.mintToken(alice, {Substrate: bob.address}, [{key: 'k', value: 'v'}]);
   });
 
-  it('Check total pieces of Fungible token', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);
-      const amount = 10n;
-      await collection.mint(alice, {Substrate: bob.address}, amount);
-      {
-        const totalPieces = await collection.getTotalPieces();
-        expect(totalPieces).to.be.equal(amount);
-      }
-      await collection.transfer(bob, {Substrate: alice.address}, 1n);
-      {
-        const totalPieces = await collection.getTotalPieces();
-        expect(totalPieces).to.be.equal(amount);
-      }
-    });
+  itSub('Check total pieces of Fungible token', async ({helper}) => {
+    const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);
+    const amount = 10n;
+    await collection.mint(alice, amount, {Substrate: bob.address});
+    {
+      const totalPieces = await collection.getTotalPieces();
+      expect(totalPieces).to.be.equal(amount);
+    }
+    await collection.transfer(bob, {Substrate: alice.address}, 1n);
+    {
+      const totalPieces = await collection.getTotalPieces();
+      expect(totalPieces).to.be.equal(amount);
+    }
   });
 
-  it('Check total pieces of NFT token', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      const amount = 1n;
-      const token = await collection.mintToken(alice, {Substrate: bob.address});
-      {
-        const totalPieces = await helper.api?.rpc.unique.totalPieces(collection.collectionId, token.tokenId);
-        expect(totalPieces?.unwrap().toBigInt()).to.be.equal(amount);
-      }
-      await token.transfer(bob, {Substrate: alice.address});
-      {
-        const totalPieces = await helper.api?.rpc.unique.totalPieces(collection.collectionId, token.tokenId);
-        expect(totalPieces?.unwrap().toBigInt()).to.be.equal(amount);
-      }
-    });
+  itSub('Check total pieces of NFT token', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    const amount = 1n;
+    const token = await collection.mintToken(alice, {Substrate: bob.address});
+    {
+      const totalPieces = await helper.api?.rpc.unique.totalPieces(collection.collectionId, token.tokenId);
+      expect(totalPieces?.unwrap().toBigInt()).to.be.equal(amount);
+    }
+    await token.transfer(bob, {Substrate: alice.address});
+    {
+      const totalPieces = await helper.api?.rpc.unique.totalPieces(collection.collectionId, token.tokenId);
+      expect(totalPieces?.unwrap().toBigInt()).to.be.equal(amount);
+    }
   });
 
-  it('Check total pieces of ReFungible token', async function() {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      const amount = 100n;
-      const token = await collection.mintToken(alice, {Substrate: bob.address}, amount);
-      {
-        const totalPieces = await token.getTotalPieces();
-        expect(totalPieces).to.be.equal(amount);
-      }
-      await token.transfer(bob, {Substrate: alice.address}, 60n);
-      {
-        const totalPieces = await token.getTotalPieces();
-        expect(totalPieces).to.be.equal(amount);
-      }
-    });
+  itSub.ifWithPallets('Check total pieces of ReFungible token', [Pallets.ReFungible], async ({helper}) => {
+    const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    const amount = 100n;
+    const token = await collection.mintToken(alice, amount, {Substrate: bob.address});
+    {
+      const totalPieces = await token.getTotalPieces();
+      expect(totalPieces).to.be.equal(amount);
+    }
+    await token.transfer(bob, {Substrate: alice.address}, 60n);
+    {
+      const totalPieces = await token.getTotalPieces();
+      expect(totalPieces).to.be.equal(amount);
+    }
   });
 });
 
 describe('Negative integration test: ext. createItem():', () => {
+  let alice: IKeyringPair;
+  let bob: IKeyringPair;
+
   before(async () => {
-    await usingPlaygrounds(async (helper) => {
+    await usingPlaygrounds(async (helper, privateKey) => {
+      const donor = privateKey('//Alice');
       [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
     });
   });
 
-  it('Regular user cannot create new item in NFT collection', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      const mintTx = async () => collection.mintToken(bob, {Substrate: bob.address});
-      await expect(mintTx()).to.be.rejected;
-    });
+  itSub('Regular user cannot create new item in NFT collection', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    const mintTx = async () => collection.mintToken(bob, {Substrate: bob.address});
+    await expect(mintTx()).to.be.rejectedWith(/common\.PublicMintingNotAllowed/);
   });
-  it('Regular user cannot create new item in Fungible collection', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);
-      const mintTx = async () => collection.mint(bob, {Substrate: bob.address}, 10n);
-      await expect(mintTx()).to.be.rejected;
-    });
+  itSub('Regular user cannot create new item in Fungible collection', async ({helper}) => {
+    const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);
+    const mintTx = async () => collection.mint(bob, 10n, {Substrate: bob.address});
+    await expect(mintTx()).to.be.rejectedWith(/common\.PublicMintingNotAllowed/);
   });
-  it('Regular user cannot create new item in ReFungible collection', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      const mintTx = async () => collection.mintToken(bob, {Substrate: bob.address});
-      await expect(mintTx()).to.be.rejected;
-    });
+  itSub('Regular user cannot create new item in ReFungible collection', async ({helper}) => {
+    const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    const mintTx = async () => collection.mintToken(bob, 100n, {Substrate: bob.address});
+    await expect(mintTx()).to.be.rejectedWith(/common\.PublicMintingNotAllowed/);
   });
 
-  it('No editing rights', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL',
-        tokenPropertyPermissions: [{key: 'k', permission: {mutable: false, collectionAdmin: false, tokenOwner: false}}],
-      });
-      const mintTx = async () => collection.mintToken(alice, {Substrate: bob.address}, [{key: 'k', value: 'v'}]);
-      await expect(mintTx()).to.be.rejected;
+  itSub('No editing rights', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL',
+      tokenPropertyPermissions: [{key: 'k', permission: {mutable: false, collectionAdmin: false, tokenOwner: false}}],
     });
+    const mintTx = async () => collection.mintToken(alice, {Substrate: bob.address}, [{key: 'k', value: 'v'}]);
+    await expect(mintTx()).to.be.rejectedWith(/common\.NoPermission/);
   });
 
-  it('User doesnt have editing rights', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL',
-        tokenPropertyPermissions: [{key: 'k', permission: {mutable: true, collectionAdmin: false, tokenOwner: false}}],
-      });
-      const mintTx = async () => collection.mintToken(alice, {Substrate: bob.address}, [{key: 'k', value: 'v'}]);
-      await expect(mintTx()).to.be.rejected;
+  itSub('User doesnt have editing rights', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL',
+      tokenPropertyPermissions: [{key: 'k', permission: {mutable: true, collectionAdmin: false, tokenOwner: false}}],
     });
+    const mintTx = async () => collection.mintToken(alice, {Substrate: bob.address}, [{key: 'k', value: 'v'}]);
+    await expect(mintTx()).to.be.rejectedWith(/common\.NoPermission/);
   });
 
-  it('Adding property without access rights', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      const mintTx = async () => collection.mintToken(alice, {Substrate: bob.address}, [{key: 'k', value: 'v'}]);
-      await expect(mintTx()).to.be.rejected;
-    });
+  itSub('Adding property without access rights', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    const mintTx = async () => collection.mintToken(alice, {Substrate: bob.address}, [{key: 'k', value: 'v'}]);
+    await expect(mintTx()).to.be.rejectedWith(/common\.NoPermission/);
   });
 
-  it('Adding more than 64 prps', async () => {
+  itSub('Adding more than 64 prps', async ({helper}) => {
     const props: IProperty[] = [];
 
     for (let i = 0; i < 65; i++) {
       props.push({key: `key${i}`, value: `value${i}`});
     }
 
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      const mintTx = async () => collection.mintToken(alice, {Substrate: bob.address}, props);
-      await expect(mintTx()).to.be.rejected;
-    });
+
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    const mintTx = async () => collection.mintToken(alice, {Substrate: bob.address}, props);
+    await expect(mintTx()).to.be.rejectedWith('Verification Error');
   });
 
-  it('Trying to add bigger property than allowed', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL',
-        tokenPropertyPermissions: [
-          {key: 'k1', permission: {mutable: true, collectionAdmin: true, tokenOwner: true}},
-          {key: 'k2', permission: {mutable: true, collectionAdmin: true, tokenOwner: true}},
-        ],
-      });
-      const mintTx = async () => collection.mintToken(alice, {Substrate: bob.address}, [
-        {key: 'k1', value: 'vvvvvv'.repeat(5000)},
-        {key: 'k2', value: 'vvv'.repeat(5000)},
-      ]);
-      await expect(mintTx()).to.be.rejected;
+  itSub('Trying to add bigger property than allowed', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL',
+      tokenPropertyPermissions: [
+        {key: 'k1', permission: {mutable: true, collectionAdmin: true, tokenOwner: true}},
+        {key: 'k2', permission: {mutable: true, collectionAdmin: true, tokenOwner: true}},
+      ],
     });
+    const mintTx = async () => collection.mintToken(alice, {Substrate: bob.address}, [
+      {key: 'k1', value: 'vvvvvv'.repeat(5000)},
+      {key: 'k2', value: 'vvv'.repeat(5000)},
+    ]);
+    await expect(mintTx()).to.be.rejectedWith(/common\.NoSpaceForProperty/);
   });
 
-  it('Check total pieces for invalid Fungible token', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);
-      const invalidTokenId = 1_000_000;
-      expect((await helper.api?.rpc.unique.totalPieces(collection.collectionId, invalidTokenId))?.isNone).to.be.true;
-      expect((await helper.api?.rpc.unique.tokenData(collection.collectionId, invalidTokenId))?.pieces.toBigInt()).to.be.equal(0n);
-    });
+  itSub('Check total pieces for invalid Fungible token', async ({helper}) => {
+    const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);
+    const invalidTokenId = 1_000_000;
+    expect((await helper.api?.rpc.unique.totalPieces(collection.collectionId, invalidTokenId))?.isNone).to.be.true;
+    expect((await helper.api?.rpc.unique.tokenData(collection.collectionId, invalidTokenId))?.pieces.toBigInt()).to.be.equal(0n);
   });
 
-  it('Check total pieces for invalid NFT token', async () => {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      const invalidTokenId = 1_000_000;
-      expect((await helper.api?.rpc.unique.totalPieces(collection.collectionId, invalidTokenId))?.isNone).to.be.true;
-      expect((await helper.api?.rpc.unique.tokenData(collection.collectionId, invalidTokenId))?.pieces.toBigInt()).to.be.equal(0n);
-    });
+  itSub('Check total pieces for invalid NFT token', async ({helper}) => {
+    const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    const invalidTokenId = 1_000_000;
+    expect((await helper.api?.rpc.unique.totalPieces(collection.collectionId, invalidTokenId))?.isNone).to.be.true;
+    expect((await helper.api?.rpc.unique.tokenData(collection.collectionId, invalidTokenId))?.pieces.toBigInt()).to.be.equal(0n);
   });
 
-  it('Check total pieces for invalid Refungible token', async function() {
-    await usingPlaygrounds(async (helper) => {
-      const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
-      const invalidTokenId = 1_000_000;
-      expect((await helper.api?.rpc.unique.totalPieces(collection.collectionId, invalidTokenId))?.isNone).to.be.true;
-      expect((await helper.api?.rpc.unique.tokenData(collection.collectionId, invalidTokenId))?.pieces.toBigInt()).to.be.equal(0n);
-    });
+  itSub.ifWithPallets('Check total pieces for invalid Refungible token', [Pallets.ReFungible], async ({helper}) => {
+    const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
+    const invalidTokenId = 1_000_000;
+    expect((await helper.api?.rpc.unique.totalPieces(collection.collectionId, invalidTokenId))?.isNone).to.be.true;
+    expect((await helper.api?.rpc.unique.tokenData(collection.collectionId, invalidTokenId))?.pieces.toBigInt()).to.be.equal(0n);
   });
 });
modifiedtests/src/createMultipleItems.test.tsdiffbeforeafterboth
before · tests/src/createMultipleItems.test.ts
1// 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 chai from 'chai';19import chaiAsPromised from 'chai-as-promised';20import {21  normalizeAccountId,22} from './util/helpers';23import {usingPlaygrounds} from './util/playgrounds';2425chai.use(chaiAsPromised);26const expect = chai.expect;2728let donor: IKeyringPair;2930before(async () => {31  await usingPlaygrounds(async (_, privateKey) => {32    donor = privateKey('//Alice');33  });34});3536describe('Integration Test createMultipleItems(collection_id, owner, items_data):', () => {37  let alice: IKeyringPair;3839  before(async () => {40    await usingPlaygrounds(async (helper) => {41      [alice] = await helper.arrange.createAccounts([100n], donor);42    });43  });4445  it('Create 0x31, 0x32, 0x33 items in active NFT collection and verify tokens data in chain', async () => {46    await usingPlaygrounds(async (helper) => {47      const collection = await helper.nft.mintCollection(alice, {48        name: 'name',49        description: 'descr',50        tokenPrefix: 'COL',51        tokenPropertyPermissions: [52          {key: 'data', permission: {tokenOwner: true, mutable: false, collectionAdmin: false}},53        ],54      });55      const args = [56        {properties: [{key: 'data', value: '1'}]},57        {properties: [{key: 'data', value: '2'}]},58        {properties: [{key: 'data', value: '3'}]},59      ];60      const tokens = await helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);61      for (const [i, token] of tokens.entries()) {62        const tokenData = await token.getData();63        expect(tokenData?.normalizedOwner).to.be.deep.equal({Substrate: alice.address});64        expect(tokenData?.properties[0].value).to.be.equal(args[i].properties[0].value);65      }66    });67  });6869  it('Create 0x01, 0x02, 0x03 items in active Fungible collection and verify tokens data in chain', async () => {70    await usingPlaygrounds(async (helper) => {71      const collection = await helper.ft.mintCollection(alice, {72        name: 'name',73        description: 'descr',74        tokenPrefix: 'COL',75      });76      const args = [77        {value: 1n},78        {value: 2n},79        {value: 3n},80      ];81      await helper.ft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);82      expect(await collection.getBalance({Substrate: alice.address})).to.be.equal(6n);83    });84  });8586  it('Create 0x31, 0x32, 0x33 items in active ReFungible collection and verify tokens data in chain', async function() {87    await usingPlaygrounds(async (helper) => {88      const collection = await helper.rft.mintCollection(alice, {89        name: 'name',90        description: 'descr',91        tokenPrefix: 'COL',92      });93      const args = [94        {pieces: 1n},95        {pieces: 2n},96        {pieces: 3n},97      ];98      const tokens = await helper.rft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);99100      for (const [i, token] of tokens.entries()) {101        expect(await token.getBalance({Substrate: alice.address})).to.be.equal(BigInt(i + 1));102      }103    });104  });105106  it('Can mint amount of items equals to collection limits', async () => {107    await usingPlaygrounds(async (helper) => {108      const collection = await helper.nft.mintCollection(alice, {109        name: 'name',110        description: 'descr',111        tokenPrefix: 'COL',112        limits: {113          tokenLimit: 2,114        },115      });116      const args = [{}, {}];117      await helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);118    });119  });120121  it('Create 0x31, 0x32, 0x33 items in active NFT with property Admin', async () => {122    await usingPlaygrounds(async (helper) => {123      const collection = await helper.nft.mintCollection(alice, {124        name: 'name',125        description: 'descr',126        tokenPrefix: 'COL',127        tokenPropertyPermissions: [128          {key: 'data', permission: {tokenOwner: false, mutable: true, collectionAdmin: true}},129        ],130      });131      const args = [132        {properties: [{key: 'data', value: '1'}]},133        {properties: [{key: 'data', value: '2'}]},134        {properties: [{key: 'data', value: '3'}]},135      ];136      const tokens = await helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);137      for (const [i, token] of tokens.entries()) {138        const tokenData = await token.getData();139        expect(tokenData?.normalizedOwner).to.be.deep.equal({Substrate: alice.address});140        expect(tokenData?.properties[0].value).to.be.equal(args[i].properties[0].value);141      }142    });143  });144145  it('Create 0x31, 0x32, 0x33 items in active NFT with property AdminConst', async () => {146    await usingPlaygrounds(async (helper) => {147      const collection = await helper.nft.mintCollection(alice, {148        name: 'name',149        description: 'descr',150        tokenPrefix: 'COL',151        tokenPropertyPermissions: [152          {key: 'data', permission: {tokenOwner: false, mutable: false, collectionAdmin: true}},153        ],154      });155      const args = [156        {properties: [{key: 'data', value: '1'}]},157        {properties: [{key: 'data', value: '2'}]},158        {properties: [{key: 'data', value: '3'}]},159      ];160      const tokens = await helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);161      for (const [i, token] of tokens.entries()) {162        const tokenData = await token.getData();163        expect(tokenData?.normalizedOwner).to.be.deep.equal({Substrate: alice.address});164        expect(tokenData?.properties[0].value).to.be.equal(args[i].properties[0].value);165      }166    });167  });168169  it('Create 0x31, 0x32, 0x33 items in active NFT with property itemOwnerOrAdmin', async () => {170    await usingPlaygrounds(async (helper) => {171      const collection = await helper.nft.mintCollection(alice, {172        name: 'name',173        description: 'descr',174        tokenPrefix: 'COL',175        tokenPropertyPermissions: [176          {key: 'data', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}},177        ],178      });179      const args = [180        {properties: [{key: 'data', value: '1'}]},181        {properties: [{key: 'data', value: '2'}]},182        {properties: [{key: 'data', value: '3'}]},183      ];184      const tokens = await helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);185      for (const [i, token] of tokens.entries()) {186        const tokenData = await token.getData();187        expect(tokenData?.normalizedOwner).to.be.deep.equal({Substrate: alice.address});188        expect(tokenData?.properties[0].value).to.be.equal(args[i].properties[0].value);189      }190    });191  });192});193194describe('Negative Integration Test createMultipleItems(collection_id, owner, items_data):', () => {195  let alice: IKeyringPair;196  let bob: IKeyringPair;197198  before(async () => {199    await usingPlaygrounds(async (helper) => {200      [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);201    });202  });203204  it('Regular user cannot create items in active NFT collection', async () => {205    await usingPlaygrounds(async (helper) => {206      const collection = await helper.nft.mintCollection(alice, {207        name: 'name',208        description: 'descr',209        tokenPrefix: 'COL',210      });211      const args = [212        {},213        {},214      ];215      const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(bob, collection.collectionId, {Substrate: alice.address}, args);216      await expect(mintTx()).to.be.rejectedWith(/common\.PublicMintingNotAllowed/);217    });218  });219220  it('Regular user cannot create items in active Fungible collection', async () => {221    await usingPlaygrounds(async (helper) => {222      const collection = await helper.ft.mintCollection(alice, {223        name: 'name',224        description: 'descr',225        tokenPrefix: 'COL',226      });227      const args = [228        {value: 1n},229        {value: 2n},230        {value: 3n},231      ];232      const mintTx = async () => helper.ft.mintMultipleTokensWithOneOwner(bob, collection.collectionId, {Substrate: alice.address}, args);233      await expect(mintTx()).to.be.rejectedWith(/common\.PublicMintingNotAllowed/);234    });235  });236237  it('Regular user cannot create items in active ReFungible collection', async function() {238    await usingPlaygrounds(async (helper) => {239      const collection = await helper.rft.mintCollection(alice, {240        name: 'name',241        description: 'descr',242        tokenPrefix: 'COL',243      });244      const args = [245        {pieces: 1n},246        {pieces: 1n},247        {pieces: 1n},248      ];249      const mintTx = async () => helper.rft.mintMultipleTokensWithOneOwner(bob, collection.collectionId, {Substrate: alice.address}, args);250      await expect(mintTx()).to.be.rejectedWith(/common\.PublicMintingNotAllowed/);251    });252  });253254  it('Create token in not existing collection', async () => {255    await usingPlaygrounds(async (helper) => {256      const collectionId = 1_000_000;257      const args = [258        {},259        {},260      ];261      const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(bob, collectionId, {Substrate: alice.address}, args);262      await expect(mintTx()).to.be.rejectedWith(/common\.CollectionNotFound/);263    });264  });265266  it('Create NFTs that has reached the maximum data limit', async function() {267    await usingPlaygrounds(async (helper) => {268      const collection = await helper.nft.mintCollection(alice, {269        name: 'name',270        description: 'descr',271        tokenPrefix: 'COL',272        tokenPropertyPermissions: [273          {key: 'data', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}},274        ],275      });276      const args = [277        {properties: [{key: 'data', value: 'A'.repeat(32769)}]},278        {properties: [{key: 'data', value: 'B'.repeat(32769)}]},279        {properties: [{key: 'data', value: 'C'.repeat(32769)}]},280      ];281      const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);282      await expect(mintTx()).to.be.rejected;283    });284  });285286  it('Create Refungible tokens that has reached the maximum data limit', async function() {287    await usingPlaygrounds(async (helper) => {288      const collection = await helper.rft.mintCollection(alice, {289        name: 'name',290        description: 'descr',291        tokenPrefix: 'COL',292        tokenPropertyPermissions: [293          {key: 'data', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}},294        ],295      });296      const args = [297        {pieces: 10n, properties: [{key: 'data', value: 'A'.repeat(32769)}]},298        {pieces: 10n, properties: [{key: 'data', value: 'B'.repeat(32769)}]},299        {pieces: 10n, properties: [{key: 'data', value: 'C'.repeat(32769)}]},300      ];301      const mintTx = async () => helper.rft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);302      await expect(mintTx()).to.be.rejected;303    });304  });305306  it('Create tokens with different types', async () => {307    await usingPlaygrounds(async (helper) => {308      const {collectionId} = await helper.nft.mintCollection(alice, {309        name: 'name',310        description: 'descr',311        tokenPrefix: 'COL',312      });313314      //FIXME:315      const types = ['NFT', 'Fungible', 'ReFungible'];316      const mintTx = helper.api?.tx.unique.createMultipleItems(collectionId, normalizeAccountId(alice.address), types);317      await expect(helper.signTransaction(alice, mintTx)).to.be.rejected;318    });319  });320321  it('Create tokens with different data limits <> maximum data limit', async () => {322    await usingPlaygrounds(async (helper) => {323      const collection = await helper.nft.mintCollection(alice, {324        name: 'name',325        description: 'descr',326        tokenPrefix: 'COL',327        tokenPropertyPermissions: [328          {key: 'data', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}},329        ],330      });331      const args = [332        {properties: [{key: 'data', value: 'A'}]},333        {properties: [{key: 'data', value: 'B'.repeat(32769)}]},334      ];335      const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);336      await expect(mintTx()).to.be.rejected;337    });338  });339340  it('Fails when minting tokens exceeds collectionLimits amount', async () => {341    await usingPlaygrounds(async (helper) => {342      const collection = await helper.nft.mintCollection(alice, {343        name: 'name',344        description: 'descr',345        tokenPrefix: 'COL',346        tokenPropertyPermissions: [347          {key: 'data', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}},348        ],349        limits: {350          tokenLimit: 1,351        },352      });353      const args = [354        {},355        {},356      ];357      const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);358      await expect(mintTx()).to.be.rejected;359    });360  });361362  it('User doesnt have editing rights', async () => {363    await usingPlaygrounds(async (helper) => {364      const collection = await helper.nft.mintCollection(alice, {365        name: 'name',366        description: 'descr',367        tokenPrefix: 'COL',368        tokenPropertyPermissions: [369          {key: 'data', permission: {tokenOwner: false, mutable: true, collectionAdmin: false}},370        ],371      });372      const args = [373        {properties: [{key: 'data', value: 'A'}]},374      ];375      const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);376      await expect(mintTx()).to.be.rejected;377    });378  });379380  it('Adding property without access rights', async () => {381    await usingPlaygrounds(async (helper) => {382      const collection = await helper.nft.mintCollection(alice, {383        name: 'name',384        description: 'descr',385        tokenPrefix: 'COL',386        properties: [387          {388            key: 'data',389            value: 'v',390          },391        ],392      });393      const args = [394        {properties: [{key: 'data', value: 'A'}]},395      ];396      const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);397      await expect(mintTx()).to.be.rejected;398    });399  });400401  it('Adding more than 64 prps', async () => {402    await usingPlaygrounds(async (helper) => {403      const collection = await helper.nft.mintCollection(alice, {404        name: 'name',405        description: 'descr',406        tokenPrefix: 'COL',407      });408      const prps = [];409410      for (let i = 0; i < 65; i++) {411        prps.push({key: `key${i}`, value: `value${i}`});412      }413414      const args = [415        {properties: prps},416        {properties: prps},417        {properties: prps},418      ];419420      const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);421      await expect(mintTx()).to.be.rejected;422    });423  });424});
after · tests/src/createMultipleItems.test.ts
1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.2// This file is part of Unique Network.34// Unique Network is free software: you can redistribute itSub and/or modify5// itSub 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 itSub 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 {19  normalizeAccountId,20} from './util/helpers';21import {usingPlaygrounds, expect, Pallets, itSub} from './util/playgrounds';222324describe('Integration Test createMultipleItems(collection_id, owner, items_data):', () => {25  let alice: IKeyringPair;2627  before(async () => {28    await usingPlaygrounds(async (helper, privateKey) => {29      const donor = privateKey('//Alice');30      [alice] = await helper.arrange.createAccounts([100n], donor);31    });32  });3334  itSub('Create 0x31, 0x32, 0x33 items in active NFT collection and verify tokens data in chain', async ({helper}) => {35    const collection = await helper.nft.mintCollection(alice, {36      name: 'name',37      description: 'descr',38      tokenPrefix: 'COL',39      tokenPropertyPermissions: [40        {key: 'data', permission: {tokenOwner: true, mutable: false, collectionAdmin: false}},41      ],42    });43    const args = [44      {properties: [{key: 'data', value: '1'}]},45      {properties: [{key: 'data', value: '2'}]},46      {properties: [{key: 'data', value: '3'}]},47    ];48    const tokens = await helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);49    for (const [i, token] of tokens.entries()) {50      const tokenData = await token.getData();51      expect(tokenData?.normalizedOwner).to.be.deep.equal({Substrate: alice.address});52      expect(tokenData?.properties[0].value).to.be.equal(args[i].properties[0].value);53    }54  });5556  itSub('Create 0x01, 0x02, 0x03 items in active Fungible collection and verify tokens data in chain', async ({helper}) => {57    const collection = await helper.ft.mintCollection(alice, {58      name: 'name',59      description: 'descr',60      tokenPrefix: 'COL',61    });62    const args = [63      {value: 1n},64      {value: 2n},65      {value: 3n},66    ];67    await helper.ft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, args, {Substrate: alice.address});68    expect(await collection.getBalance({Substrate: alice.address})).to.be.equal(6n);69  });7071  itSub.ifWithPallets('Create 0x31, 0x32, 0x33 items in active ReFungible collection and verify tokens data in chain', [Pallets.ReFungible], async ({helper}) => {72    const collection = await helper.rft.mintCollection(alice, {73      name: 'name',74      description: 'descr',75      tokenPrefix: 'COL',76    });77    const args = [78      {pieces: 1n},79      {pieces: 2n},80      {pieces: 3n},81    ];82    const tokens = await helper.rft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);8384    for (const [i, token] of tokens.entries()) {85      expect(await token.getBalance({Substrate: alice.address})).to.be.equal(BigInt(i + 1));86    }87  });8889  itSub('Can mint amount of items equals to collection limits', async ({helper}) => {90    const collection = await helper.nft.mintCollection(alice, {91      name: 'name',92      description: 'descr',93      tokenPrefix: 'COL',94      limits: {95        tokenLimit: 2,96      },97    });98    const args = [{}, {}];99    await helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);100  });101102  itSub('Create 0x31, 0x32, 0x33 items in active NFT with property Admin', async ({helper}) => {103    const collection = await helper.nft.mintCollection(alice, {104      name: 'name',105      description: 'descr',106      tokenPrefix: 'COL',107      tokenPropertyPermissions: [108        {key: 'data', permission: {tokenOwner: false, mutable: true, collectionAdmin: true}},109      ],110    });111    const args = [112      {properties: [{key: 'data', value: '1'}]},113      {properties: [{key: 'data', value: '2'}]},114      {properties: [{key: 'data', value: '3'}]},115    ];116    const tokens = await helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);117    for (const [i, token] of tokens.entries()) {118      const tokenData = await token.getData();119      expect(tokenData?.normalizedOwner).to.be.deep.equal({Substrate: alice.address});120      expect(tokenData?.properties[0].value).to.be.equal(args[i].properties[0].value);121    }122  });123124  itSub('Create 0x31, 0x32, 0x33 items in active NFT with property AdminConst', async ({helper}) => {125    const collection = await helper.nft.mintCollection(alice, {126      name: 'name',127      description: 'descr',128      tokenPrefix: 'COL',129      tokenPropertyPermissions: [130        {key: 'data', permission: {tokenOwner: false, mutable: false, collectionAdmin: true}},131      ],132    });133    const args = [134      {properties: [{key: 'data', value: '1'}]},135      {properties: [{key: 'data', value: '2'}]},136      {properties: [{key: 'data', value: '3'}]},137    ];138    const tokens = await helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);139    for (const [i, token] of tokens.entries()) {140      const tokenData = await token.getData();141      expect(tokenData?.normalizedOwner).to.be.deep.equal({Substrate: alice.address});142      expect(tokenData?.properties[0].value).to.be.equal(args[i].properties[0].value);143    }144  });145146  itSub('Create 0x31, 0x32, 0x33 items in active NFT with property itemOwnerOrAdmin', async ({helper}) => {147    const collection = await helper.nft.mintCollection(alice, {148      name: 'name',149      description: 'descr',150      tokenPrefix: 'COL',151      tokenPropertyPermissions: [152        {key: 'data', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}},153      ],154    });155    const args = [156      {properties: [{key: 'data', value: '1'}]},157      {properties: [{key: 'data', value: '2'}]},158      {properties: [{key: 'data', value: '3'}]},159    ];160    const tokens = await helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);161    for (const [i, token] of tokens.entries()) {162      const tokenData = await token.getData();163      expect(tokenData?.normalizedOwner).to.be.deep.equal({Substrate: alice.address});164      expect(tokenData?.properties[0].value).to.be.equal(args[i].properties[0].value);165    }166  });167});168169describe('Negative Integration Test createMultipleItems(collection_id, owner, items_data):', () => {170  let alice: IKeyringPair;171  let bob: IKeyringPair;172173  before(async () => {174    await usingPlaygrounds(async (helper, privateKey) => {175      const donor = privateKey('//Alice');176      [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);177    });178  });179180  itSub('Regular user cannot create items in active NFT collection', async ({helper}) => {181    const collection = await helper.nft.mintCollection(alice, {182      name: 'name',183      description: 'descr',184      tokenPrefix: 'COL',185    });186    const args = [187      {},188      {},189    ];190    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(bob, collection.collectionId, {Substrate: alice.address}, args);191    await expect(mintTx()).to.be.rejectedWith(/common\.PublicMintingNotAllowed/);192  });193194  itSub('Regular user cannot create items in active Fungible collection', async ({helper}) => {195    const collection = await helper.ft.mintCollection(alice, {196      name: 'name',197      description: 'descr',198      tokenPrefix: 'COL',199    });200    const args = [201      {value: 1n},202      {value: 2n},203      {value: 3n},204    ];205    const mintTx = async () => helper.ft.mintMultipleTokensWithOneOwner(bob, collection.collectionId, args, {Substrate: alice.address});206    await expect(mintTx()).to.be.rejectedWith(/common\.PublicMintingNotAllowed/);207  });208209  itSub.ifWithPallets('Regular user cannot create items in active ReFungible collection', [Pallets.ReFungible], async ({helper}) => {210    const collection = await helper.rft.mintCollection(alice, {211      name: 'name',212      description: 'descr',213      tokenPrefix: 'COL',214    });215    const args = [216      {pieces: 1n},217      {pieces: 1n},218      {pieces: 1n},219    ];220    const mintTx = async () => helper.rft.mintMultipleTokensWithOneOwner(bob, collection.collectionId, {Substrate: alice.address}, args);221    await expect(mintTx()).to.be.rejectedWith(/common\.PublicMintingNotAllowed/);222  });223224  itSub('Create token in not existing collection', async ({helper}) => {225    const collectionId = 1_000_000;226    const args = [227      {},228      {},229    ];230    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(bob, collectionId, {Substrate: alice.address}, args);231    await expect(mintTx()).to.be.rejectedWith(/common\.CollectionNotFound/);232  });233234  itSub('Create NFTs that has reached the maximum data limit', async ({helper}) => {235    const collection = await helper.nft.mintCollection(alice, {236      name: 'name',237      description: 'descr',238      tokenPrefix: 'COL',239      tokenPropertyPermissions: [240        {key: 'data', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}},241      ],242    });243    const args = [244      {properties: [{key: 'data', value: 'A'.repeat(32769)}]},245      {properties: [{key: 'data', value: 'B'.repeat(32769)}]},246      {properties: [{key: 'data', value: 'C'.repeat(32769)}]},247    ];248    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);249    await expect(mintTx()).to.be.rejectedWith('Verification Error');250  });251252  itSub.ifWithPallets('Create Refungible tokens that has reached the maximum data limit', [Pallets.ReFungible], async ({helper}) => {253    const collection = await helper.rft.mintCollection(alice, {254      name: 'name',255      description: 'descr',256      tokenPrefix: 'COL',257      tokenPropertyPermissions: [258        {key: 'data', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}},259      ],260    });261    const args = [262      {pieces: 10n, properties: [{key: 'data', value: 'A'.repeat(32769)}]},263      {pieces: 10n, properties: [{key: 'data', value: 'B'.repeat(32769)}]},264      {pieces: 10n, properties: [{key: 'data', value: 'C'.repeat(32769)}]},265    ];266    const mintTx = async () => helper.rft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);267    await expect(mintTx()).to.be.rejectedWith('Verification Error');268  });269270  itSub.ifWithPallets('Create tokens with different types', [Pallets.ReFungible], async ({helper}) => {271    const {collectionId} = await helper.nft.mintCollection(alice, {272      name: 'name',273      description: 'descr',274      tokenPrefix: 'COL',275    });276277    const types = ['NFT', 'Fungible', 'ReFungible'];278    const mintTx = helper.api?.tx.unique.createMultipleItems(collectionId, normalizeAccountId(alice.address), types);279    await expect(helper.signTransaction(alice, mintTx)).to.be.rejected;280  });281282  itSub('Create tokens with different data limits <> maximum data limit', async ({helper}) => {283    const collection = await helper.nft.mintCollection(alice, {284      name: 'name',285      description: 'descr',286      tokenPrefix: 'COL',287      tokenPropertyPermissions: [288        {key: 'data', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}},289      ],290    });291    const args = [292      {properties: [{key: 'data', value: 'A'}]},293      {properties: [{key: 'data', value: 'B'.repeat(32769)}]},294    ];295    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);296    await expect(mintTx()).to.be.rejectedWith('Verification Error');297  });298299  itSub('Fails when minting tokens exceeds collectionLimits amount', async ({helper}) => {300    const collection = await helper.nft.mintCollection(alice, {301      name: 'name',302      description: 'descr',303      tokenPrefix: 'COL',304      tokenPropertyPermissions: [305        {key: 'data', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}},306      ],307      limits: {308        tokenLimit: 1,309      },310    });311    const args = [312      {},313      {},314    ];315    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);316    await expect(mintTx()).to.be.rejectedWith(/common\.CollectionTokenLimitExceeded/);317  });318319  itSub('User doesnt have editing rights', async ({helper}) => {320    const collection = await helper.nft.mintCollection(alice, {321      name: 'name',322      description: 'descr',323      tokenPrefix: 'COL',324      tokenPropertyPermissions: [325        {key: 'data', permission: {tokenOwner: false, mutable: true, collectionAdmin: false}},326      ],327    });328    const args = [329      {properties: [{key: 'data', value: 'A'}]},330    ];331    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);332    await expect(mintTx()).to.be.rejectedWith(/common\.NoPermission/);333  });334335  itSub('Adding property without access rights', async ({helper}) => {336    const collection = await helper.nft.mintCollection(alice, {337      name: 'name',338      description: 'descr',339      tokenPrefix: 'COL',340      properties: [341        {342          key: 'data',343          value: 'v',344        },345      ],346    });347    const args = [348      {properties: [{key: 'data', value: 'A'}]},349    ];350    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);351    await expect(mintTx()).to.be.rejectedWith(/common\.NoPermission/);352  });353354  itSub('Adding more than 64 prps', async ({helper}) => {355    const collection = await helper.nft.mintCollection(alice, {356      name: 'name',357      description: 'descr',358      tokenPrefix: 'COL',359    });360    const prps = [];361362    for (let i = 0; i < 65; i++) {363      prps.push({key: `key${i}`, value: `value${i}`});364    }365366    const args = [367      {properties: prps},368      {properties: prps},369      {properties: prps},370    ];371372    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);373    await expect(mintTx()).to.be.rejectedWith('Verification Error');374  });375});