1234567891011121314151617import {IKeyringPair} from '@polkadot/types/types';1819import {20 createCollection,21 itApi,22 normalizeAccountId,23 getCreateItemResult,24 CrossAccountId,25} from './util/helpers';2627import {usingPlaygrounds, expect, itSub, Pallets} from './util/playgrounds';28import {IProperty} from './util/playgrounds/types';29import {executeTransaction} from './substrate/substrate-api';30import {DevUniqueHelper} from './util/playgrounds/unique.dev';3132async function mintTokenHelper(helper: DevUniqueHelper, collection: any, signer: IKeyringPair, owner: CrossAccountId, type: 'nft' | 'fungible' | 'refungible'='nft', properties?: IProperty[]) {33 let token;34 const itemCountBefore = await helper.collection.getLastTokenId(collection.collectionId);35 const itemBalanceBefore = (await helper.api!.rpc.unique.balance(collection.collectionId, owner, 0)).toBigInt();36 if (type === 'nft') {37 token = await collection.mintToken(signer, owner, properties);38 } else if (type === 'fungible') {39 await collection.mint(signer, 10n, owner);40 } else {41 token = await collection.mintToken(signer, 100n, owner, properties);42 }4344 const itemCountAfter = await helper.collection.getLastTokenId(collection.collectionId);45 const itemBalanceAfter = (await helper.api!.rpc.unique.balance(collection.collectionId, owner, 0)).toBigInt();4647 if (type === 'fungible') {48 expect(itemBalanceAfter - itemBalanceBefore).to.be.equal(10n);49 } else {50 expect(itemCountAfter).to.be.equal(itemCountBefore + 1);51 }5253 return token;54}555657describe('integration test: ext. ():', () => {58 let alice: IKeyringPair;59 let bob: IKeyringPair;6061 before(async () => {62 await usingPlaygrounds(async (helper, privateKey) => {63 const donor = privateKey('//Alice');64 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);65 });66 });6768 itSub('Create new item in NFT collection', async ({helper}) => {69 const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});70 await mintTokenHelper(helper, collection, alice, {Substrate: alice.address});71 });72 itSub('Create new item in Fungible collection', async ({helper}) => {73 const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);74 await mintTokenHelper(helper, collection, alice, {Substrate: alice.address}, 'fungible');75 });76 itSub('Check events on create new item in Fungible collection', async ({helper}) => {77 const {collectionId} = await helper.ft.mintCollection(alice, {name: 'test', description: 'test', tokenPrefix: 'test'}, 0);78 const api = helper.api!;798081 const to = normalizeAccountId(alice);82 {83 const createData = {fungible: {value: 100}};84 const tx = api.tx.unique.createItem(collectionId, to, createData as any);85 const events = await executeTransaction(api, alice, tx);86 const result = getCreateItemResult(events);87 expect(result.amount).to.be.equal(100);88 expect(result.collectionId).to.be.equal(collectionId);89 expect(result.recipient).to.be.deep.equal(to);90 }91 {92 const createData = {fungible: {value: 50}};93 const tx = api.tx.unique.createItem(collectionId, to, createData as any);94 const events = await executeTransaction(api, alice, tx);95 const result = getCreateItemResult(events);96 expect(result.amount).to.be.equal(50);97 expect(result.collectionId).to.be.equal(collectionId);98 expect(result.recipient).to.be.deep.equal(to);99 }100 });101 itSub.ifWithPallets('Create new item in ReFungible collection', [Pallets.ReFungible], async ({helper}) => {102 const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});103 await mintTokenHelper(helper, collection, alice, {Substrate: alice.address}, 'refungible');104 });105 itSub('Create new item in NFT collection with collection admin permissions', async ({helper}) => {106 const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});107 await collection.addAdmin(alice, {Substrate: bob.address});108 await mintTokenHelper(helper, collection, bob, {Substrate: alice.address});109 });110 itSub('Create new item in Fungible collection with collection admin permissions', async ({helper}) => {111 const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);112 await collection.addAdmin(alice, {Substrate: bob.address});113 await mintTokenHelper(helper, collection, bob, {Substrate: alice.address}, 'fungible');114 });115 itSub.ifWithPallets('Create new item in ReFungible collection with collection admin permissions', [Pallets.ReFungible], async ({helper}) => {116 const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});117 await collection.addAdmin(alice, {Substrate: bob.address});118 await mintTokenHelper(helper, collection, bob, {Substrate: alice.address}, 'refungible');119 });120121 itSub('Set property Admin', async ({helper}) => {122 const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL',123 properties: [{key: 'k', value: 'v'}],124 tokenPropertyPermissions: [{key: 'k', permission: {tokenOwner: false, mutable: true, collectionAdmin: true}}],125 });126 await mintTokenHelper(helper, collection, alice, {Substrate: bob.address}, 'nft', [{key: 'k', value: 'v'}]);127 });128129 itSub('Set property AdminConst', async ({helper}) => {130 const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL',131 properties: [{key: 'k', value: 'v'}],132 tokenPropertyPermissions: [{key: 'k', permission: {tokenOwner: false, mutable: false, collectionAdmin: true}}],133 });134 await mintTokenHelper(helper, collection, alice, {Substrate: bob.address}, 'nft', [{key: 'k', value: 'v'}]);135 });136137 itSub('Set property itemOwnerOrAdmin', async ({helper}) => {138 const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL',139 properties: [{key: 'k', value: 'v'}],140 tokenPropertyPermissions: [{key: 'k', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}}],141 });142 await mintTokenHelper(helper, collection, alice, {Substrate: bob.address}, 'nft', [{key: 'k', value: 'v'}]);143 });144145 itSub('Check total pieces of Fungible token', async ({helper}) => {146 const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);147 const amount = 10n;148 await mintTokenHelper(helper, collection, alice, {Substrate: bob.address}, 'fungible');149 {150 const totalPieces = await collection.getTotalPieces();151 expect(totalPieces).to.be.equal(amount);152 }153 await collection.transfer(bob, {Substrate: alice.address}, 1n);154 {155 const totalPieces = await collection.getTotalPieces();156 expect(totalPieces).to.be.equal(amount);157 }158 });159160 itSub('Check total pieces of NFT token', async ({helper}) => {161 const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});162 const amount = 1n;163 const token = await mintTokenHelper(helper, collection, alice, {Substrate: bob.address});164 {165 const totalPieces = await helper.api?.rpc.unique.totalPieces(collection.collectionId, token.tokenId);166 expect(totalPieces?.unwrap().toBigInt()).to.be.equal(amount);167 }168 await token.transfer(bob, {Substrate: alice.address});169 {170 const totalPieces = await helper.api?.rpc.unique.totalPieces(collection.collectionId, token.tokenId);171 expect(totalPieces?.unwrap().toBigInt()).to.be.equal(amount);172 }173 });174175 itSub.ifWithPallets('Check total pieces of ReFungible token', [Pallets.ReFungible], async ({helper}) => {176 const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});177 const amount = 100n;178 const token = await mintTokenHelper(helper, collection, alice, {Substrate: bob.address}, 'refungible');179 {180 const totalPieces = await token.getTotalPieces();181 expect(totalPieces).to.be.equal(amount);182 }183 await token.transfer(bob, {Substrate: alice.address}, 60n);184 {185 const totalPieces = await token.getTotalPieces();186 expect(totalPieces).to.be.equal(amount);187 }188 });189});190191describe('Negative integration test: ext. createItem():', () => {192 let alice: IKeyringPair;193 let bob: IKeyringPair;194195 before(async () => {196 await usingPlaygrounds(async (helper, privateKey) => {197 const donor = privateKey('//Alice');198 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);199 });200 });201202 itSub('Regular user cannot create new item in NFT collection', async ({helper}) => {203 const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});204 const mintTx = async () => collection.mintToken(bob, {Substrate: bob.address});205 await expect(mintTx()).to.be.rejectedWith(/common\.PublicMintingNotAllowed/);206 });207 itSub('Regular user cannot create new item in Fungible collection', async ({helper}) => {208 const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);209 const mintTx = async () => collection.mint(bob, 10n, {Substrate: bob.address});210 await expect(mintTx()).to.be.rejectedWith(/common\.PublicMintingNotAllowed/);211 });212 itSub.ifWithPallets('Regular user cannot create new item in ReFungible collection', [Pallets.ReFungible], async ({helper}) => {213 const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});214 const mintTx = async () => collection.mintToken(bob, 100n, {Substrate: bob.address});215 await expect(mintTx()).to.be.rejectedWith(/common\.PublicMintingNotAllowed/);216 });217218 itSub('No editing rights', async ({helper}) => {219 const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL',220 tokenPropertyPermissions: [{key: 'k', permission: {mutable: false, collectionAdmin: false, tokenOwner: false}}],221 });222 const mintTx = async () => collection.mintToken(alice, {Substrate: bob.address}, [{key: 'k', value: 'v'}]);223 await expect(mintTx()).to.be.rejectedWith(/common\.NoPermission/);224 });225226 itSub('User doesnt have editing rights', async ({helper}) => {227 const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL',228 tokenPropertyPermissions: [{key: 'k', permission: {mutable: true, collectionAdmin: false, tokenOwner: false}}],229 });230 const mintTx = async () => collection.mintToken(alice, {Substrate: bob.address}, [{key: 'k', value: 'v'}]);231 await expect(mintTx()).to.be.rejectedWith(/common\.NoPermission/);232 });233234 itSub('Adding property without access rights', async ({helper}) => {235 const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});236 const mintTx = async () => collection.mintToken(alice, {Substrate: bob.address}, [{key: 'k', value: 'v'}]);237 await expect(mintTx()).to.be.rejectedWith(/common\.NoPermission/);238 });239240 itSub('Adding more than 64 prps', async ({helper}) => {241 const props: IProperty[] = [];242243 for (let i = 0; i < 65; i++) {244 props.push({key: `key${i}`, value: `value${i}`});245 }246247248 const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});249 const mintTx = async () => collection.mintToken(alice, {Substrate: bob.address}, props);250 await expect(mintTx()).to.be.rejectedWith('Verification Error');251 });252253 itSub('Trying to add bigger property than allowed', async ({helper}) => {254 const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL',255 tokenPropertyPermissions: [256 {key: 'k1', permission: {mutable: true, collectionAdmin: true, tokenOwner: true}},257 {key: 'k2', permission: {mutable: true, collectionAdmin: true, tokenOwner: true}},258 ],259 });260 const mintTx = async () => collection.mintToken(alice, {Substrate: bob.address}, [261 {key: 'k1', value: 'vvvvvv'.repeat(5000)},262 {key: 'k2', value: 'vvv'.repeat(5000)},263 ]);264 await expect(mintTx()).to.be.rejectedWith(/common\.NoSpaceForProperty/);265 });266267 itSub('Check total pieces for invalid Fungible token', async ({helper}) => {268 const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);269 const invalidTokenId = 1_000_000;270 expect((await helper.api?.rpc.unique.totalPieces(collection.collectionId, invalidTokenId))?.isNone).to.be.true;271 expect((await helper.api?.rpc.unique.tokenData(collection.collectionId, invalidTokenId))?.pieces.toBigInt()).to.be.equal(0n);272 });273274 itSub('Check total pieces for invalid NFT token', async ({helper}) => {275 const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});276 const invalidTokenId = 1_000_000;277 expect((await helper.api?.rpc.unique.totalPieces(collection.collectionId, invalidTokenId))?.isNone).to.be.true;278 expect((await helper.api?.rpc.unique.tokenData(collection.collectionId, invalidTokenId))?.pieces.toBigInt()).to.be.equal(0n);279 });280281 itSub.ifWithPallets('Check total pieces for invalid Refungible token', [Pallets.ReFungible], async ({helper}) => {282 const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});283 const invalidTokenId = 1_000_000;284 expect((await helper.api?.rpc.unique.totalPieces(collection.collectionId, invalidTokenId))?.isNone).to.be.true;285 expect((await helper.api?.rpc.unique.tokenData(collection.collectionId, invalidTokenId))?.pieces.toBigInt()).to.be.equal(0n);286 });287});