difftreelog
feat tests requirePallets
in: master
21 files changed
tests/src/rmrk/acceptNft.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/acceptNft.test.ts
+++ b/tests/src/rmrk/acceptNft.test.ts
@@ -8,13 +8,13 @@
} from './util/tx';
import {NftIdTuple} from './util/fetch';
import {isNftChildOfAnother, expectTxFailure} from './util/helpers';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
describe('integration test: accept NFT', () => {
let api: any;
before(async function() {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
tests/src/rmrk/addResource.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/addResource.test.ts
+++ b/tests/src/rmrk/addResource.test.ts
@@ -12,7 +12,7 @@
addNftComposableResource,
} from './util/tx';
import {RmrkTraitsResourceResourceInfo as ResourceInfo} from '@polkadot/types/lookup';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
describe('integration test: add NFT resource', () => {
const Alice = '//Alice';
@@ -27,7 +27,7 @@
let api: any;
before(async function() {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
it('add resource', async () => {
tests/src/rmrk/addTheme.test.tsdiffbeforeafterboth1import {expect} from 'chai';2import {getApiConnection} from '../substrate/substrate-api';3import {createBase, addTheme} from './util/tx';4import {expectTxFailure} from './util/helpers';5import {getThemeNames} from './util/fetch';6import { getModuleNames, Pallets } from '../util/helpers';78describe('integration test: add Theme to Base', () => {9 let api: any;10 before(async function() {11 api = await getApiConnection();12 if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();13 });1415 const alice = '//Alice';16 const bob = '//Bob';1718 it('add default theme', async () => {19 const baseId = await createBase(api, alice, 'default-themed-base', 'DTBase', []);20 await addTheme(api, alice, baseId, {21 name: 'default',22 properties: [23 {24 key: 'some-key',25 value: 'some-key-value',26 },27 {28 key: 'another-key',29 value: 'another-key-value',30 },31 ],32 });33 });3435 it('add default theme and a custom one', async () => {36 const baseId = await createBase(api, alice, '2-themed-base', '2TBase', []);37 await addTheme(api, alice, baseId, {38 name: 'default',39 properties: [40 {41 key: 'default-key',42 value: 'default-key-value',43 },44 ],45 });46 await addTheme(api, alice, baseId, {47 name: 'custom-theme',48 properties: [49 {50 key: 'custom-key-0',51 value: 'custom-key-value-0',52 },53 {54 key: 'custom-key-1',55 value: 'custom-key-value-1',56 },57 ],58 });59 });6061 it('fetch filtered theme keys', async () => {62 const baseId = await createBase(api, alice, '2-themed-base', '2TBase', []);63 await addTheme(api, alice, baseId, {64 name: 'default',65 properties: [66 {67 key: 'first-key',68 value: 'first-key-value',69 },70 {71 key: 'second-key',72 value: 'second-key-value',73 },74 ],75 }, ['second-key']);76 });7778 it('fetch theme names', async() => {79 const baseId = await createBase(api, alice, '3-themed-base', '3TBase', []);80 const names = [81 'default',82 'first-theme',83 'second-theme',84 ];8586 for (let i = 0; i < names.length; i++) {87 await addTheme(api, alice, baseId, {name: names[i], properties: [{key: 'dummy', value: 'dummy'}]});88 }8990 const fetchedNames = await getThemeNames(api, baseId);9192 for (let i = 0; i < names.length; i++) {93 const isFound = fetchedNames.find((name) => name === names[i]) !== undefined;9495 expect(isFound, 'Error: invalid theme names').to.be.true;96 }97 });9899 it('[negative] unable to add theme to non-existing base', async () => {100 const maxBaseId = 0xFFFFFFFF;101 const tx = addTheme(api, alice, maxBaseId, {102 name: 'default',103 properties: [],104 });105106 await expectTxFailure(/rmrkEquip\.BaseDoesntExist/, tx);107 });108109 it('[negative] unable to add custom theme if no default theme', async () => {110 const baseId = await createBase(api, alice, 'no-default-themed-base', 'NDTBase', []);111 const tx = addTheme(api, alice, baseId, {112 name: 'custom-theme',113 properties: [],114 });115116 await expectTxFailure(/rmrkEquip\.NeedsDefaultThemeFirst/, tx);117 });118119 it('[negative] unable to add theme by a not-an-owner', async () => {120 const baseId = await createBase(api, alice, 'no-default-themed-base', 'NDTBase', []);121 const tx = addTheme(api, bob, baseId, {122 name: 'default',123 properties: [],124 });125126 await expectTxFailure(/rmrkEquip\.PermissionError/, tx);127 });128129 after(() => { api.disconnect(); });130});1import {expect} from 'chai';2import {getApiConnection} from '../substrate/substrate-api';3import {createBase, addTheme} from './util/tx';4import {expectTxFailure} from './util/helpers';5import {getThemeNames} from './util/fetch';6import { requirePallets, Pallets } from '../util/helpers';78describe('integration test: add Theme to Base', () => {9 let api: any;10 before(async function() {11 api = await getApiConnection();12 requirePallets(this, api, [Pallets.RmrkEquip]);13 });1415 const alice = '//Alice';16 const bob = '//Bob';1718 it('add default theme', async () => {19 const baseId = await createBase(api, alice, 'default-themed-base', 'DTBase', []);20 await addTheme(api, alice, baseId, {21 name: 'default',22 properties: [23 {24 key: 'some-key',25 value: 'some-key-value',26 },27 {28 key: 'another-key',29 value: 'another-key-value',30 },31 ],32 });33 });3435 it('add default theme and a custom one', async () => {36 const baseId = await createBase(api, alice, '2-themed-base', '2TBase', []);37 await addTheme(api, alice, baseId, {38 name: 'default',39 properties: [40 {41 key: 'default-key',42 value: 'default-key-value',43 },44 ],45 });46 await addTheme(api, alice, baseId, {47 name: 'custom-theme',48 properties: [49 {50 key: 'custom-key-0',51 value: 'custom-key-value-0',52 },53 {54 key: 'custom-key-1',55 value: 'custom-key-value-1',56 },57 ],58 });59 });6061 it('fetch filtered theme keys', async () => {62 const baseId = await createBase(api, alice, '2-themed-base', '2TBase', []);63 await addTheme(api, alice, baseId, {64 name: 'default',65 properties: [66 {67 key: 'first-key',68 value: 'first-key-value',69 },70 {71 key: 'second-key',72 value: 'second-key-value',73 },74 ],75 }, ['second-key']);76 });7778 it('fetch theme names', async() => {79 const baseId = await createBase(api, alice, '3-themed-base', '3TBase', []);80 const names = [81 'default',82 'first-theme',83 'second-theme',84 ];8586 for (let i = 0; i < names.length; i++) {87 await addTheme(api, alice, baseId, {name: names[i], properties: [{key: 'dummy', value: 'dummy'}]});88 }8990 const fetchedNames = await getThemeNames(api, baseId);9192 for (let i = 0; i < names.length; i++) {93 const isFound = fetchedNames.find((name) => name === names[i]) !== undefined;9495 expect(isFound, 'Error: invalid theme names').to.be.true;96 }97 });9899 it('[negative] unable to add theme to non-existing base', async () => {100 const maxBaseId = 0xFFFFFFFF;101 const tx = addTheme(api, alice, maxBaseId, {102 name: 'default',103 properties: [],104 });105106 await expectTxFailure(/rmrkEquip\.BaseDoesntExist/, tx);107 });108109 it('[negative] unable to add custom theme if no default theme', async () => {110 const baseId = await createBase(api, alice, 'no-default-themed-base', 'NDTBase', []);111 const tx = addTheme(api, alice, baseId, {112 name: 'custom-theme',113 properties: [],114 });115116 await expectTxFailure(/rmrkEquip\.NeedsDefaultThemeFirst/, tx);117 });118119 it('[negative] unable to add theme by a not-an-owner', async () => {120 const baseId = await createBase(api, alice, 'no-default-themed-base', 'NDTBase', []);121 const tx = addTheme(api, bob, baseId, {122 name: 'default',123 properties: [],124 });125126 await expectTxFailure(/rmrkEquip\.PermissionError/, tx);127 });128129 after(() => { api.disconnect(); });130});tests/src/rmrk/burnNft.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/burnNft.test.ts
+++ b/tests/src/rmrk/burnNft.test.ts
@@ -5,7 +5,7 @@
import chai from 'chai';
import chaiAsPromised from 'chai-as-promised';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
chai.use(chaiAsPromised);
const expect = chai.expect;
@@ -17,7 +17,7 @@
let api: any;
before(async function() {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
tests/src/rmrk/changeCollectionIssuer.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/changeCollectionIssuer.test.ts
+++ b/tests/src/rmrk/changeCollectionIssuer.test.ts
@@ -1,5 +1,5 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
import {expectTxFailure} from './util/helpers';
import {
changeIssuer,
@@ -13,7 +13,7 @@
let api: any;
before(async function() {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
tests/src/rmrk/createBase.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/createBase.test.ts
+++ b/tests/src/rmrk/createBase.test.ts
@@ -1,12 +1,12 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
import {createCollection, createBase} from './util/tx';
describe('integration test: create new Base', () => {
let api: any;
before(async function() {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore, Pallets.RmrkEquip]);
});
const alice = '//Alice';
tests/src/rmrk/createCollection.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/createCollection.test.ts
+++ b/tests/src/rmrk/createCollection.test.ts
@@ -1,12 +1,12 @@
import {getApiConnection} from '../substrate/substrate-api';
-import {getModuleNames, Pallets} from '../util/helpers';
+import {requirePallets, Pallets} from '../util/helpers';
import {createCollection} from './util/tx';
describe('Integration test: create new collection', () => {
let api: any;
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
tests/src/rmrk/deleteCollection.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/deleteCollection.test.ts
+++ b/tests/src/rmrk/deleteCollection.test.ts
@@ -1,5 +1,5 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
import {expectTxFailure} from './util/helpers';
import {createCollection, deleteCollection} from './util/tx';
@@ -7,7 +7,7 @@
let api: any;
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
const Alice = '//Alice';
tests/src/rmrk/equipNft.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/equipNft.test.ts
+++ b/tests/src/rmrk/equipNft.test.ts
@@ -1,7 +1,7 @@
import {ApiPromise} from '@polkadot/api';
import {expect} from 'chai';
import {getApiConnection} from '../substrate/substrate-api';
-import {getModuleNames, Pallets} from '../util/helpers';
+import {requirePallets, Pallets} from '../util/helpers';
import {getNft, getParts, NftIdTuple} from './util/fetch';
import {expectTxFailure} from './util/helpers';
import {
@@ -126,7 +126,7 @@
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore, Pallets.RmrkEquip]);
});
it('equip nft', async () => {
tests/src/rmrk/getOwnedNfts.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/getOwnedNfts.test.ts
+++ b/tests/src/rmrk/getOwnedNfts.test.ts
@@ -1,6 +1,6 @@
import {expect} from 'chai';
import {getApiConnection} from '../substrate/substrate-api';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
import {getOwnedNfts} from './util/fetch';
import {mintNft, createCollection} from './util/tx';
@@ -9,7 +9,7 @@
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
tests/src/rmrk/lockCollection.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/lockCollection.test.ts
+++ b/tests/src/rmrk/lockCollection.test.ts
@@ -1,5 +1,5 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
import {expectTxFailure} from './util/helpers';
import {createCollection, lockCollection, mintNft} from './util/tx';
@@ -11,7 +11,7 @@
let api: any;
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
it('lock collection', async () => {
tests/src/rmrk/mintNft.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/mintNft.test.ts
+++ b/tests/src/rmrk/mintNft.test.ts
@@ -1,6 +1,6 @@
import {expect} from 'chai';
import {getApiConnection} from '../substrate/substrate-api';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
import {getNft} from './util/fetch';
import {expectTxFailure} from './util/helpers';
import {createCollection, mintNft} from './util/tx';
@@ -10,7 +10,7 @@
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
tests/src/rmrk/rejectNft.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/rejectNft.test.ts
+++ b/tests/src/rmrk/rejectNft.test.ts
@@ -8,13 +8,13 @@
} from './util/tx';
import {getChildren, NftIdTuple} from './util/fetch';
import {isNftChildOfAnother, expectTxFailure} from './util/helpers';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
describe('integration test: reject NFT', () => {
let api: any;
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
tests/src/rmrk/removeResource.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/removeResource.test.ts
+++ b/tests/src/rmrk/removeResource.test.ts
@@ -1,7 +1,7 @@
import {expect} from 'chai';
import privateKey from '../substrate/privateKey';
import {executeTransaction, getApiConnection} from '../substrate/substrate-api';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
import {getNft, NftIdTuple} from './util/fetch';
import {expectTxFailure} from './util/helpers';
import {
@@ -20,7 +20,7 @@
before(async function() {
api = await getApiConnection();
ss58Format = api.registry.getChainProperties()!.toJSON().ss58Format;
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
const Alice = '//Alice';
tests/src/rmrk/rmrkIsolation.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/rmrkIsolation.test.ts
+++ b/tests/src/rmrk/rmrkIsolation.test.ts
@@ -6,7 +6,7 @@
getCreateCollectionResult,
getDetailedCollectionInfo,
getGenericResult,
- getModuleNames,
+ requirePallets,
normalizeAccountId,
Pallets,
} from '../util/helpers';
@@ -64,7 +64,7 @@
before(async function() {
await usingApi(async (api, privateKeyWrapper) => {
alice = privateKeyWrapper('//Alice');
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
});
tests/src/rmrk/sendNft.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/sendNft.test.ts
+++ b/tests/src/rmrk/sendNft.test.ts
@@ -3,13 +3,13 @@
import {createCollection, mintNft, sendNft} from './util/tx';
import {NftIdTuple} from './util/fetch';
import {isNftChildOfAnother, expectTxFailure} from './util/helpers';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
describe('integration test: send NFT', () => {
let api: any;
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
const maxNftId = 0xFFFFFFFF;
tests/src/rmrk/setCollectionProperty.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/setCollectionProperty.test.ts
+++ b/tests/src/rmrk/setCollectionProperty.test.ts
@@ -1,5 +1,5 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
import {expectTxFailure} from './util/helpers';
import {createCollection, setPropertyCollection} from './util/tx';
@@ -10,7 +10,7 @@
let api: any;
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
it('set collection property', async () => {
tests/src/rmrk/setEquippableList.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/setEquippableList.test.ts
+++ b/tests/src/rmrk/setEquippableList.test.ts
@@ -1,5 +1,5 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
import {expectTxFailure} from './util/helpers';
import {createCollection, createBase, setEquippableList} from './util/tx';
@@ -7,7 +7,7 @@
let api: any;
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
const alice = '//Alice';
tests/src/rmrk/setNftProperty.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/setNftProperty.test.ts
+++ b/tests/src/rmrk/setNftProperty.test.ts
@@ -1,5 +1,5 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
import {NftIdTuple} from './util/fetch';
import {expectTxFailure} from './util/helpers';
import {createCollection, mintNft, sendNft, setNftProperty} from './util/tx';
@@ -8,7 +8,7 @@
let api: any;
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
const alice = '//Alice';
tests/src/rmrk/setResourcePriorities.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/setResourcePriorities.test.ts
+++ b/tests/src/rmrk/setResourcePriorities.test.ts
@@ -1,5 +1,5 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { getModuleNames, Pallets } from '../util/helpers';
+import { requirePallets, Pallets } from '../util/helpers';
import {expectTxFailure} from './util/helpers';
import {mintNft, createCollection, setResourcePriorities} from './util/tx';
@@ -7,7 +7,7 @@
let api: any;
before(async function () {
api = await getApiConnection();
- if (!getModuleNames(api).includes(Pallets.RmrkCore)) this.skip();
+ requirePallets(this, api, [Pallets.RmrkCore]);
});
const alice = '//Alice';
tests/src/util/helpers.tsdiffbeforeafterboth--- a/tests/src/util/helpers.ts
+++ b/tests/src/util/helpers.ts
@@ -28,6 +28,7 @@
import {hexToStr, strToUTF16, utf16ToStr} from './util';
import {UpDataStructsRpcCollection, UpDataStructsCreateItemData, UpDataStructsProperty} from '@polkadot/types/lookup';
import {UpDataStructsTokenChild} from '../interfaces';
+import { Context } from 'mocha';
chai.use(chaiAsPromised);
const expect = chai.expect;
@@ -42,6 +43,7 @@
export enum Pallets {
Inflation = 'inflation',
RmrkCore = 'rmrkcore',
+ RmrkEquip = 'rmrkequip',
ReFungible = 'refungible',
Fungible = 'fungible',
NFT = 'nonfungible',
@@ -70,6 +72,16 @@
return modulesNames;
}
+export function requirePallets(mocha: Context, api: ApiPromise, requiredPallets: string[]) {
+ const pallets = getModuleNames(api);
+
+ const isAllPalletsPresent = requiredPallets.every(p => pallets.includes(p));
+
+ if (!isAllPalletsPresent) {
+ mocha.skip();
+ }
+}
+
export function normalizeAccountId(input: string | AccountId | CrossAccountId | IKeyringPair): CrossAccountId {
if (typeof input === 'string') {
if (input.length >= 47) {