From 7c95ae9859729e434befeb95b7ba80146e36b527 Mon Sep 17 00:00:00 2001 From: str-mv Date: Thu, 29 Jul 2021 15:01:04 +0000 Subject: [PATCH] CORE-161. Change collection owner integration tests --- --- a/tests/src/change-collection-owner.test.ts +++ b/tests/src/change-collection-owner.test.ts @@ -7,7 +7,15 @@ import chaiAsPromised from 'chai-as-promised'; import privateKey from './substrate/privateKey'; import { default as usingApi, submitTransactionAsync, submitTransactionExpectFailAsync } from './substrate/substrate-api'; -import { createCollectionExpectSuccess, addCollectionAdminExpectSuccess } from './util/helpers'; +import { createCollectionExpectSuccess, + addCollectionAdminExpectSuccess, + setCollectionSponsorExpectSuccess, + confirmSponsorshipExpectSuccess, + removeCollectionSponsorExpectSuccess, + enableWhiteListExpectSuccess, + setMintPermissionExpectSuccess, + destroyCollectionExpectSuccess, +} from './util/helpers'; chai.use(chaiAsPromised); const expect = chai.expect; @@ -31,6 +39,71 @@ }); }); +describe('Integration Test changeCollectionOwner(collection_id, new_owner) special checks for exOwner:', () => { + it('Changing the owner of the collection is not allowed for the former owner', async () => { + await usingApi(async api => { + const collectionId = await createCollectionExpectSuccess(); + const alice = privateKey('//Alice'); + const bob = privateKey('//Bob'); + + const collection: any = (await api.query.nft.collectionById(collectionId)).toJSON(); + expect(collection.Owner).to.be.deep.eq(alice.address); + + const changeOwnerTx = api.tx.nft.changeCollectionOwner(collectionId, bob.address); + await submitTransactionAsync(alice, changeOwnerTx); + + const badChangeOwnerTx = api.tx.nft.changeCollectionOwner(collectionId, alice.address); + await expect(submitTransactionAsync(alice, badChangeOwnerTx)).to.be.rejected; + + const collectionAfterOwnerChange: any = (await api.query.nft.collectionById(collectionId)).toJSON(); + expect(collectionAfterOwnerChange.Owner).to.be.deep.eq(bob.address); + }); + }); + + it('New collectionOwner has access to sponsorship management operations in the collection', async () => { + await usingApi(async api => { + const collectionId = await createCollectionExpectSuccess(); + const alice = privateKey('//Alice'); + const bob = privateKey('//Bob'); + const charlie = privateKey('//Charlie'); + + const collection: any = (await api.query.nft.collectionById(collectionId)).toJSON(); + expect(collection.Owner).to.be.deep.eq(alice.address); + + const changeOwnerTx = api.tx.nft.changeCollectionOwner(collectionId, bob.address); + await submitTransactionAsync(alice, changeOwnerTx); + + const collectionAfterOwnerChange: any = (await api.query.nft.collectionById(collectionId)).toJSON(); + expect(collectionAfterOwnerChange.Owner).to.be.deep.eq(bob.address); + + // After changing the owner of the collection, all privileged methods are available to the new owner + // The new owner of the collection has access to sponsorship management operations in the collection + await setCollectionSponsorExpectSuccess(collectionId, charlie.address, '//Bob'); + await confirmSponsorshipExpectSuccess(collectionId, '//Charlie'); + await removeCollectionSponsorExpectSuccess(collectionId, '//Bob'); + + // The new owner of the collection has access to operations for managing the collection parameters + const collectionLimits = { + AccountTokenOwnershipLimit: 1, + SponsoredMintSize: 1, + TokenLimit: 1, + SponsorTimeout: 1, + OwnerCanTransfer: true, + OwnerCanDestroy: true, + }; + const tx1 = api.tx.nft.setCollectionLimits( + collectionId, + collectionLimits, + ); + await submitTransactionAsync(bob, tx1); + + await enableWhiteListExpectSuccess(bob, collectionId); + await setMintPermissionExpectSuccess(bob, collectionId, true); + await destroyCollectionExpectSuccess(collectionId, '//Bob'); + }); + }); +}); + describe('Negative Integration Test changeCollectionOwner(collection_id, new_owner):', () => { it('Not owner can\'t change owner.', async () => { await usingApi(async api => { @@ -81,4 +154,47 @@ await createCollectionExpectSuccess(); }); }); + + it('Former collectionOwner not allowed to sponsorship management operations in the collection', async () => { + await usingApi(async api => { + const collectionId = await createCollectionExpectSuccess(); + const alice = privateKey('//Alice'); + const bob = privateKey('//Bob'); + const charlie = privateKey('//Charlie'); + + const collection: any = (await api.query.nft.collectionById(collectionId)).toJSON(); + expect(collection.Owner).to.be.deep.eq(alice.address); + + const changeOwnerTx = api.tx.nft.changeCollectionOwner(collectionId, bob.address); + await submitTransactionAsync(alice, changeOwnerTx); + + const badChangeOwnerTx = api.tx.nft.changeCollectionOwner(collectionId, alice.address); + await expect(submitTransactionAsync(alice, badChangeOwnerTx)).to.be.rejected; + + const collectionAfterOwnerChange: any = (await api.query.nft.collectionById(collectionId)).toJSON(); + expect(collectionAfterOwnerChange.Owner).to.be.deep.eq(bob.address); + + await expect(setCollectionSponsorExpectSuccess(collectionId, charlie.address, '//Alice')).to.be.rejected; + await expect(confirmSponsorshipExpectSuccess(collectionId, '//Alice')).to.be.rejected; + await expect(removeCollectionSponsorExpectSuccess(collectionId, '//Alice')).to.be.rejected; + + const collectionLimits = { + AccountTokenOwnershipLimit: 1, + SponsoredMintSize: 1, + TokenLimit: 1, + SponsorTimeout: 1, + OwnerCanTransfer: true, + OwnerCanDestroy: true, + }; + const tx1 = api.tx.nft.setCollectionLimits( + collectionId, + collectionLimits, + ); + await expect(submitTransactionAsync(alice, tx1)).to.be.rejected; + + await expect(enableWhiteListExpectSuccess(alice, collectionId)).to.be.rejected; + await expect(setMintPermissionExpectSuccess(alice, collectionId, true)).to.be.rejected; + await expect(destroyCollectionExpectSuccess(collectionId, '//Alice')).to.be.rejected; + }); + }); }); --- a/tests/src/setChainLimits.test.ts +++ b/tests/src/setChainLimits.test.ts @@ -13,7 +13,7 @@ IChainLimits, } from './util/helpers'; -describe.only('Negative Integration Test setChainLimits', () => { +describe('Negative Integration Test setChainLimits', () => { let alice: IKeyringPair; let bob: IKeyringPair; let dave: IKeyringPair; --- a/tests/src/util/helpers.ts +++ b/tests/src/util/helpers.ts @@ -431,13 +431,13 @@ }); } -export async function setCollectionSponsorExpectSuccess(collectionId: number, sponsor: string) { +export async function setCollectionSponsorExpectSuccess(collectionId: number, sponsor: string, sender = '//Alice') { await usingApi(async (api) => { // Run the transaction - const alicePrivateKey = privateKey('//Alice'); + const senderPrivateKey = privateKey(sender); const tx = api.tx.nft.setCollectionSponsor(collectionId, sponsor); - const events = await submitTransactionAsync(alicePrivateKey, tx); + const events = await submitTransactionAsync(senderPrivateKey, tx); const result = getGenericResult(events); // Get the collection @@ -451,11 +451,11 @@ }); } -export async function removeCollectionSponsorExpectSuccess(collectionId: number) { +export async function removeCollectionSponsorExpectSuccess(collectionId: number, sender = '//Alice') { await usingApi(async (api) => { // Run the transaction - const alicePrivateKey = privateKey('//Alice'); + const alicePrivateKey = privateKey(sender); const tx = api.tx.nft.removeCollectionSponsor(collectionId); const events = await submitTransactionAsync(alicePrivateKey, tx); const result = getGenericResult(events); -- gitstuff