difftreelog
feat tests requirePallets
in: master
21 files changed
tests/src/rmrk/acceptNft.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/acceptNft.test.ts
+++ b/tests/src/rmrk/acceptNft.test.ts
@@ -8,13 +8,13 @@
} from './util/tx';
import {NftIdTuple} from './util/fetch';
import {isNftChildOfAnother, expectTxFailure} from './util/helpers';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
describe('integration test: accept NFT', () => {
let api: any;
before(async function() {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
tests/src/rmrk/addResource.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/addResource.test.ts
+++ b/tests/src/rmrk/addResource.test.ts
@@ -12,7 +12,7 @@
addNftComposableResource,
} from './util/tx';
import {RmrkTraitsResourceResourceInfo as ResourceInfo} from '@polkadot/types/lookup';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
describe('integration test: add NFT resource', () => {
const Alice = '//Alice';
@@ -27,7 +27,7 @@
let api: any;
before(async function() {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
it('add resource', async () => {
tests/src/rmrk/addTheme.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/addTheme.test.ts
+++ b/tests/src/rmrk/addTheme.test.ts
@@ -3,13 +3,13 @@
import {createBase, addTheme} from './util/tx';
import {expectTxFailure} from './util/helpers';
import {getThemeNames} from './util/fetch';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
describe('integration test: add Theme to Base', () => {
let api: any;
before(async function() {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkEquip]);
});
const alice = '//Alice';
tests/src/rmrk/burnNft.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/burnNft.test.ts
+++ b/tests/src/rmrk/burnNft.test.ts
@@ -5,7 +5,7 @@
import chai from 'chai';
import chaiAsPromised from 'chai-as-promised';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
chai.use(chaiAsPromised);
const expect = chai.expect;
@@ -17,7 +17,7 @@
let api: any;
before(async function() {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
tests/src/rmrk/changeCollectionIssuer.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/changeCollectionIssuer.test.ts
+++ b/tests/src/rmrk/changeCollectionIssuer.test.ts
@@ -1,5 +1,5 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
import {expectTxFailure} from './util/helpers';
import {
changeIssuer,
@@ -13,7 +13,7 @@
let api: any;
before(async function() {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
tests/src/rmrk/createBase.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/createBase.test.ts
+++ b/tests/src/rmrk/createBase.test.ts
@@ -1,12 +1,12 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
import {createCollection, createBase} from './util/tx';
describe('integration test: create new Base', () => {
let api: any;
before(async function() {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore, Pallets.RmrkEquip]);
});
const alice = '//Alice';
tests/src/rmrk/createCollection.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/createCollection.test.ts
+++ b/tests/src/rmrk/createCollection.test.ts
@@ -1,12 +1,12 @@
import {getApiConnection} from '../substrate/substrate-api';
-import {getModuleNames, Pallets} from '../util/helpers';
+import {requirePallets, Pallets} from '../util/helpers';
import {createCollection} from './util/tx';
describe('Integration test: create new collection', () => {
let api: any;
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
tests/src/rmrk/deleteCollection.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/deleteCollection.test.ts
+++ b/tests/src/rmrk/deleteCollection.test.ts
@@ -1,5 +1,5 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
import {expectTxFailure} from './util/helpers';
import {createCollection, deleteCollection} from './util/tx';
@@ -7,7 +7,7 @@
let api: any;
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
const Alice = '//Alice';
tests/src/rmrk/equipNft.test.tsdiffbeforeafterboth1import {ApiPromise} from '@polkadot/api';2import {expect} from 'chai';3import {getApiConnection} from '../substrate/substrate-api';4import {getModuleNames, Pallets} from '../util/helpers';5import {getNft, getParts, NftIdTuple} from './util/fetch';6import {expectTxFailure} from './util/helpers';7import {8 addNftComposableResource,9 addNftSlotResource,10 createBase,11 createCollection,12 equipNft,13 mintNft,14 sendNft,15 unequipNft,16} from './util/tx';1718const Alice = '//Alice';19const Bob = '//Bob';2021const composableParts: number[] = [5, 2, 7];22const composableSrc = 'test-cmp-src';23const composableMetadata = 'test-cmp-metadata';24const composableLicense = 'test-comp-license';25const composableThumb = 'test-comp-thumb';2627const slotSrc = 'test-slot-src';28const slotLicense = 'test-slot-license';29const slotMetadata = 'test-slot-metadata';30const slotThumb = 'test-slot-thumb';3132const slotId = 1;3334async function createTestCollection(api: ApiPromise): Promise<number> {35 return createCollection(36 api,37 Alice,38 'test-metadata',39 null,40 'test-symbol',41 );42}4344async function mintTestNft(api: ApiPromise, collectionId: number): Promise<number> {45 return await mintNft(46 api,47 Alice,48 Alice,49 collectionId,50 'nft-metadata',51 );52}5354async function mintChildNft(api: ApiPromise, collectionId: number, parentNftId: number): Promise<number> {55 const nftChildId = await mintTestNft(api, collectionId);5657 const parentNFT: NftIdTuple = [collectionId, parentNftId];5859 await sendNft(api, 'sent', Alice, collectionId, nftChildId, parentNFT);6061 return nftChildId;62}6364async function createTestBase(api: ApiPromise): Promise<number> {65 return createBase(api, Alice, 'test-base', 'DTBase', [66 {67 SlotPart: {68 id: slotId,69 equippable: 'All',70 z: 1,71 src: slotSrc,72 },73 },74 ]);75}7677async function addTestComposable(api: ApiPromise, collectionId: number, nftId: number, baseId: number) {78 await addNftComposableResource(79 api,80 Alice,81 'added',82 collectionId,83 nftId,84 composableParts,85 baseId,86 composableSrc,87 composableMetadata,88 composableLicense,89 composableThumb,90 );91}9293async function addTestSlot(api: ApiPromise, collectionId: number, nftId: number, baseId: number, slotId: number): Promise<number> {94 return await addNftSlotResource(95 api,96 Alice,97 'added',98 collectionId,99 nftId,100 baseId,101 slotId,102 slotSrc,103 slotMetadata,104 slotLicense,105 slotThumb,106 );107}108109async function checkEquipStatus(110 api: ApiPromise,111 expectedStatus: 'equipped' | 'unequipped',112 collectionId: number,113 nftId: number,114) {115 const itemNftDataOpt = await getNft(api, collectionId, nftId);116 expect(itemNftDataOpt.isSome, 'Error: unable to fetch item NFT data');117118 const itemNftData = itemNftDataOpt.unwrap();119 expect(itemNftData.equipped.isTrue, `Error: item NFT should be ${expectedStatus}`)120 .to.be.equal(expectedStatus === 'equipped');121}122123describe.skip('integration test: Equip NFT', () => {124125 let api: any;126 127 before(async function () {128 api = await getApiConnection();129 if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();130 });131132 it('equip nft', async () => {133 const collectionId = await createTestCollection(api);134 const nftParentId = await mintTestNft(api, collectionId);135 const nftChildId = await mintChildNft(api, collectionId, nftParentId);136137 const baseId = await createTestBase(api);138139 await addTestComposable(api, collectionId, nftParentId, baseId);140 const resourceId = await addTestSlot(api, collectionId, nftChildId, baseId, slotId);141142 const equipperNFT: NftIdTuple = [collectionId, nftParentId];143 const itemNFT: NftIdTuple = [collectionId, nftChildId];144145 await equipNft(api, Alice, itemNFT, equipperNFT, resourceId, baseId, slotId);146147 await checkEquipStatus(api, 'equipped', collectionId, nftChildId);148 });149150 it('unequip nft', async () => {151 const collectionId = await createTestCollection(api);152 const nftParentId = await mintTestNft(api, collectionId);153 const nftChildId = await mintChildNft(api, collectionId, nftParentId);154155 const baseId = await createTestBase(api);156157 await addTestComposable(api, collectionId, nftParentId, baseId);158 const resourceId = await addTestSlot(api, collectionId, nftChildId, baseId, slotId);159160 const equipperNFT: NftIdTuple = [collectionId, nftParentId];161 const itemNFT: NftIdTuple = [collectionId, nftChildId];162163 await equipNft(api, Alice, itemNFT, equipperNFT, resourceId, baseId, slotId);164165 await checkEquipStatus(api, 'equipped', collectionId, nftChildId);166167 await unequipNft(api, Alice, itemNFT, equipperNFT, resourceId, baseId, slotId);168 await checkEquipStatus(api, 'unequipped', collectionId, nftChildId);169 });170171 it('[negative] equip NFT onto non-existing NFT', async () => {172 const collectionId = await createTestCollection(api);173174 const nftChildId = await mintNft(175 api,176 Alice,177 Alice,178 collectionId,179 'nft-metadata',180 );181182 const itemNFT: NftIdTuple = [collectionId, nftChildId];183 const invalidEquipperNFT: NftIdTuple = [collectionId, 9999999];184185 const baseId = 0;186 const resourceId = 0;187188 const tx = equipNft(api, Alice, itemNFT, invalidEquipperNFT, resourceId, baseId, slotId);189 await expectTxFailure(/rmrkCore\.NoAvailableNftId/, tx);190 });191192 it('[negative] equip non-existing NFT', async () => {193 const collectionId = await createTestCollection(api);194 const nftParentId = await mintNft(195 api,196 Alice,197 Alice,198 collectionId,199 'nft-metadata',200 );201202 const baseId = await createTestBase(api);203204 await addTestComposable(api, collectionId, nftParentId, baseId);205206 const equipperNFT: NftIdTuple = [collectionId, nftParentId];207 const invalidItemNFT: NftIdTuple = [collectionId, 99999999];208209 const resourceId = 0;210211 const tx = equipNft(api, Alice, invalidItemNFT, equipperNFT, resourceId, baseId, slotId);212 await expectTxFailure(/rmrkCore\.NoAvailableNftId/, tx);213 });214215 it('[negative] equip NFT by a not-an-owner user', async () => {216 const collectionId = await createTestCollection(api);217 const nftParentId = await mintTestNft(api, collectionId);218 const nftChildId = await mintChildNft(api, collectionId, nftParentId);219220 const baseId = await createTestBase(api);221222 await addTestComposable(api, collectionId, nftParentId, baseId);223224 const equipperNFT: NftIdTuple = [collectionId, nftParentId];225 const itemNFT: NftIdTuple = [collectionId, nftChildId];226227 const resourceId = await addTestSlot(api, collectionId, nftChildId, baseId, slotId);228229 const tx = equipNft(api, Bob, itemNFT, equipperNFT, resourceId, baseId, slotId);230 await expectTxFailure(/rmrkEquip\.PermissionError/, tx);231 });232233 it('[negative] unable to equip NFT onto indirect parent NFT', async () => {234 const collectionId = await createTestCollection(api);235 const nftParentId = await mintTestNft(api, collectionId);236 const nftChildId = await mintChildNft(api, collectionId, nftParentId);237 const nftGrandchildId = await mintChildNft(api, collectionId, nftChildId);238239 const baseId = await createTestBase(api);240241 await addTestComposable(api, collectionId, nftParentId, baseId);242 const resourceId = await addTestSlot(api, collectionId, nftGrandchildId, baseId, slotId);243244 const equipperNFT: NftIdTuple = [collectionId, nftParentId];245 const itemNFT: NftIdTuple = [collectionId, nftGrandchildId];246247 const tx = equipNft(api, Alice, itemNFT, equipperNFT, resourceId, baseId, slotId);248 await expectTxFailure(/rmrkEquip\.MustBeDirectParent/, tx);249 });250251 it('[negative] unable to equip NFT onto parent NFT with another base', async () => {252 const collectionId = await createTestCollection(api);253 const nftParentId = await mintTestNft(api, collectionId);254 const nftChildId = await mintChildNft(api, collectionId, nftParentId);255256 const baseId = await createTestBase(api);257258 await addTestComposable(api, collectionId, nftParentId, baseId);259 const resourceId = await addTestSlot(api, collectionId, nftChildId, baseId, slotId);260261 const equipperNFT: NftIdTuple = [collectionId, nftParentId];262 const itemNFT: NftIdTuple = [collectionId, nftChildId];263264 const invalidBaseId = 99999;265266 const tx = equipNft(api, Alice, itemNFT, equipperNFT, resourceId, invalidBaseId, slotId);267 await expectTxFailure(/rmrkEquip\.NoResourceForThisBaseFoundOnNft/, tx);268 });269270 it('[negative] unable to equip NFT into slot with another id', async () => {271 const collectionId = await createTestCollection(api);272 const nftParentId = await mintTestNft(api, collectionId);273 const nftChildId = await mintChildNft(api, collectionId, nftParentId);274275 const baseId = await createTestBase(api);276277 await addTestComposable(api, collectionId, nftParentId, baseId);278 const resourceId = await addTestSlot(api, collectionId, nftChildId, baseId, slotId);279280 const equipperNFT: NftIdTuple = [collectionId, nftParentId];281 const itemNFT: NftIdTuple = [collectionId, nftChildId];282283 const incorrectSlotId = slotId + 1;284 const tx = equipNft(api, Alice, itemNFT, equipperNFT, resourceId, baseId, incorrectSlotId);285 await expectTxFailure(/rmrkEquip\.ItemHasNoResourceToEquipThere/, tx);286 });287288 it('[negative] unable to equip NFT with incorrect slot (fixed part)', async () => {289 const collectionId = await createTestCollection(api);290 const nftParentId = await mintTestNft(api, collectionId);291 const nftChildId = await mintChildNft(api, collectionId, nftParentId);292293 const baseId = await createBase(api, Alice, 'test-base', 'DTBase', [294 {295 FixedPart: {296 id: slotId,297 equippable: 'All',298 z: 1,299 src: slotSrc,300 },301 },302 ]);303304 await addTestComposable(api, collectionId, nftParentId, baseId);305 const resourceId = await addTestSlot(api, collectionId, nftChildId, baseId, slotId);306307 const equipperNFT: NftIdTuple = [collectionId, nftParentId];308 const itemNFT: NftIdTuple = [collectionId, nftChildId];309310 const tx = equipNft(api, Alice, itemNFT, equipperNFT, resourceId, baseId, slotId);311 await expectTxFailure(/rmrkEquip\.CantEquipFixedPart/, tx);312 });313314 it('[negative] unable to equip NFT from a collection that is not allowed by the slot', async () => {315 const collectionId = await createTestCollection(api);316 const nftParentId = await mintTestNft(api, collectionId);317 const nftChildId = await mintChildNft(api, collectionId, nftParentId);318319 const baseId = await createBase(api, Alice, 'test-base', 'DTBase', [320 {321 SlotPart: {322 id: 1,323 z: 1,324 equippable: 'Empty',325 src: slotSrc,326 },327 },328 ]);329330 await addTestComposable(api, collectionId, nftParentId, baseId);331 const resourceId = await addTestSlot(api, collectionId, nftChildId, baseId, slotId);332333 const equipperNFT: NftIdTuple = [collectionId, nftParentId];334 const itemNFT: NftIdTuple = [collectionId, nftChildId];335336 const tx = equipNft(api, Alice, itemNFT, equipperNFT, resourceId, baseId, slotId);337 await expectTxFailure(/rmrkEquip\.CollectionNotEquippable/, tx);338 });339340 after(() => {341 api.disconnect();342 });343});1import {ApiPromise} from '@polkadot/api';2import {expect} from 'chai';3import {getApiConnection} from '../substrate/substrate-api';4import {requirePallets, Pallets} from '../util/helpers';5import {getNft, getParts, NftIdTuple} from './util/fetch';6import {expectTxFailure} from './util/helpers';7import {8 addNftComposableResource,9 addNftSlotResource,10 createBase,11 createCollection,12 equipNft,13 mintNft,14 sendNft,15 unequipNft,16} from './util/tx';1718const Alice = '//Alice';19const Bob = '//Bob';2021const composableParts: number[] = [5, 2, 7];22const composableSrc = 'test-cmp-src';23const composableMetadata = 'test-cmp-metadata';24const composableLicense = 'test-comp-license';25const composableThumb = 'test-comp-thumb';2627const slotSrc = 'test-slot-src';28const slotLicense = 'test-slot-license';29const slotMetadata = 'test-slot-metadata';30const slotThumb = 'test-slot-thumb';3132const slotId = 1;3334async function createTestCollection(api: ApiPromise): Promise<number> {35 return createCollection(36 api,37 Alice,38 'test-metadata',39 null,40 'test-symbol',41 );42}4344async function mintTestNft(api: ApiPromise, collectionId: number): Promise<number> {45 return await mintNft(46 api,47 Alice,48 Alice,49 collectionId,50 'nft-metadata',51 );52}5354async function mintChildNft(api: ApiPromise, collectionId: number, parentNftId: number): Promise<number> {55 const nftChildId = await mintTestNft(api, collectionId);5657 const parentNFT: NftIdTuple = [collectionId, parentNftId];5859 await sendNft(api, 'sent', Alice, collectionId, nftChildId, parentNFT);6061 return nftChildId;62}6364async function createTestBase(api: ApiPromise): Promise<number> {65 return createBase(api, Alice, 'test-base', 'DTBase', [66 {67 SlotPart: {68 id: slotId,69 equippable: 'All',70 z: 1,71 src: slotSrc,72 },73 },74 ]);75}7677async function addTestComposable(api: ApiPromise, collectionId: number, nftId: number, baseId: number) {78 await addNftComposableResource(79 api,80 Alice,81 'added',82 collectionId,83 nftId,84 composableParts,85 baseId,86 composableSrc,87 composableMetadata,88 composableLicense,89 composableThumb,90 );91}9293async function addTestSlot(api: ApiPromise, collectionId: number, nftId: number, baseId: number, slotId: number): Promise<number> {94 return await addNftSlotResource(95 api,96 Alice,97 'added',98 collectionId,99 nftId,100 baseId,101 slotId,102 slotSrc,103 slotMetadata,104 slotLicense,105 slotThumb,106 );107}108109async function checkEquipStatus(110 api: ApiPromise,111 expectedStatus: 'equipped' | 'unequipped',112 collectionId: number,113 nftId: number,114) {115 const itemNftDataOpt = await getNft(api, collectionId, nftId);116 expect(itemNftDataOpt.isSome, 'Error: unable to fetch item NFT data');117118 const itemNftData = itemNftDataOpt.unwrap();119 expect(itemNftData.equipped.isTrue, `Error: item NFT should be ${expectedStatus}`)120 .to.be.equal(expectedStatus === 'equipped');121}122123describe.skip('integration test: Equip NFT', () => {124125 let api: any;126 127 before(async function () {128 api = await getApiConnection();129 requirePallets(this, api, [Pallets.RmrkCore, Pallets.RmrkEquip]);130 });131132 it('equip nft', async () => {133 const collectionId = await createTestCollection(api);134 const nftParentId = await mintTestNft(api, collectionId);135 const nftChildId = await mintChildNft(api, collectionId, nftParentId);136137 const baseId = await createTestBase(api);138139 await addTestComposable(api, collectionId, nftParentId, baseId);140 const resourceId = await addTestSlot(api, collectionId, nftChildId, baseId, slotId);141142 const equipperNFT: NftIdTuple = [collectionId, nftParentId];143 const itemNFT: NftIdTuple = [collectionId, nftChildId];144145 await equipNft(api, Alice, itemNFT, equipperNFT, resourceId, baseId, slotId);146147 await checkEquipStatus(api, 'equipped', collectionId, nftChildId);148 });149150 it('unequip nft', async () => {151 const collectionId = await createTestCollection(api);152 const nftParentId = await mintTestNft(api, collectionId);153 const nftChildId = await mintChildNft(api, collectionId, nftParentId);154155 const baseId = await createTestBase(api);156157 await addTestComposable(api, collectionId, nftParentId, baseId);158 const resourceId = await addTestSlot(api, collectionId, nftChildId, baseId, slotId);159160 const equipperNFT: NftIdTuple = [collectionId, nftParentId];161 const itemNFT: NftIdTuple = [collectionId, nftChildId];162163 await equipNft(api, Alice, itemNFT, equipperNFT, resourceId, baseId, slotId);164165 await checkEquipStatus(api, 'equipped', collectionId, nftChildId);166167 await unequipNft(api, Alice, itemNFT, equipperNFT, resourceId, baseId, slotId);168 await checkEquipStatus(api, 'unequipped', collectionId, nftChildId);169 });170171 it('[negative] equip NFT onto non-existing NFT', async () => {172 const collectionId = await createTestCollection(api);173174 const nftChildId = await mintNft(175 api,176 Alice,177 Alice,178 collectionId,179 'nft-metadata',180 );181182 const itemNFT: NftIdTuple = [collectionId, nftChildId];183 const invalidEquipperNFT: NftIdTuple = [collectionId, 9999999];184185 const baseId = 0;186 const resourceId = 0;187188 const tx = equipNft(api, Alice, itemNFT, invalidEquipperNFT, resourceId, baseId, slotId);189 await expectTxFailure(/rmrkCore\.NoAvailableNftId/, tx);190 });191192 it('[negative] equip non-existing NFT', async () => {193 const collectionId = await createTestCollection(api);194 const nftParentId = await mintNft(195 api,196 Alice,197 Alice,198 collectionId,199 'nft-metadata',200 );201202 const baseId = await createTestBase(api);203204 await addTestComposable(api, collectionId, nftParentId, baseId);205206 const equipperNFT: NftIdTuple = [collectionId, nftParentId];207 const invalidItemNFT: NftIdTuple = [collectionId, 99999999];208209 const resourceId = 0;210211 const tx = equipNft(api, Alice, invalidItemNFT, equipperNFT, resourceId, baseId, slotId);212 await expectTxFailure(/rmrkCore\.NoAvailableNftId/, tx);213 });214215 it('[negative] equip NFT by a not-an-owner user', async () => {216 const collectionId = await createTestCollection(api);217 const nftParentId = await mintTestNft(api, collectionId);218 const nftChildId = await mintChildNft(api, collectionId, nftParentId);219220 const baseId = await createTestBase(api);221222 await addTestComposable(api, collectionId, nftParentId, baseId);223224 const equipperNFT: NftIdTuple = [collectionId, nftParentId];225 const itemNFT: NftIdTuple = [collectionId, nftChildId];226227 const resourceId = await addTestSlot(api, collectionId, nftChildId, baseId, slotId);228229 const tx = equipNft(api, Bob, itemNFT, equipperNFT, resourceId, baseId, slotId);230 await expectTxFailure(/rmrkEquip\.PermissionError/, tx);231 });232233 it('[negative] unable to equip NFT onto indirect parent NFT', async () => {234 const collectionId = await createTestCollection(api);235 const nftParentId = await mintTestNft(api, collectionId);236 const nftChildId = await mintChildNft(api, collectionId, nftParentId);237 const nftGrandchildId = await mintChildNft(api, collectionId, nftChildId);238239 const baseId = await createTestBase(api);240241 await addTestComposable(api, collectionId, nftParentId, baseId);242 const resourceId = await addTestSlot(api, collectionId, nftGrandchildId, baseId, slotId);243244 const equipperNFT: NftIdTuple = [collectionId, nftParentId];245 const itemNFT: NftIdTuple = [collectionId, nftGrandchildId];246247 const tx = equipNft(api, Alice, itemNFT, equipperNFT, resourceId, baseId, slotId);248 await expectTxFailure(/rmrkEquip\.MustBeDirectParent/, tx);249 });250251 it('[negative] unable to equip NFT onto parent NFT with another base', async () => {252 const collectionId = await createTestCollection(api);253 const nftParentId = await mintTestNft(api, collectionId);254 const nftChildId = await mintChildNft(api, collectionId, nftParentId);255256 const baseId = await createTestBase(api);257258 await addTestComposable(api, collectionId, nftParentId, baseId);259 const resourceId = await addTestSlot(api, collectionId, nftChildId, baseId, slotId);260261 const equipperNFT: NftIdTuple = [collectionId, nftParentId];262 const itemNFT: NftIdTuple = [collectionId, nftChildId];263264 const invalidBaseId = 99999;265266 const tx = equipNft(api, Alice, itemNFT, equipperNFT, resourceId, invalidBaseId, slotId);267 await expectTxFailure(/rmrkEquip\.NoResourceForThisBaseFoundOnNft/, tx);268 });269270 it('[negative] unable to equip NFT into slot with another id', async () => {271 const collectionId = await createTestCollection(api);272 const nftParentId = await mintTestNft(api, collectionId);273 const nftChildId = await mintChildNft(api, collectionId, nftParentId);274275 const baseId = await createTestBase(api);276277 await addTestComposable(api, collectionId, nftParentId, baseId);278 const resourceId = await addTestSlot(api, collectionId, nftChildId, baseId, slotId);279280 const equipperNFT: NftIdTuple = [collectionId, nftParentId];281 const itemNFT: NftIdTuple = [collectionId, nftChildId];282283 const incorrectSlotId = slotId + 1;284 const tx = equipNft(api, Alice, itemNFT, equipperNFT, resourceId, baseId, incorrectSlotId);285 await expectTxFailure(/rmrkEquip\.ItemHasNoResourceToEquipThere/, tx);286 });287288 it('[negative] unable to equip NFT with incorrect slot (fixed part)', async () => {289 const collectionId = await createTestCollection(api);290 const nftParentId = await mintTestNft(api, collectionId);291 const nftChildId = await mintChildNft(api, collectionId, nftParentId);292293 const baseId = await createBase(api, Alice, 'test-base', 'DTBase', [294 {295 FixedPart: {296 id: slotId,297 equippable: 'All',298 z: 1,299 src: slotSrc,300 },301 },302 ]);303304 await addTestComposable(api, collectionId, nftParentId, baseId);305 const resourceId = await addTestSlot(api, collectionId, nftChildId, baseId, slotId);306307 const equipperNFT: NftIdTuple = [collectionId, nftParentId];308 const itemNFT: NftIdTuple = [collectionId, nftChildId];309310 const tx = equipNft(api, Alice, itemNFT, equipperNFT, resourceId, baseId, slotId);311 await expectTxFailure(/rmrkEquip\.CantEquipFixedPart/, tx);312 });313314 it('[negative] unable to equip NFT from a collection that is not allowed by the slot', async () => {315 const collectionId = await createTestCollection(api);316 const nftParentId = await mintTestNft(api, collectionId);317 const nftChildId = await mintChildNft(api, collectionId, nftParentId);318319 const baseId = await createBase(api, Alice, 'test-base', 'DTBase', [320 {321 SlotPart: {322 id: 1,323 z: 1,324 equippable: 'Empty',325 src: slotSrc,326 },327 },328 ]);329330 await addTestComposable(api, collectionId, nftParentId, baseId);331 const resourceId = await addTestSlot(api, collectionId, nftChildId, baseId, slotId);332333 const equipperNFT: NftIdTuple = [collectionId, nftParentId];334 const itemNFT: NftIdTuple = [collectionId, nftChildId];335336 const tx = equipNft(api, Alice, itemNFT, equipperNFT, resourceId, baseId, slotId);337 await expectTxFailure(/rmrkEquip\.CollectionNotEquippable/, tx);338 });339340 after(() => {341 api.disconnect();342 });343});tests/src/rmrk/getOwnedNfts.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/getOwnedNfts.test.ts
+++ b/tests/src/rmrk/getOwnedNfts.test.ts
@@ -1,6 +1,6 @@
import {expect} from 'chai';
import {getApiConnection} from '../substrate/substrate-api';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
import {getOwnedNfts} from './util/fetch';
import {mintNft, createCollection} from './util/tx';
@@ -9,7 +9,7 @@
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
tests/src/rmrk/lockCollection.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/lockCollection.test.ts
+++ b/tests/src/rmrk/lockCollection.test.ts
@@ -1,5 +1,5 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
import {expectTxFailure} from './util/helpers';
import {createCollection, lockCollection, mintNft} from './util/tx';
@@ -11,7 +11,7 @@
let api: any;
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
it('lock collection', async () => {
tests/src/rmrk/mintNft.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/mintNft.test.ts
+++ b/tests/src/rmrk/mintNft.test.ts
@@ -1,6 +1,6 @@
import {expect} from 'chai';
import {getApiConnection} from '../substrate/substrate-api';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
import {getNft} from './util/fetch';
import {expectTxFailure} from './util/helpers';
import {createCollection, mintNft} from './util/tx';
@@ -10,7 +10,7 @@
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
tests/src/rmrk/rejectNft.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/rejectNft.test.ts
+++ b/tests/src/rmrk/rejectNft.test.ts
@@ -8,13 +8,13 @@
} from './util/tx';
import {getChildren, NftIdTuple} from './util/fetch';
import {isNftChildOfAnother, expectTxFailure} from './util/helpers';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
describe('integration test: reject NFT', () => {
let api: any;
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
tests/src/rmrk/removeResource.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/removeResource.test.ts
+++ b/tests/src/rmrk/removeResource.test.ts
@@ -1,7 +1,7 @@
import {expect} from 'chai';
import privateKey from '../substrate/privateKey';
import {executeTransaction, getApiConnection} from '../substrate/substrate-api';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
import {getNft, NftIdTuple} from './util/fetch';
import {expectTxFailure} from './util/helpers';
import {
@@ -20,7 +20,7 @@
before(async function() {
api = await getApiConnection();
ss58Format = api.registry.getChainProperties()!.toJSON().ss58Format;
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
const Alice = '//Alice';
tests/src/rmrk/rmrkIsolation.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/rmrkIsolation.test.ts
+++ b/tests/src/rmrk/rmrkIsolation.test.ts
@@ -6,7 +6,7 @@
getCreateCollectionResult,
getDetailedCollectionInfo,
getGenericResult,
- getModuleNames,
+ requirePallets,
normalizeAccountId,
Pallets,
} from '../util/helpers';
@@ -64,7 +64,7 @@
before(async function() {
await usingApi(async (api, privateKeyWrapper) => {
alice = privateKeyWrapper('//Alice');
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
});
tests/src/rmrk/sendNft.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/sendNft.test.ts
+++ b/tests/src/rmrk/sendNft.test.ts
@@ -3,13 +3,13 @@
import {createCollection, mintNft, sendNft} from './util/tx';
import {NftIdTuple} from './util/fetch';
import {isNftChildOfAnother, expectTxFailure} from './util/helpers';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
describe('integration test: send NFT', () => {
let api: any;
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
const maxNftId = 0xFFFFFFFF;
tests/src/rmrk/setCollectionProperty.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/setCollectionProperty.test.ts
+++ b/tests/src/rmrk/setCollectionProperty.test.ts
@@ -1,5 +1,5 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
import {expectTxFailure} from './util/helpers';
import {createCollection, setPropertyCollection} from './util/tx';
@@ -10,7 +10,7 @@
let api: any;
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
it('set collection property', async () => {
tests/src/rmrk/setEquippableList.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/setEquippableList.test.ts
+++ b/tests/src/rmrk/setEquippableList.test.ts
@@ -1,5 +1,5 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
import {expectTxFailure} from './util/helpers';
import {createCollection, createBase, setEquippableList} from './util/tx';
@@ -7,7 +7,7 @@
let api: any;
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
const alice = '//Alice';
tests/src/rmrk/setNftProperty.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/setNftProperty.test.ts
+++ b/tests/src/rmrk/setNftProperty.test.ts
@@ -1,5 +1,5 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
import {NftIdTuple} from './util/fetch';
import {expectTxFailure} from './util/helpers';
import {createCollection, mintNft, sendNft, setNftProperty} from './util/tx';
@@ -8,7 +8,7 @@
let api: any;
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
const alice = '//Alice';
tests/src/rmrk/setResourcePriorities.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/setResourcePriorities.test.ts
+++ b/tests/src/rmrk/setResourcePriorities.test.ts
@@ -1,5 +1,5 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
import {expectTxFailure} from './util/helpers';
import {mintNft, createCollection, setResourcePriorities} from './util/tx';
@@ -7,7 +7,7 @@
let api: any;
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
const alice = '//Alice';
tests/src/util/helpers.tsdiffbeforeafterboth--- a/tests/src/util/helpers.ts
+++ b/tests/src/util/helpers.ts
@@ -28,6 +28,7 @@
import {hexToStr, strToUTF16, utf16ToStr} from './util';
import {UpDataStructsRpcCollection, UpDataStructsCreateItemData, UpDataStructsProperty} from '@polkadot/types/lookup';
import {UpDataStructsTokenChild} from '../interfaces';
+import { Context } from 'mocha';
chai.use(chaiAsPromised);
const expect = chai.expect;
@@ -42,6 +43,7 @@
export enum Pallets {
Inflation = 'inflation',
RmrkCore = 'rmrkcore',
+ RmrkEquip = 'rmrkequip',
ReFungible = 'refungible',
Fungible = 'fungible',
NFT = 'nonfungible',
@@ -70,6 +72,16 @@
return modulesNames;
}
+export function requirePallets(mocha: Context, api: ApiPromise, requiredPallets: string[]) {
+ const pallets = getModuleNames(api);
+
+ const isAllPalletsPresent = requiredPallets.every(p => pallets.includes(p));
+
+ if (!isAllPalletsPresent) {
+ mocha.skip();
+ }
+}
+
export function normalizeAccountId(input: string | AccountId | CrossAccountId | IKeyringPair): CrossAccountId {
if (typeof input === 'string') {
if (input.length >= 47) {