1import {ApiPromise} from '@polkadot/api';2import {expect} from 'chai';3import {getApiConnection} from '../substrate/substrate-api';4import {requirePallets, Pallets} from '../deprecated-helpers/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 await requirePallets(this, [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});