difftreelog
fix rmrk tests (minting)
in: master
1 file changed
tests/src/rmrk/rmrk.test.tsdiffbeforeafterboth1import {expect} from 'chai';2import privateKey from '../substrate/privateKey';3import usingApi, {executeTransaction} from '../substrate/substrate-api';4import {5 createCollectionExpectSuccess,6 createItemExpectSuccess,7 getCreateCollectionResult,8 getDetailedCollectionInfo,9 getGenericResult,10 normalizeAccountId,11} from '../util/helpers';12import {IKeyringPair} from '@polkadot/types/types';13import {ApiPromise} from '@polkadot/api';1415let alice: IKeyringPair;16let bob: IKeyringPair;1718async function createRmrkCollection(api: ApiPromise, sender: IKeyringPair): Promise<{uniqueId: number, rmrkId: number}> {19 const tx = api.tx.rmrkCore.createCollection('metadata', null, 'symbol');20 const events = await executeTransaction(api, sender, tx);2122 const uniqueResult = getCreateCollectionResult(events);23 const rmrkResult = getGenericResult(events, 'rmrkCore', 'CollectionCreated', (data) => {24 return parseInt(data[1].toString(), 10);25 });2627 return {28 uniqueId: uniqueResult.collectionId,29 rmrkId: rmrkResult.data!,30 };31}3233async function createRmrkNft(api: ApiPromise, sender: IKeyringPair, collectionId: number): Promise<number> {34 const tx = api.tx.rmrkCore.mintNft(35 sender.address,36 collectionId,37 sender.address,38 null,39 'nft-metadata',40 true,41 );42 const events = await executeTransaction(api, sender, tx);43 const result = getGenericResult(events, 'rmrkCore', 'NftMinted', (data) => {44 return parseInt(data[2].toString(), 10);45 });4647 return result.data!;48}4950describe('RMRK External Integration Test', () => {51 before(async () => {52 await usingApi(async (api, privateKeyWrapper) => {53 alice = privateKeyWrapper('//Alice');54 });55 });5657 it('Creates a new RMRK collection that is mapped to a different ID and is tagged as external', async () => {58 await usingApi(async api => {59 // throwaway collection to bump last Unique collection ID to test ID mapping60 await createCollectionExpectSuccess();6162 const collectionIds = await createRmrkCollection(api, alice);6364 expect(collectionIds.rmrkId).to.be.lessThan(collectionIds.uniqueId, 'collection ID mapping');6566 const collection = (await getDetailedCollectionInfo(api, collectionIds.uniqueId))!;67 expect(collection.readOnly.toHuman(), 'tagged external').to.be.true;68 });69 });70});7172describe('Negative Integration Test: External Collections, Internal Ops', () => {73 let uniqueCollectionId: number;74 let rmrkCollectionId: number;75 let rmrkNftId: number;7677 before(async () => {78 await usingApi(async (api, privateKeyWrapper) => {79 alice = privateKeyWrapper('//Alice');80 bob = privateKeyWrapper('//Bob');8182 const collectionIds = await createRmrkCollection(api, alice);83 uniqueCollectionId = collectionIds.uniqueId;84 rmrkCollectionId = collectionIds.rmrkId;8586 rmrkNftId = await createRmrkNft(api, alice, rmrkCollectionId);87 });88 });8990 it('[Negative] Forbids Unique operations with an external collection, handled by dispatch_call', async () => {91 await usingApi(async api => {92 // Collection item creation9394 const txCreateItem = api.tx.unique.createItem(uniqueCollectionId, normalizeAccountId(alice), 'NFT');95 await expect(executeTransaction(api, alice, txCreateItem), 'creating item')96 .to.be.rejectedWith(/common\.CollectionIsExternal/);9798 const txCreateMultipleItems = api.tx.unique.createMultipleItems(uniqueCollectionId, normalizeAccountId(alice), [{NFT: {}}, {NFT: {}}]);99 await expect(executeTransaction(api, alice, txCreateMultipleItems), 'creating multiple')100 .to.be.rejectedWith(/common\.CollectionIsExternal/);101102 const txCreateMultipleItemsEx = api.tx.unique.createMultipleItemsEx(uniqueCollectionId, {NFT: [{}]});103 await expect(executeTransaction(api, alice, txCreateMultipleItemsEx), 'creating multiple ex')104 .to.be.rejectedWith(/common\.CollectionIsExternal/);105106 // Collection properties107108 const txSetCollectionProperties = api.tx.unique.setCollectionProperties(uniqueCollectionId, [{key: 'a', value: '1'}, {key: 'b'}]);109 await expect(executeTransaction(api, alice, txSetCollectionProperties), 'setting collection properties')110 .to.be.rejectedWith(/common\.CollectionIsExternal/);111112 const txDeleteCollectionProperties = api.tx.unique.deleteCollectionProperties(uniqueCollectionId, ['a']);113 await expect(executeTransaction(api, alice, txDeleteCollectionProperties), 'deleting collection properties')114 .to.be.rejectedWith(/common\.CollectionIsExternal/);115116 const txSetPropertyPermissions = api.tx.unique.setPropertyPermissions(uniqueCollectionId, [{key: 'a', permission: {mutable: true}}]);117 await expect(executeTransaction(api, alice, txSetPropertyPermissions), 'setting property permissions')118 .to.be.rejectedWith(/common\.CollectionIsExternal/);119120 // NFT121122 const txBurn = api.tx.unique.burnItem(uniqueCollectionId, rmrkNftId, 1);123 await expect(executeTransaction(api, alice, txBurn), 'burning').to.be.rejectedWith(/common\.CollectionIsExternal/);124125 const txBurnFrom = api.tx.unique.burnFrom(uniqueCollectionId, normalizeAccountId(alice), rmrkNftId, 1);126 await expect(executeTransaction(api, alice, txBurnFrom), 'burning-from').to.be.rejectedWith(/common\.CollectionIsExternal/);127128 const txTransfer = api.tx.unique.transfer(normalizeAccountId(bob), uniqueCollectionId, rmrkNftId, 1);129 await expect(executeTransaction(api, alice, txTransfer), 'transferring').to.be.rejectedWith(/common\.CollectionIsExternal/);130131 const txApprove = api.tx.unique.approve(normalizeAccountId(bob), uniqueCollectionId, rmrkNftId, 1);132 await expect(executeTransaction(api, alice, txApprove), 'approving').to.be.rejectedWith(/common\.CollectionIsExternal/);133134 const txTransferFrom = api.tx.unique.transferFrom(normalizeAccountId(alice), normalizeAccountId(bob), uniqueCollectionId, rmrkNftId, 1);135 await expect(executeTransaction(api, alice, txTransferFrom), 'transferring-from').to.be.rejectedWith(/common\.CollectionIsExternal/);136137 // NFT properties138139 const txSetTokenProperties = api.tx.unique.setTokenProperties(uniqueCollectionId, rmrkNftId, [{key: 'a', value: '2'}]);140 await expect(executeTransaction(api, alice, txSetTokenProperties), 'setting token properties')141 .to.be.rejectedWith(/common\.CollectionIsExternal/);142143 const txDeleteTokenProperties = api.tx.unique.deleteTokenProperties(uniqueCollectionId, rmrkNftId, ['a']);144 await expect(executeTransaction(api, alice, txDeleteTokenProperties), 'deleting token properties')145 .to.be.rejectedWith(/common\.CollectionIsExternal/);146 });147 });148149 it('[Negative] Forbids Unique collection operations with an external collection', async () => {150 await usingApi(async api => {151 const txDestroyCollection = api.tx.unique.destroyCollection(uniqueCollectionId);152 await expect(executeTransaction(api, alice, txDestroyCollection), 'destroying collection')153 .to.be.rejectedWith(/common\.CollectionIsExternal/);154155 // Allow list156157 const txAddAllowList = api.tx.unique.addToAllowList(uniqueCollectionId, normalizeAccountId(bob));158 await expect(executeTransaction(api, alice, txAddAllowList), 'adding to allow list')159 .to.be.rejectedWith(/common\.CollectionIsExternal/);160161 const txRemoveAllowList = api.tx.unique.removeFromAllowList(uniqueCollectionId, normalizeAccountId(bob));162 await expect(executeTransaction(api, alice, txRemoveAllowList), 'removing from allowlist')163 .to.be.rejectedWith(/common\.CollectionIsExternal/);164165 // Owner / Admin / Sponsor166167 const txChangeOwner = api.tx.unique.changeCollectionOwner(uniqueCollectionId, bob.address);168 await expect(executeTransaction(api, alice, txChangeOwner), 'changing owner')169 .to.be.rejectedWith(/common\.CollectionIsExternal/);170171 const txAddAdmin = api.tx.unique.addCollectionAdmin(uniqueCollectionId, normalizeAccountId(bob));172 await expect(executeTransaction(api, alice, txAddAdmin), 'adding admin')173 .to.be.rejectedWith(/common\.CollectionIsExternal/);174175 const txRemoveAdmin = api.tx.unique.removeCollectionAdmin(uniqueCollectionId, normalizeAccountId(bob));176 await expect(executeTransaction(api, alice, txRemoveAdmin), 'removing admin')177 .to.be.rejectedWith(/common\.CollectionIsExternal/);178179 const txAddCollectionSponsor = api.tx.unique.setCollectionSponsor(uniqueCollectionId, bob.address);180 await expect(executeTransaction(api, alice, txAddCollectionSponsor), 'setting sponsor')181 .to.be.rejectedWith(/common\.CollectionIsExternal/);182183 const txConfirmCollectionSponsor = api.tx.unique.confirmSponsorship(uniqueCollectionId);184 await expect(executeTransaction(api, alice, txConfirmCollectionSponsor), 'confirming sponsor')185 .to.be.rejectedWith(/common\.CollectionIsExternal/);186187 const txRemoveCollectionSponsor = api.tx.unique.removeCollectionSponsor(uniqueCollectionId);188 await expect(executeTransaction(api, alice, txRemoveCollectionSponsor), 'removing sponsor')189 .to.be.rejectedWith(/common\.CollectionIsExternal/);190 191 // Limits / permissions / transfers192193 const txSetTransfers = api.tx.unique.setTransfersEnabledFlag(uniqueCollectionId, true);194 await expect(executeTransaction(api, alice, txSetTransfers), 'setting transfers enabled flag')195 .to.be.rejectedWith(/common\.CollectionIsExternal/);196197 const txSetLimits = api.tx.unique.setCollectionLimits(uniqueCollectionId, {transfersEnabled: false});198 await expect(executeTransaction(api, alice, txSetLimits), 'setting collection limits')199 .to.be.rejectedWith(/common\.CollectionIsExternal/);200201 const txSetPermissions = api.tx.unique.setCollectionPermissions(uniqueCollectionId, {access: 'AllowList'});202 await expect(executeTransaction(api, alice, txSetPermissions), 'setting collection permissions')203 .to.be.rejectedWith(/common\.CollectionIsExternal/);204 });205 });206});207208describe('Negative Integration Test: Internal Collections, External Ops', () => {209 let collectionId: number;210 let nftId: number;211212 before(async () => {213 await usingApi(async (api, privateKeyWrapper) => {214 alice = privateKeyWrapper('//Alice');215 bob = privateKeyWrapper('//Bob');216217 collectionId = await createCollectionExpectSuccess({mode: {type: 'NFT'}});218 nftId = await createItemExpectSuccess(alice, collectionId, 'NFT');219 });220 });221222 it('[Negative] Forbids RMRK operations with the internal collection and NFT (due to the lack of mapping)', async () => {223 await usingApi(async api => {224 const txChangeOwner = api.tx.rmrkCore.changeCollectionIssuer(collectionId, bob.address);225 await expect(executeTransaction(api, alice, txChangeOwner), 'changing collection issuer')226 .to.be.rejectedWith(/rmrkCore\.CollectionUnknown/);227228 const maxBurns = 10;229 const txBurnItem = api.tx.rmrkCore.burnNft(collectionId, nftId, maxBurns);230 await expect(executeTransaction(api, alice, txBurnItem), 'burning NFT').to.be.rejectedWith(/rmrkCore\.CollectionUnknown/);231 });232 });233});1import {expect} from 'chai';2import privateKey from '../substrate/privateKey';3import usingApi, {executeTransaction} from '../substrate/substrate-api';4import {5 createCollectionExpectSuccess,6 createItemExpectSuccess,7 getCreateCollectionResult,8 getDetailedCollectionInfo,9 getGenericResult,10 normalizeAccountId,11} from '../util/helpers';12import {IKeyringPair} from '@polkadot/types/types';13import {ApiPromise} from '@polkadot/api';1415let alice: IKeyringPair;16let bob: IKeyringPair;1718async function createRmrkCollection(api: ApiPromise, sender: IKeyringPair): Promise<{uniqueId: number, rmrkId: number}> {19 const tx = api.tx.rmrkCore.createCollection('metadata', null, 'symbol');20 const events = await executeTransaction(api, sender, tx);2122 const uniqueResult = getCreateCollectionResult(events);23 const rmrkResult = getGenericResult(events, 'rmrkCore', 'CollectionCreated', (data) => {24 return parseInt(data[1].toString(), 10);25 });2627 return {28 uniqueId: uniqueResult.collectionId,29 rmrkId: rmrkResult.data!,30 };31}3233async function createRmrkNft(api: ApiPromise, sender: IKeyringPair, collectionId: number): Promise<number> {34 const tx = api.tx.rmrkCore.mintNft(35 sender.address,36 collectionId,37 sender.address,38 null,39 'nft-metadata',40 true,41 null42 );43 const events = await executeTransaction(api, sender, tx);44 const result = getGenericResult(events, 'rmrkCore', 'NftMinted', (data) => {45 return parseInt(data[2].toString(), 10);46 });4748 return result.data!;49}5051describe('RMRK External Integration Test', () => {52 before(async () => {53 await usingApi(async (api, privateKeyWrapper) => {54 alice = privateKeyWrapper('//Alice');55 });56 });5758 it('Creates a new RMRK collection that is mapped to a different ID and is tagged as external', async () => {59 await usingApi(async api => {60 // throwaway collection to bump last Unique collection ID to test ID mapping61 await createCollectionExpectSuccess();6263 const collectionIds = await createRmrkCollection(api, alice);6465 expect(collectionIds.rmrkId).to.be.lessThan(collectionIds.uniqueId, 'collection ID mapping');6667 const collection = (await getDetailedCollectionInfo(api, collectionIds.uniqueId))!;68 expect(collection.readOnly.toHuman(), 'tagged external').to.be.true;69 });70 });71});7273describe('Negative Integration Test: External Collections, Internal Ops', () => {74 let uniqueCollectionId: number;75 let rmrkCollectionId: number;76 let rmrkNftId: number;7778 before(async () => {79 await usingApi(async (api, privateKeyWrapper) => {80 alice = privateKeyWrapper('//Alice');81 bob = privateKeyWrapper('//Bob');8283 const collectionIds = await createRmrkCollection(api, alice);84 uniqueCollectionId = collectionIds.uniqueId;85 rmrkCollectionId = collectionIds.rmrkId;8687 rmrkNftId = await createRmrkNft(api, alice, rmrkCollectionId);88 });89 });9091 it('[Negative] Forbids Unique operations with an external collection, handled by dispatch_call', async () => {92 await usingApi(async api => {93 // Collection item creation9495 const txCreateItem = api.tx.unique.createItem(uniqueCollectionId, normalizeAccountId(alice), 'NFT');96 await expect(executeTransaction(api, alice, txCreateItem), 'creating item')97 .to.be.rejectedWith(/common\.CollectionIsExternal/);9899 const txCreateMultipleItems = api.tx.unique.createMultipleItems(uniqueCollectionId, normalizeAccountId(alice), [{NFT: {}}, {NFT: {}}]);100 await expect(executeTransaction(api, alice, txCreateMultipleItems), 'creating multiple')101 .to.be.rejectedWith(/common\.CollectionIsExternal/);102103 const txCreateMultipleItemsEx = api.tx.unique.createMultipleItemsEx(uniqueCollectionId, {NFT: [{}]});104 await expect(executeTransaction(api, alice, txCreateMultipleItemsEx), 'creating multiple ex')105 .to.be.rejectedWith(/common\.CollectionIsExternal/);106107 // Collection properties108109 const txSetCollectionProperties = api.tx.unique.setCollectionProperties(uniqueCollectionId, [{key: 'a', value: '1'}, {key: 'b'}]);110 await expect(executeTransaction(api, alice, txSetCollectionProperties), 'setting collection properties')111 .to.be.rejectedWith(/common\.CollectionIsExternal/);112113 const txDeleteCollectionProperties = api.tx.unique.deleteCollectionProperties(uniqueCollectionId, ['a']);114 await expect(executeTransaction(api, alice, txDeleteCollectionProperties), 'deleting collection properties')115 .to.be.rejectedWith(/common\.CollectionIsExternal/);116117 const txSetPropertyPermissions = api.tx.unique.setPropertyPermissions(uniqueCollectionId, [{key: 'a', permission: {mutable: true}}]);118 await expect(executeTransaction(api, alice, txSetPropertyPermissions), 'setting property permissions')119 .to.be.rejectedWith(/common\.CollectionIsExternal/);120121 // NFT122123 const txBurn = api.tx.unique.burnItem(uniqueCollectionId, rmrkNftId, 1);124 await expect(executeTransaction(api, alice, txBurn), 'burning').to.be.rejectedWith(/common\.CollectionIsExternal/);125126 const txBurnFrom = api.tx.unique.burnFrom(uniqueCollectionId, normalizeAccountId(alice), rmrkNftId, 1);127 await expect(executeTransaction(api, alice, txBurnFrom), 'burning-from').to.be.rejectedWith(/common\.CollectionIsExternal/);128129 const txTransfer = api.tx.unique.transfer(normalizeAccountId(bob), uniqueCollectionId, rmrkNftId, 1);130 await expect(executeTransaction(api, alice, txTransfer), 'transferring').to.be.rejectedWith(/common\.CollectionIsExternal/);131132 const txApprove = api.tx.unique.approve(normalizeAccountId(bob), uniqueCollectionId, rmrkNftId, 1);133 await expect(executeTransaction(api, alice, txApprove), 'approving').to.be.rejectedWith(/common\.CollectionIsExternal/);134135 const txTransferFrom = api.tx.unique.transferFrom(normalizeAccountId(alice), normalizeAccountId(bob), uniqueCollectionId, rmrkNftId, 1);136 await expect(executeTransaction(api, alice, txTransferFrom), 'transferring-from').to.be.rejectedWith(/common\.CollectionIsExternal/);137138 // NFT properties139140 const txSetTokenProperties = api.tx.unique.setTokenProperties(uniqueCollectionId, rmrkNftId, [{key: 'a', value: '2'}]);141 await expect(executeTransaction(api, alice, txSetTokenProperties), 'setting token properties')142 .to.be.rejectedWith(/common\.CollectionIsExternal/);143144 const txDeleteTokenProperties = api.tx.unique.deleteTokenProperties(uniqueCollectionId, rmrkNftId, ['a']);145 await expect(executeTransaction(api, alice, txDeleteTokenProperties), 'deleting token properties')146 .to.be.rejectedWith(/common\.CollectionIsExternal/);147 });148 });149150 it('[Negative] Forbids Unique collection operations with an external collection', async () => {151 await usingApi(async api => {152 const txDestroyCollection = api.tx.unique.destroyCollection(uniqueCollectionId);153 await expect(executeTransaction(api, alice, txDestroyCollection), 'destroying collection')154 .to.be.rejectedWith(/common\.CollectionIsExternal/);155156 // Allow list157158 const txAddAllowList = api.tx.unique.addToAllowList(uniqueCollectionId, normalizeAccountId(bob));159 await expect(executeTransaction(api, alice, txAddAllowList), 'adding to allow list')160 .to.be.rejectedWith(/common\.CollectionIsExternal/);161162 const txRemoveAllowList = api.tx.unique.removeFromAllowList(uniqueCollectionId, normalizeAccountId(bob));163 await expect(executeTransaction(api, alice, txRemoveAllowList), 'removing from allowlist')164 .to.be.rejectedWith(/common\.CollectionIsExternal/);165166 // Owner / Admin / Sponsor167168 const txChangeOwner = api.tx.unique.changeCollectionOwner(uniqueCollectionId, bob.address);169 await expect(executeTransaction(api, alice, txChangeOwner), 'changing owner')170 .to.be.rejectedWith(/common\.CollectionIsExternal/);171172 const txAddAdmin = api.tx.unique.addCollectionAdmin(uniqueCollectionId, normalizeAccountId(bob));173 await expect(executeTransaction(api, alice, txAddAdmin), 'adding admin')174 .to.be.rejectedWith(/common\.CollectionIsExternal/);175176 const txRemoveAdmin = api.tx.unique.removeCollectionAdmin(uniqueCollectionId, normalizeAccountId(bob));177 await expect(executeTransaction(api, alice, txRemoveAdmin), 'removing admin')178 .to.be.rejectedWith(/common\.CollectionIsExternal/);179180 const txAddCollectionSponsor = api.tx.unique.setCollectionSponsor(uniqueCollectionId, bob.address);181 await expect(executeTransaction(api, alice, txAddCollectionSponsor), 'setting sponsor')182 .to.be.rejectedWith(/common\.CollectionIsExternal/);183184 const txConfirmCollectionSponsor = api.tx.unique.confirmSponsorship(uniqueCollectionId);185 await expect(executeTransaction(api, alice, txConfirmCollectionSponsor), 'confirming sponsor')186 .to.be.rejectedWith(/common\.CollectionIsExternal/);187188 const txRemoveCollectionSponsor = api.tx.unique.removeCollectionSponsor(uniqueCollectionId);189 await expect(executeTransaction(api, alice, txRemoveCollectionSponsor), 'removing sponsor')190 .to.be.rejectedWith(/common\.CollectionIsExternal/);191 192 // Limits / permissions / transfers193194 const txSetTransfers = api.tx.unique.setTransfersEnabledFlag(uniqueCollectionId, true);195 await expect(executeTransaction(api, alice, txSetTransfers), 'setting transfers enabled flag')196 .to.be.rejectedWith(/common\.CollectionIsExternal/);197198 const txSetLimits = api.tx.unique.setCollectionLimits(uniqueCollectionId, {transfersEnabled: false});199 await expect(executeTransaction(api, alice, txSetLimits), 'setting collection limits')200 .to.be.rejectedWith(/common\.CollectionIsExternal/);201202 const txSetPermissions = api.tx.unique.setCollectionPermissions(uniqueCollectionId, {access: 'AllowList'});203 await expect(executeTransaction(api, alice, txSetPermissions), 'setting collection permissions')204 .to.be.rejectedWith(/common\.CollectionIsExternal/);205 });206 });207});208209describe('Negative Integration Test: Internal Collections, External Ops', () => {210 let collectionId: number;211 let nftId: number;212213 before(async () => {214 await usingApi(async (api, privateKeyWrapper) => {215 alice = privateKeyWrapper('//Alice');216 bob = privateKeyWrapper('//Bob');217218 collectionId = await createCollectionExpectSuccess({mode: {type: 'NFT'}});219 nftId = await createItemExpectSuccess(alice, collectionId, 'NFT');220 });221 });222223 it('[Negative] Forbids RMRK operations with the internal collection and NFT (due to the lack of mapping)', async () => {224 await usingApi(async api => {225 const txChangeOwner = api.tx.rmrkCore.changeCollectionIssuer(collectionId, bob.address);226 await expect(executeTransaction(api, alice, txChangeOwner), 'changing collection issuer')227 .to.be.rejectedWith(/rmrkCore\.CollectionUnknown/);228229 const maxBurns = 10;230 const txBurnItem = api.tx.rmrkCore.burnNft(collectionId, nftId, maxBurns);231 await expect(executeTransaction(api, alice, txBurnItem), 'burning NFT').to.be.rejectedWith(/rmrkCore\.CollectionUnknown/);232 });233 });234});