git.delta.rocks / unique-network / refs/commits / e0216d406b29

difftreelog

source

tests/src/confirmSponsorship.test.ts6.4 KiBsourcehistory
1//2// This file is subject to the terms and conditions defined in3// file 'LICENSE', which is part of this source code package.4//56import chai from 'chai';7import chaiAsPromised from 'chai-as-promised';8import { default as usingApi, submitTransactionAsync } from "./substrate/substrate-api";9import { 10  createCollectionExpectSuccess, 11  setCollectionSponsorExpectSuccess, 12  destroyCollectionExpectSuccess, 13  setCollectionSponsorExpectFailure,14  confirmSponsorshipExpectSuccess,15  confirmSponsorshipExpectFailure,16  createItemExpectSuccess,17  findUnusedAddress,18  getGenericResult,19} from "./util/helpers";20import { Keyring } from "@polkadot/api";21import { IKeyringPair } from "@polkadot/types/types";22import type { AccountId } from '@polkadot/types/interfaces';23import { BigNumber } from 'bignumber.js';2425chai.use(chaiAsPromised);26const expect = chai.expect;2728let alice: IKeyringPair;29let bob: IKeyringPair;30let charlie: IKeyringPair;3132describe('integration test: ext. confirmSponsorship():', () => {3334  before(async () => {35    await usingApi(async (api) => {36      const keyring = new Keyring({ type: 'sr25519' });37      alice = keyring.addFromUri(`//Alice`);38      bob = keyring.addFromUri(`//Bob`);39      charlie = keyring.addFromUri(`//Charlie`);40    });41  });4243  it('Confirm collection sponsorship', async () => {44    const collectionId = await createCollectionExpectSuccess('A', 'B', 'C', 'NFT');45    await setCollectionSponsorExpectSuccess(collectionId, bob.address);46    await confirmSponsorshipExpectSuccess(collectionId, '//Bob');47  });48  it('Add sponsor to a collection after the same sponsor was already added and confirmed', async () => {49    const collectionId = await createCollectionExpectSuccess('A', 'B', 'C', 'NFT');50    await setCollectionSponsorExpectSuccess(collectionId, bob.address);51    await confirmSponsorshipExpectSuccess(collectionId, '//Bob');52    await setCollectionSponsorExpectSuccess(collectionId, bob.address);53  });54  it('Add new sponsor to a collection after another sponsor was already added and confirmed', async () => {55    const collectionId = await createCollectionExpectSuccess('A', 'B', 'C', 'NFT');56    await setCollectionSponsorExpectSuccess(collectionId, bob.address);57    await confirmSponsorshipExpectSuccess(collectionId, '//Bob');58    await setCollectionSponsorExpectSuccess(collectionId, charlie.address);59  });6061  it('NFT: Transfer fees are paid by the sponsor after confirmation', async () => {62    const collectionId = await createCollectionExpectSuccess('A', 'B', 'C', 'NFT');63    await setCollectionSponsorExpectSuccess(collectionId, bob.address);64    await confirmSponsorshipExpectSuccess(collectionId, '//Bob');6566    await usingApi(async (api) => {67      const AsponsorBalance = new BigNumber((await api.query.system.account(bob.address)).data.free.toString());6869      // Find unused address70      const zeroBalance = await findUnusedAddress(api);7172      // Mint token for unused address73      const itemId = await createItemExpectSuccess(collectionId, 'NFT', zeroBalance.address, '//Alice');7475      // Transfer this token from unused address to Alice76      const zeroToAlice = api.tx.nft.transfer(zeroBalance.address, collectionId, itemId, 0);77      const events = await submitTransactionAsync(zeroBalance, zeroToAlice);78      const result = getGenericResult(events);7980      const BsponsorBalance = new BigNumber((await api.query.system.account(bob.address)).data.free.toString());8182      expect(result.success).to.be.true;83      expect(BsponsorBalance.lt(AsponsorBalance)).to.be.true;84    });8586  });8788  it('Fungible: Transfer fees are paid by the sponsor after confirmation', async () => {89    expect(false).to.be.true;90  });9192  it('ReFungible: Transfer fees are paid by the sponsor after confirmation', async () => {93    expect(false).to.be.true;94  });9596  it.skip('CreateItem fees are paid by the sponsor after confirmation', async () => {97    // const collectionId = await createCollectionExpectSuccess('A', 'B', 'C', 'NFT');98    // await setCollectionSponsorExpectSuccess(collectionId, bob.address);99    // await confirmSponsorshipExpectSuccess(collectionId, '//Bob');100    expect(false).to.be.true;101  });102103  it('NFT: Sponsoring is rate limited', async () => {104    expect(false).to.be.true;105  });106107  it('Fungible: Sponsoring is rate limited', async () => {108    expect(false).to.be.true;109  });110111  it('ReFungible: Sponsoring is rate limited', async () => {112    expect(false).to.be.true;113  });114115});116117describe('(!negative test!) integration test: ext. setCollectionSponsor():', () => {118  before(async () => {119    await usingApi(async (api) => {120      const keyring = new Keyring({ type: 'sr25519' });121      alice = keyring.addFromUri(`//Alice`);122      bob = keyring.addFromUri(`//Bob`);123      charlie = keyring.addFromUri(`//Charlie`);124    });125  });126127  it('(!negative test!) Confirm sponsorship for a collection that never existed', async () => {128    // Find the collection that never existed129    const collectionId = 0;130    await usingApi(async (api) => {131      const collectionId = parseInt((await api.query.nft.createdCollectionCount()).toString()) + 1;132    });133134    await confirmSponsorshipExpectFailure(collectionId, '//Bob');135  });136137  it('(!negative test!) Confirm sponsorship using a non-sponsor address', async () => {138    const collectionId = await createCollectionExpectSuccess('A', 'B', 'C', 'NFT');139    await setCollectionSponsorExpectSuccess(collectionId, bob.address);140141    await usingApi(async (api) => {142      const transfer = api.tx.balances.transfer(charlie.address, 1e15);143      await submitTransactionAsync(alice, transfer);144    });145146    await confirmSponsorshipExpectFailure(collectionId, '//Charlie');147  });148149  it('(!negative test!) Confirm sponsorship using owner address', async () => {150    const collectionId = await createCollectionExpectSuccess('A', 'B', 'C', 'NFT');151    await setCollectionSponsorExpectSuccess(collectionId, bob.address);152    await confirmSponsorshipExpectFailure(collectionId, '//Alice');153  });154155  it('(!negative test!) Confirm sponsorship without sponsor being set with setCollectionSponsor', async () => {156    const collectionId = await createCollectionExpectSuccess('A', 'B', 'C', 'NFT');157    await confirmSponsorshipExpectFailure(collectionId, '//Bob');158  });159    160  it('(!negative test!) Confirm sponsorship in a collection that was destroyed', async () => {161    const collectionId = await createCollectionExpectSuccess('A', 'B', 'C', 'NFT');162    await destroyCollectionExpectSuccess(collectionId);163    await confirmSponsorshipExpectFailure(collectionId, '//Bob');164  });165});