git.delta.rocks / unique-network / refs/commits / 3069e4dc18ce

difftreelog

add helpers & fix replace mistakes

rkv2022-09-20parent: #bc53a7e.patch.diff
in: master

6 files changed

modifiedtests/src/allowLists.test.tsdiffbeforeafterboth
1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
2// This file is part of Unique Network.2// This file is part of Unique Network.
33
4// Unique Network is free software: you can redistribute itSub and/or modify4// Unique Network is free software: you can redistribute it and/or modify
5// itSub under the terms of the GNU General Public License as published by5// it under the terms of the GNU General Public License as published by
6// the Free Software Foundation, either version 3 of the License, or6// the Free Software Foundation, either version 3 of the License, or
7// (at your option) any later version.7// (at your option) any later version.
88
9// Unique Network is distributed in the hope that itSub will be useful,9// Unique Network is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.12// GNU General Public License for more details.
modifiedtests/src/change-collection-owner.test.tsdiffbeforeafterboth
1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
2// This file is part of Unique Network.2// This file is part of Unique Network.
33
4// Unique Network is free software: you can redistribute itSub and/or modify4// Unique Network is free software: you can redistribute it and/or modify
5// itSub under the terms of the GNU General Public License as published by5// it under the terms of the GNU General Public License as published by
6// the Free Software Foundation, either version 3 of the License, or6// the Free Software Foundation, either version 3 of the License, or
7// (at your option) any later version.7// (at your option) any later version.
88
9// Unique Network is distributed in the hope that itSub will be useful,9// Unique Network is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.12// GNU General Public License for more details.
modifiedtests/src/confirmSponsorship.test.tsdiffbeforeafterboth
1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
2// This file is part of Unique Network.2// This file is part of Unique Network.
33
4// Unique Network is free software: you can redistribute itSub and/or modify4// Unique Network is free software: you can redistribute it and/or modify
5// itSub under the terms of the GNU General Public License as published by5// it under the terms of the GNU General Public License as published by
6// the Free Software Foundation, either version 3 of the License, or6// the Free Software Foundation, either version 3 of the License, or
7// (at your option) any later version.7// (at your option) any later version.
88
9// Unique Network is distributed in the hope that itSub will be useful,9// Unique Network is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.12// GNU General Public License for more details.
17import {IKeyringPair} from '@polkadot/types/types';17import {IKeyringPair} from '@polkadot/types/types';
18import {usingPlaygrounds, expect, itSub, Pallets} from './util/playgrounds';18import {usingPlaygrounds, expect, itSub, Pallets} from './util/playgrounds';
19
20async function setSponsorHelper(collection: any, signer: IKeyringPair, sponsorAddress: string) {
21 await collection.setSponsor(signer, sponsorAddress);
22 const raw = (await collection.getData())?.raw;
23 expect(raw.sponsorship.Unconfirmed).to.be.equal(sponsorAddress);
24}
25
26async function confirmSponsorHelper(collection: any, signer: IKeyringPair) {
27 await collection.confirmSponsorship(signer);
28 const raw = (await collection.getData())?.raw;
29 expect(raw.sponsorship.Confirmed).to.be.equal(signer.address);
30}
1931
20describe('integration test: ext. confirmSponsorship():', () => {32describe('integration test: ext. confirmSponsorship():', () => {
21 let alice: IKeyringPair;33 let alice: IKeyringPair;
3244
33 itSub('Confirm collection sponsorship', async ({helper}) => {45 itSub('Confirm collection sponsorship', async ({helper}) => {
34 const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});46 const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
35 await collection.setSponsor(alice, bob.address);47 await setSponsorHelper(collection, alice, bob.address);
36 await collection.confirmSponsorship(bob);48 await confirmSponsorHelper(collection, bob);
37 });49 });
3850
39 itSub('Add sponsor to a collection after the same sponsor was already added and confirmed', async ({helper}) => {51 itSub('Add sponsor to a collection after the same sponsor was already added and confirmed', async ({helper}) => {
40 const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});52 const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
41 await collection.setSponsor(alice, bob.address);53 await setSponsorHelper(collection, alice, bob.address);
42 await collection.confirmSponsorship(bob);54 await confirmSponsorHelper(collection, bob);
43 await collection.setSponsor(alice, bob.address);55 await setSponsorHelper(collection, alice, bob.address);
44 });56 });
45 itSub('Add new sponsor to a collection after another sponsor was already added and confirmed', async ({helper}) => {57 itSub('Add new sponsor to a collection after another sponsor was already added and confirmed', async ({helper}) => {
46 const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});58 const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
47 await collection.setSponsor(alice, bob.address);59 await setSponsorHelper(collection, alice, bob.address);
48 await collection.confirmSponsorship(bob);60 await confirmSponsorHelper(collection, bob);
49 await collection.setSponsor(alice, charlie.address);61 await setSponsorHelper(collection, alice, charlie.address);
50 });62 });
5163
52 itSub('NFT: Transfer fees are paid by the sponsor after confirmation', async ({helper}) => {64 itSub('NFT: Transfer fees are paid by the sponsor after confirmation', async ({helper}) => {
modifiedtests/src/createCollection.test.tsdiffbeforeafterboth
1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
2// This file is part of Unique Network.2// This file is part of Unique Network.
33
4// Unique Network is free software: you can redistribute itSub and/or modify4// Unique Network is free software: you can redistribute it and/or modify
5// itSub under the terms of the GNU General Public License as published by5// it under the terms of the GNU General Public License as published by
6// the Free Software Foundation, either version 3 of the License, or6// the Free Software Foundation, either version 3 of the License, or
7// (at your option) any later version.7// (at your option) any later version.
88
9// Unique Network is distributed in the hope that itSub will be useful,9// Unique Network is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.12// GNU General Public License for more details.
1616
17import {usingPlaygrounds, expect, itSub, Pallets} from './util/playgrounds';17import {usingPlaygrounds, expect, itSub, Pallets} from './util/playgrounds';
18import {IKeyringPair} from '@polkadot/types/types';18import {IKeyringPair} from '@polkadot/types/types';
19import {IProperty} from './util/playgrounds/types';19import {ICollectionCreationOptions, IProperty} from './util/playgrounds/types';
20import {DevUniqueHelper} from './util/playgrounds/unique.dev';
21
22async function mintCollectionHelper(helper: DevUniqueHelper, signer: IKeyringPair, options: ICollectionCreationOptions, type?: 'nft' | 'fungible' | 'refungible') {
23 let collection;
24 if (type === 'nft') {
25 collection = await helper.nft.mintCollection(signer, options);
26 } else if (type === 'fungible') {
27 collection = await helper.ft.mintCollection(signer, options, 0);
28 } else {
29 collection = await helper.rft.mintCollection(signer, options);
30 }
31 const data = await collection.getData();
32 expect(data?.normalizedOwner).to.be.equal(signer.address);
33 expect(data?.name).to.be.equal(options.name);
34 expect(data?.description).to.be.equal(options.description);
35 expect(data?.raw.tokenPrefix).to.be.equal(options.tokenPrefix);
36 if (options.properties) {
37 expect(data?.raw.properties).to.be.deep.equal(options.properties);
38 }
39
40 if (options.tokenPropertyPermissions) {
41 expect(data?.raw.tokenPropertyPermissions).to.be.deep.equal(options.tokenPropertyPermissions);
42 }
43
44 return collection;
45}
2046
21describe('integration test: ext. createCollection():', () => {47describe('integration test: ext. createCollection():', () => {
22 let alice: IKeyringPair;48 let alice: IKeyringPair;
29 });55 });
30 itSub('Create new NFT collection', async ({helper}) => {56 itSub('Create new NFT collection', async ({helper}) => {
3157
32 await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});58 await mintCollectionHelper(helper, alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 'nft');
33 });59 });
34 itSub('Create new NFT collection whith collection_name of maximum length (64 bytes)', async ({helper}) => {60 itSub('Create new NFT collection whith collection_name of maximum length (64 bytes)', async ({helper}) => {
3561
36 await helper.nft.mintCollection(alice, {name: 'A'.repeat(64), description: 'descr', tokenPrefix: 'COL'});62 await mintCollectionHelper(helper, alice, {name: 'A'.repeat(64), description: 'descr', tokenPrefix: 'COL'}, 'nft');
37 });63 });
38 itSub('Create new NFT collection whith collection_description of maximum length (256 bytes)', async ({helper}) => {64 itSub('Create new NFT collection whith collection_description of maximum length (256 bytes)', async ({helper}) => {
3965
40 await helper.nft.mintCollection(alice, {name: 'name', description: 'A'.repeat(256), tokenPrefix: 'COL'});66 await mintCollectionHelper(helper, alice, {name: 'name', description: 'A'.repeat(256), tokenPrefix: 'COL'}, 'nft');
41 });67 });
42 itSub('Create new NFT collection whith token_prefix of maximum length (16 bytes)', async ({helper}) => {68 itSub('Create new NFT collection whith token_prefix of maximum length (16 bytes)', async ({helper}) => {
4369
44 await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'A'.repeat(16)});70 await mintCollectionHelper(helper, alice, {name: 'name', description: 'descr', tokenPrefix: 'A'.repeat(16)}, 'nft');
45 });71 });
46 itSub('Create new Fungible collection', async ({helper}) => {72 itSub('Create new Fungible collection', async ({helper}) => {
4773
48 await helper.ft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL'}, 0);74 await mintCollectionHelper(helper, alice, {name: 'name', description: 'descr', tokenPrefix: 'COL'}, 'fungible');
49 });75 });
50 itSub.ifWithPallets('Create new ReFungible collection', [Pallets.ReFungible], async ({helper}) => {76 itSub.ifWithPallets('Create new ReFungible collection', [Pallets.ReFungible], async ({helper}) => {
5177
52 await helper.rft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL'});78 await mintCollectionHelper(helper, alice, {name: 'name', description: 'descr', tokenPrefix: 'COL'}, 'refungible');
53 });79 });
5480
55 itSub('create new collection with properties', async ({helper}) => {81 itSub('create new collection with properties', async ({helper}) => {
5682
57 await helper.nft.mintCollection(alice, {83 await mintCollectionHelper(helper, alice, {
58 name: 'name', description: 'descr', tokenPrefix: 'COL',84 name: 'name', description: 'descr', tokenPrefix: 'COL',
59 properties: [{key: 'key1', value: 'val1'}],85 properties: [{key: 'key1', value: 'val1'}],
60 tokenPropertyPermissions: [{key: 'key1', permission: {tokenOwner: true, mutable: false, collectionAdmin: true}}],86 tokenPropertyPermissions: [{key: 'key1', permission: {tokenOwner: true, mutable: false, collectionAdmin: true}}],
61 });87 }, 'nft');
62 });88 });
6389
64 itSub('Create new collection with extra fields', async ({helper}) => {90 itSub('Create new collection with extra fields', async ({helper}) => {
6591
66 const collection = await helper.ft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL'}, 8);92 const collection = await mintCollectionHelper(helper, alice, {name: 'name', description: 'descr', tokenPrefix: 'COL'}, 'fungible');
67 await collection.setPermissions(alice, {access: 'AllowList'});93 await collection.setPermissions(alice, {access: 'AllowList'});
68 await collection.setLimits(alice, {accountTokenOwnershipLimit: 3});94 await collection.setLimits(alice, {accountTokenOwnershipLimit: 3});
69 const data = await collection.getData();95 const data = await collection.getData();
74 expect(data?.name).to.be.equal('name');100 expect(data?.name).to.be.equal('name');
75 expect(data?.description).to.be.equal('descr');101 expect(data?.description).to.be.equal('descr');
76 expect(raw.permissions.access).to.be.equal('AllowList');102 expect(raw.permissions.access).to.be.equal('AllowList');
77 expect(raw.mode).to.be.deep.equal({Fungible: '8'});103 expect(raw.mode).to.be.deep.equal({Fungible: '0'});
78 expect(limits.accountTokenOwnershipLimit).to.be.equal(3);104 expect(limits.accountTokenOwnershipLimit).to.be.equal(3);
79 });105 });
80106
modifiedtests/src/createItem.test.tsdiffbeforeafterboth
1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
2// This file is part of Unique Network.2// This file is part of Unique Network.
33
4// Unique Network is free software: you can redistribute itSub and/or modify4// Unique Network is free software: you can redistribute it and/or modify
5// itSub under the terms of the GNU General Public License as published by5// it under the terms of the GNU General Public License as published by
6// the Free Software Foundation, either version 3 of the License, or6// the Free Software Foundation, either version 3 of the License, or
7// (at your option) any later version.7// (at your option) any later version.
88
9// Unique Network is distributed in the hope that itSub will be useful,9// Unique Network is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.12// GNU General Public License for more details.
21 itApi,21 itApi,
22 normalizeAccountId,22 normalizeAccountId,
23 getCreateItemResult,23 getCreateItemResult,
24 CrossAccountId,
24} from './util/helpers';25} from './util/helpers';
2526
26import {usingPlaygrounds, expect, itSub, Pallets} from './util/playgrounds';27import {usingPlaygrounds, expect, itSub, Pallets} from './util/playgrounds';
27import {IProperty} from './util/playgrounds/types';28import {IProperty} from './util/playgrounds/types';
28import {executeTransaction} from './substrate/substrate-api';29import {executeTransaction} from './substrate/substrate-api';
30import {DevUniqueHelper} from './util/playgrounds/unique.dev';
31
32async 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 }
43
44 const itemCountAfter = await helper.collection.getLastTokenId(collection.collectionId);
45 const itemBalanceAfter = (await helper.api!.rpc.unique.balance(collection.collectionId, owner, 0)).toBigInt();
46
47 if (type === 'fungible') {
48 expect(itemBalanceAfter - itemBalanceBefore).to.be.equal(10n);
49 } else {
50 expect(itemCountAfter).to.be.equal(itemCountBefore + 1);
51 }
52
53 return token;
54}
2955
3056
31describe('integration test: ext. ():', () => {57describe('integration test: ext. ():', () => {
4167
42 itSub('Create new item in NFT collection', async ({helper}) => {68 itSub('Create new item in NFT collection', async ({helper}) => {
43 const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});69 const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
44 await collection.mintToken(alice, {Substrate: alice.address});70 await mintTokenHelper(helper, collection, alice, {Substrate: alice.address});
45 });71 });
46 itSub('Create new item in Fungible collection', async ({helper}) => {72 itSub('Create new item in Fungible collection', async ({helper}) => {
47 const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);73 const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);
48 await collection.mint(alice, 10n, {Substrate: alice.address});74 await mintTokenHelper(helper, collection, alice, {Substrate: alice.address}, 'fungible');
49 });75 });
50 itApi.skip('Check events on create new item in Fungible collection', async ({api}) => {76 itSub('Check events on create new item in Fungible collection', async ({helper}) => {
51 const createMode = 'Fungible';
52
53 const newCollectionID = (await createCollection(api, alice, {mode: {type: createMode, decimalPoints: 0}})).collectionId;77 const {collectionId} = await helper.ft.mintCollection(alice, {name: 'test', description: 'test', tokenPrefix: 'test'}, 0);
78 const api = helper.api!;
79
5480
55 const to = normalizeAccountId(alice);81 const to = normalizeAccountId(alice);
56 {82 {
57 const createData = {fungible: {value: 100}};83 const createData = {fungible: {value: 100}};
58 const tx = api.tx.unique.createItem(newCollectionID, to, createData as any);84 const tx = api.tx.unique.createItem(collectionId, to, createData as any);
59 const events = await executeTransaction(api, alice, tx);85 const events = await executeTransaction(api, alice, tx);
60 const result = getCreateItemResult(events);86 const result = getCreateItemResult(events);
61 expect(result.amount).to.be.equal(100);87 expect(result.amount).to.be.equal(100);
62 expect(result.collectionId).to.be.equal(newCollectionID);88 expect(result.collectionId).to.be.equal(collectionId);
63 expect(result.recipient).to.be.deep.equal(to);89 expect(result.recipient).to.be.deep.equal(to);
64 }90 }
65 {91 {
66 const createData = {fungible: {value: 50}};92 const createData = {fungible: {value: 50}};
67 const tx = api.tx.unique.createItem(newCollectionID, to, createData as any);93 const tx = api.tx.unique.createItem(collectionId, to, createData as any);
68 const events = await executeTransaction(api, alice, tx);94 const events = await executeTransaction(api, alice, tx);
69 const result = getCreateItemResult(events);95 const result = getCreateItemResult(events);
70 expect(result.amount).to.be.equal(50);96 expect(result.amount).to.be.equal(50);
71 expect(result.collectionId).to.be.equal(newCollectionID);97 expect(result.collectionId).to.be.equal(collectionId);
72 expect(result.recipient).to.be.deep.equal(to);98 expect(result.recipient).to.be.deep.equal(to);
73 }99 }
74 });100 });
75 itSub.ifWithPallets('Create new item in ReFungible collection', [Pallets.ReFungible], async ({helper}) => {101 itSub.ifWithPallets('Create new item in ReFungible collection', [Pallets.ReFungible], async ({helper}) => {
76 const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});102 const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
77 await collection.mintToken(alice, 100n, {Substrate: alice.address});103 await mintTokenHelper(helper, collection, alice, {Substrate: alice.address}, 'refungible');
78 });104 });
79 itSub('Create new item in NFT collection with collection admin permissions', async ({helper}) => {105 itSub('Create new item in NFT collection with collection admin permissions', async ({helper}) => {
80 const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});106 const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
81 await collection.addAdmin(alice, {Substrate: bob.address});107 await collection.addAdmin(alice, {Substrate: bob.address});
82 await collection.mintToken(bob, {Substrate: alice.address});108 await mintTokenHelper(helper, collection, bob, {Substrate: alice.address});
83 });109 });
84 itSub('Create new item in Fungible collection with collection admin permissions', async ({helper}) => {110 itSub('Create new item in Fungible collection with collection admin permissions', async ({helper}) => {
85 const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);111 const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);
86 await collection.addAdmin(alice, {Substrate: bob.address});112 await collection.addAdmin(alice, {Substrate: bob.address});
87 await collection.mint(bob, 10n, {Substrate: alice.address});113 await mintTokenHelper(helper, collection, bob, {Substrate: alice.address}, 'fungible');
88 });114 });
89 itSub.ifWithPallets('Create new item in ReFungible collection with collection admin permissions', [Pallets.ReFungible], async ({helper}) => {115 itSub.ifWithPallets('Create new item in ReFungible collection with collection admin permissions', [Pallets.ReFungible], async ({helper}) => {
90 const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});116 const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
91 await collection.addAdmin(alice, {Substrate: bob.address});117 await collection.addAdmin(alice, {Substrate: bob.address});
92 await collection.mintToken(bob, 100n, {Substrate: alice.address});118 await mintTokenHelper(helper, collection, bob, {Substrate: alice.address}, 'refungible');
93 });119 });
94120
95 itSub('Set property Admin', async ({helper}) => {121 itSub('Set property Admin', async ({helper}) => {
96 const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL',122 const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL',
97 properties: [{key: 'k', value: 'v'}],123 properties: [{key: 'k', value: 'v'}],
98 tokenPropertyPermissions: [{key: 'k', permission: {tokenOwner: false, mutable: true, collectionAdmin: true}}],124 tokenPropertyPermissions: [{key: 'k', permission: {tokenOwner: false, mutable: true, collectionAdmin: true}}],
99 });125 });
100 await collection.mintToken(alice, {Substrate: bob.address}, [{key: 'k', value: 'v'}]);126 await mintTokenHelper(helper, collection, alice, {Substrate: bob.address}, 'nft', [{key: 'k', value: 'v'}]);
101 });127 });
102128
103 itSub('Set property AdminConst', async ({helper}) => {129 itSub('Set property AdminConst', async ({helper}) => {
104 const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL',130 const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL',
105 properties: [{key: 'k', value: 'v'}],131 properties: [{key: 'k', value: 'v'}],
106 tokenPropertyPermissions: [{key: 'k', permission: {tokenOwner: false, mutable: false, collectionAdmin: true}}],132 tokenPropertyPermissions: [{key: 'k', permission: {tokenOwner: false, mutable: false, collectionAdmin: true}}],
107 });133 });
108 await collection.mintToken(alice, {Substrate: bob.address}, [{key: 'k', value: 'v'}]);134 await mintTokenHelper(helper, collection, alice, {Substrate: bob.address}, 'nft', [{key: 'k', value: 'v'}]);
109 });135 });
110136
111 itSub('Set property itemOwnerOrAdmin', async ({helper}) => {137 itSub('Set property itemOwnerOrAdmin', async ({helper}) => {
112 const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL',138 const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL',
113 properties: [{key: 'k', value: 'v'}],139 properties: [{key: 'k', value: 'v'}],
114 tokenPropertyPermissions: [{key: 'k', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}}],140 tokenPropertyPermissions: [{key: 'k', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}}],
115 });141 });
116 await collection.mintToken(alice, {Substrate: bob.address}, [{key: 'k', value: 'v'}]);142 await mintTokenHelper(helper, collection, alice, {Substrate: bob.address}, 'nft', [{key: 'k', value: 'v'}]);
117 });143 });
118144
119 itSub('Check total pieces of Fungible token', async ({helper}) => {145 itSub('Check total pieces of Fungible token', async ({helper}) => {
120 const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);146 const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);
121 const amount = 10n;147 const amount = 10n;
122 await collection.mint(alice, amount, {Substrate: bob.address});148 await mintTokenHelper(helper, collection, alice, {Substrate: bob.address}, 'fungible');
123 {149 {
124 const totalPieces = await collection.getTotalPieces();150 const totalPieces = await collection.getTotalPieces();
125 expect(totalPieces).to.be.equal(amount);151 expect(totalPieces).to.be.equal(amount);
134 itSub('Check total pieces of NFT token', async ({helper}) => {160 itSub('Check total pieces of NFT token', async ({helper}) => {
135 const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});161 const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
136 const amount = 1n;162 const amount = 1n;
137 const token = await collection.mintToken(alice, {Substrate: bob.address});163 const token = await mintTokenHelper(helper, collection, alice, {Substrate: bob.address});
138 {164 {
139 const totalPieces = await helper.api?.rpc.unique.totalPieces(collection.collectionId, token.tokenId);165 const totalPieces = await helper.api?.rpc.unique.totalPieces(collection.collectionId, token.tokenId);
140 expect(totalPieces?.unwrap().toBigInt()).to.be.equal(amount);166 expect(totalPieces?.unwrap().toBigInt()).to.be.equal(amount);
149 itSub.ifWithPallets('Check total pieces of ReFungible token', [Pallets.ReFungible], async ({helper}) => {175 itSub.ifWithPallets('Check total pieces of ReFungible token', [Pallets.ReFungible], async ({helper}) => {
150 const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});176 const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
151 const amount = 100n;177 const amount = 100n;
152 const token = await collection.mintToken(alice, amount, {Substrate: bob.address});178 const token = await mintTokenHelper(helper, collection, alice, {Substrate: bob.address}, 'refungible');
153 {179 {
154 const totalPieces = await token.getTotalPieces();180 const totalPieces = await token.getTotalPieces();
155 expect(totalPieces).to.be.equal(amount);181 expect(totalPieces).to.be.equal(amount);
modifiedtests/src/createMultipleItems.test.tsdiffbeforeafterboth
1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
2// This file is part of Unique Network.2// This file is part of Unique Network.
33
4// Unique Network is free software: you can redistribute itSub and/or modify4// Unique Network is free software: you can redistribute it and/or modify
5// itSub under the terms of the GNU General Public License as published by5// it under the terms of the GNU General Public License as published by
6// the Free Software Foundation, either version 3 of the License, or6// the Free Software Foundation, either version 3 of the License, or
7// (at your option) any later version.7// (at your option) any later version.
88
9// Unique Network is distributed in the hope that itSub will be useful,9// Unique Network is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.12// GNU General Public License for more details.