difftreelog
Fix after review
in: master
Accounts moved inside describe
4 files changed
tests/src/burnItem.test.tsdiffbeforeafterboth--- a/tests/src/burnItem.test.ts
+++ b/tests/src/burnItem.test.ts
@@ -17,11 +17,12 @@
import {IKeyringPair} from '@polkadot/types/types';
import {expect, itSub, Pallets, usingPlaygrounds} from './util/playgrounds';
-let donor: IKeyringPair;
-let alice: IKeyringPair;
-let bob: IKeyringPair;
describe('integration test: ext. burnItem():', () => {
+ let donor: IKeyringPair;
+ let alice: IKeyringPair;
+ let bob: IKeyringPair;
+
before(async () => {
await usingPlaygrounds(async (helper, privateKey) => {
donor = privateKey('//Alice');
@@ -34,7 +35,7 @@
const token = await collection.mintToken(alice);
await token.burn(alice);
- expect(await token.isExist()).to.be.false;
+ expect(await token.doesExist()).to.be.false;
});
itSub('Burn item in Fungible collection', async ({helper}) => {
@@ -73,6 +74,10 @@
});
describe('integration test: ext. burnItem() with admin permissions:', () => {
+ let donor: IKeyringPair;
+ let alice: IKeyringPair;
+ let bob: IKeyringPair;
+
before(async () => {
await usingPlaygrounds(async (helper, privateKey) => {
donor = privateKey('//Alice');
@@ -87,7 +92,7 @@
const token = await collection.mintToken(alice);
await token.burnFrom(bob, {Substrate: alice.address});
- expect(await token.isExist()).to.be.false;
+ expect(await token.doesExist()).to.be.false;
});
itSub('Burn item in Fungible collection', async ({helper}) => {
@@ -107,11 +112,15 @@
const token = await collection.mintToken(alice, 100n);
await token.burnFrom(bob, {Substrate: alice.address}, 100n);
- expect(await token.isExist()).to.be.false;
+ expect(await token.doesExist()).to.be.false;
});
});
describe('Negative integration test: ext. burnItem():', () => {
+ let donor: IKeyringPair;
+ let alice: IKeyringPair;
+ let bob: IKeyringPair;
+
before(async () => {
await usingPlaygrounds(async (helper, privateKey) => {
donor = privateKey('//Alice');
tests/src/fungible.test.tsdiffbeforeafterboth101 const collection = await helper.ft.mintCollection(alice, {name: 'test', description: 'test', tokenPrefix: 'test'});101 const collection = await helper.ft.mintCollection(alice, {name: 'test', description: 'test', tokenPrefix: 'test'});102 await collection.mint(alice, 500n);102 await collection.mint(alice, 500n);103103104 expect(await collection.isTokenExists(0)).to.be.true;104 expect(await collection.doesTokenExist(0)).to.be.true;105 expect(await collection.getBalance({Substrate: alice.address})).to.be.equal(500n);105 expect(await collection.getBalance({Substrate: alice.address})).to.be.equal(500n);106 expect(await collection.burnTokens(alice, 499n)).to.be.true;106 expect(await collection.burnTokens(alice, 499n)).to.be.true;107 expect(await collection.isTokenExists(0)).to.be.true;107 expect(await collection.doesTokenExist(0)).to.be.true;108 expect(await collection.getBalance({Substrate: alice.address})).to.be.equal(1n);108 expect(await collection.getBalance({Substrate: alice.address})).to.be.equal(1n);109 });109 });110 110 111 itSub('Burn all tokens ', async ({helper}) => {111 itSub('Burn all tokens ', async ({helper}) => {112 const collection = await helper.ft.mintCollection(alice, {name: 'test', description: 'test', tokenPrefix: 'test'});112 const collection = await helper.ft.mintCollection(alice, {name: 'test', description: 'test', tokenPrefix: 'test'});113 await collection.mint(alice, 500n);113 await collection.mint(alice, 500n);114114115 expect(await collection.isTokenExists(0)).to.be.true;115 expect(await collection.doesTokenExist(0)).to.be.true;116 expect(await collection.burnTokens(alice, 500n)).to.be.true;116 expect(await collection.burnTokens(alice, 500n)).to.be.true;117 expect(await collection.isTokenExists(0)).to.be.true;117 expect(await collection.doesTokenExist(0)).to.be.true;118118119 expect(await collection.getBalance({Substrate: alice.address})).to.be.equal(0n);119 expect(await collection.getBalance({Substrate: alice.address})).to.be.equal(0n);120 expect(await collection.getTotalPieces()).to.be.equal(0n);120 expect(await collection.getTotalPieces()).to.be.equal(0n);tests/src/refungible.test.tsdiffbeforeafterboth--- a/tests/src/refungible.test.ts
+++ b/tests/src/refungible.test.ts
@@ -122,10 +122,10 @@
itSub('Burn some pieces', async ({helper}) => {
const collection = await helper.rft.mintCollection(alice, {name: 'test', description: 'test', tokenPrefix: 'test'});
const token = await collection.mintToken(alice, 100n);
- expect(await collection.isTokenExists(token.tokenId)).to.be.true;
+ expect(await collection.doesTokenExist(token.tokenId)).to.be.true;
expect(await token.getBalance({Substrate: alice.address})).to.be.equal(100n);
expect(await token.burn(alice, 99n)).to.be.true;
- expect(await collection.isTokenExists(token.tokenId)).to.be.true;
+ expect(await collection.doesTokenExist(token.tokenId)).to.be.true;
expect(await token.getBalance({Substrate: alice.address})).to.be.equal(1n);
});
@@ -133,18 +133,18 @@
const collection = await helper.rft.mintCollection(alice, {name: 'test', description: 'test', tokenPrefix: 'test'});
const token = await collection.mintToken(alice, 100n);
- expect(await collection.isTokenExists(token.tokenId)).to.be.true;
+ expect(await collection.doesTokenExist(token.tokenId)).to.be.true;
expect(await token.getBalance({Substrate: alice.address})).to.be.equal(100n);
expect(await token.burn(alice, 100n)).to.be.true;
- expect(await collection.isTokenExists(token.tokenId)).to.be.false;
+ expect(await collection.doesTokenExist(token.tokenId)).to.be.false;
});
itSub('Burn some pieces for multiple users', async ({helper}) => {
const collection = await helper.rft.mintCollection(alice, {name: 'test', description: 'test', tokenPrefix: 'test'});
const token = await collection.mintToken(alice, 100n);
- expect(await collection.isTokenExists(token.tokenId)).to.be.true;
+ expect(await collection.doesTokenExist(token.tokenId)).to.be.true;
expect(await token.getBalance({Substrate: alice.address})).to.be.equal(100n);
expect(await token.transfer(alice, {Substrate: bob.address}, 60n)).to.be.true;
@@ -154,17 +154,17 @@
expect(await token.burn(alice, 40n)).to.be.true;
- expect(await collection.isTokenExists(token.tokenId)).to.be.true;
+ expect(await collection.doesTokenExist(token.tokenId)).to.be.true;
expect(await token.getBalance({Substrate: alice.address})).to.be.equal(0n);
expect(await token.burn(bob, 59n)).to.be.true;
expect(await token.getBalance({Substrate: bob.address})).to.be.equal(1n);
- expect(await collection.isTokenExists(token.tokenId)).to.be.true;
+ expect(await collection.doesTokenExist(token.tokenId)).to.be.true;
expect(await token.burn(bob, 1n)).to.be.true;
- expect(await collection.isTokenExists(token.tokenId)).to.be.false;
+ expect(await collection.doesTokenExist(token.tokenId)).to.be.false;
});
itSub('Set allowance for token', async ({helper}) => {
tests/src/util/playgrounds/unique.tsdiffbeforeafterboth--- a/tests/src/util/playgrounds/unique.ts
+++ b/tests/src/util/playgrounds/unique.ts
@@ -1114,10 +1114,10 @@
*
* @param collectionId ID of collection
* @param tokenId ID of token
- * @example isTokenExists(10, 20);
+ * @example doesTokenExist(10, 20);
* @returns true if the token exists, otherwise false
*/
- async isTokenExists(collectionId: number, tokenId: number): Promise<boolean> {
+ async doesTokenExist(collectionId: number, tokenId: number): Promise<boolean> {
return (await this.helper.callRpc('api.rpc.unique.tokenExists', [collectionId, tokenId])).toJSON();
}
}
@@ -2277,8 +2277,8 @@
return await this.helper.collection.getLastTokenId(this.collectionId);
}
- async isTokenExists(tokenId: number) {
- return await this.helper.collection.isTokenExists(this.collectionId, tokenId);
+ async doesTokenExist(tokenId: number) {
+ return await this.helper.collection.doesTokenExist(this.collectionId, tokenId);
}
async getAdmins() {
@@ -2607,8 +2607,8 @@
return await this.collection.deleteTokenProperties(signer, this.tokenId, propertyKeys);
}
- async isExist() {
- return await this.collection.isTokenExists(this.tokenId);
+ async doesExist() {
+ return await this.collection.doesTokenExist(this.tokenId);
}
nestingAccount() {