1234567891011121314151617import {IKeyringPair} from '@polkadot/types/types';18import chai from 'chai';19import chaiAsPromised from 'chai-as-promised';20import {itSub, Pallets, usingPlaygrounds} from './util/playgrounds';2122chai.use(chaiAsPromised);23const expect = chai.expect;2425describe('Integration Test transferFrom(from, recipient, collection_id, item_id, value):', () => {26 let alice: IKeyringPair;27 let bob: IKeyringPair;28 let charlie: IKeyringPair;2930 before(async () => {31 await usingPlaygrounds(async (helper, privateKey) => {32 const donor = privateKey('//Alice');33 [alice, bob, charlie] = await helper.arrange.createAccounts([20n, 10n, 10n], donor);34 });35 });3637 itSub('[nft] Execute the extrinsic and check nftItemList - owner of token', async ({helper}) => {38 const collection = await helper.nft.mintCollection(alice, {name: 'TransferFrom-1', description: '', tokenPrefix: 'TF'});39 const nft = await collection.mintToken(alice, {Substrate: alice.address});40 await nft.approve(alice, {Substrate: bob.address});41 expect(await nft.isApproved({Substrate: bob.address})).to.be.true;4243 await nft.transferFrom(bob, {Substrate: alice.address}, {Substrate: charlie.address});44 expect(await nft.getOwner()).to.be.deep.equal({Substrate: charlie.address});45 });4647 itSub('[fungible] Execute the extrinsic and check nftItemList - owner of token', async ({helper}) => {48 const collection = await helper.ft.mintCollection(alice, {name: 'TransferFrom-2', description: '', tokenPrefix: 'TF'});49 await collection.mint(alice, {Substrate: alice.address}, 10n);50 await collection.approveTokens(alice, {Substrate: bob.address}, 7n);51 expect(await collection.getApprovedTokens({Substrate: alice.address}, {Substrate: bob.address})).to.be.equal(7n);52 53 await collection.transferFrom(bob, {Substrate: alice.address}, {Substrate: charlie.address}, 6n);54 expect(await collection.getBalance({Substrate: charlie.address})).to.be.equal(6n);55 expect(await collection.getBalance({Substrate: alice.address})).to.be.equal(4n);56 expect(await collection.getApprovedTokens({Substrate: alice.address}, {Substrate: bob.address})).to.be.equal(1n);57 });5859 itSub.ifWithPallets('[refungible] Execute the extrinsic and check nftItemList - owner of token', [Pallets.ReFungible], async ({helper}) => {60 const collection = await helper.rft.mintCollection(alice, {name: 'TransferFrom-3', description: '', tokenPrefix: 'TF'});61 const rft = await collection.mintToken(alice, {Substrate: alice.address}, 10n);62 await rft.approve(alice, {Substrate: bob.address}, 7n);63 expect(await rft.getApprovedPieces({Substrate: alice.address}, {Substrate: bob.address})).to.be.equal(7n);64 65 await rft.transferFrom(bob, {Substrate: alice.address}, {Substrate: charlie.address}, 6n);66 expect(await rft.getBalance({Substrate: charlie.address})).to.be.equal(6n);67 expect(await rft.getBalance({Substrate: alice.address})).to.be.equal(4n);68 expect(await rft.getApprovedPieces({Substrate: alice.address}, {Substrate: bob.address})).to.be.equal(1n);69 });7071 itSub('Should reduce allowance if value is big', async ({helper}) => {72 73 const collection = await helper.ft.mintCollection(alice, {name: 'TransferFrom-4', description: '', tokenPrefix: 'TF'});74 await collection.mint(alice, {Substrate: alice.address}, 500000n);7576 await collection.approveTokens(alice, {Substrate: bob.address}, 500000n);77 expect(await collection.getApprovedTokens({Substrate: alice.address}, {Substrate: bob.address})).to.be.equal(500000n);78 await collection.transferFrom(bob, {Substrate: alice.address}, {Substrate: charlie.address}, 500000n);79 expect(await collection.getApprovedTokens({Substrate: alice.address}, {Substrate: bob.address})).to.be.equal(0n);80 });8182 itSub('can be called by collection owner on non-owned item when OwnerCanTransfer == true', async ({helper}) => {83 const collection = await helper.nft.mintCollection(alice, {name: 'TransferFrom-5', description: '', tokenPrefix: 'TF'});84 await collection.setLimits(alice, {ownerCanTransfer: true});8586 const nft = await collection.mintToken(alice, {Substrate: bob.address});87 await nft.transferFrom(alice, {Substrate: bob.address}, {Substrate: charlie.address});88 expect(await nft.getOwner()).to.be.deep.equal({Substrate: charlie.address});89 });90});9192describe('Negative Integration Test transferFrom(from, recipient, collection_id, item_id, value):', () => {93 let alice: IKeyringPair;94 let bob: IKeyringPair;95 let charlie: IKeyringPair;9697 before(async () => {98 await usingPlaygrounds(async (helper, privateKey) => {99 const donor = privateKey('//Alice');100 [alice, bob, charlie] = await helper.arrange.createAccounts([50n, 10n, 10n], donor);101 });102 });103104 itSub('transferFrom for a collection that does not exist', async ({helper}) => {105 const collectionId = (1 << 32) - 1;106 await expect(helper.collection.approveToken(alice, collectionId, 0, {Substrate: bob.address}, 1n))107 .to.be.rejectedWith(/common\.CollectionNotFound/);108 await expect(helper.collection.transferTokenFrom(bob, collectionId, 0, {Substrate: alice.address}, {Substrate: bob.address}, 1n))109 .to.be.rejectedWith(/common\.CollectionNotFound/);110 });111112 113114115116 117118119120 121122123124 itSub('[nft] transferFrom for not approved address', async ({helper}) => {125 const collection = await helper.nft.mintCollection(alice, {name: 'TransferFrom-Neg-1', description: '', tokenPrefix: 'TF'});126 const nft = await collection.mintToken(alice, {Substrate: alice.address});127128 await expect(nft.transferFrom(bob, {Substrate: alice.address}, {Substrate: charlie.address}))129 .to.be.rejectedWith(/common\.ApprovedValueTooLow/);130 expect(await nft.getOwner()).to.be.deep.equal({Substrate: alice.address});131 });132133 itSub('[fungible] transferFrom for not approved address', async ({helper}) => {134 const collection = await helper.ft.mintCollection(alice, {name: 'TransferFrom-Neg-1', description: '', tokenPrefix: 'TF'});135 await collection.mint(alice, {Substrate: alice.address}, 10n);136137 await expect(collection.transferFrom(bob, {Substrate: alice.address}, {Substrate: charlie.address}, 5n))138 .to.be.rejectedWith(/common\.ApprovedValueTooLow/);139 expect(await collection.getBalance({Substrate: alice.address})).to.be.deep.equal(10n);140 expect(await collection.getBalance({Substrate: bob.address})).to.be.deep.equal(0n);141 expect(await collection.getBalance({Substrate: charlie.address})).to.be.deep.equal(0n);142 });143144 itSub.ifWithPallets('[refungible] transferFrom for not approved address', [Pallets.ReFungible], async({helper}) => {145 const collection = await helper.rft.mintCollection(alice, {name: 'TransferFrom-Neg-3', description: '', tokenPrefix: 'TF'});146 const rft = await collection.mintToken(alice, {Substrate: alice.address}, 10n);147148 await expect(rft.transferFrom(bob, {Substrate: alice.address}, {Substrate: charlie.address}))149 .to.be.rejectedWith(/common\.ApprovedValueTooLow/);150 expect(await rft.getBalance({Substrate: alice.address})).to.be.deep.equal(10n);151 expect(await rft.getBalance({Substrate: bob.address})).to.be.deep.equal(0n);152 expect(await rft.getBalance({Substrate: charlie.address})).to.be.deep.equal(0n);153 });154155 itSub('[nft] transferFrom incorrect token count', async ({helper}) => {156 const collection = await helper.nft.mintCollection(alice, {name: 'TransferFrom-Neg-4', description: '', tokenPrefix: 'TF'});157 const nft = await collection.mintToken(alice, {Substrate: alice.address});158159 await nft.approve(alice, {Substrate: bob.address});160 expect(await nft.isApproved({Substrate: bob.address})).to.be.true;161162 await expect(helper.collection.transferTokenFrom(163 bob, 164 collection.collectionId, 165 nft.tokenId, 166 {Substrate: alice.address}, 167 {Substrate: charlie.address}, 168 2n,169 )).to.be.rejectedWith(/nonfungible\.NonfungibleItemsHaveNoAmount/);170 expect(await nft.getOwner()).to.be.deep.equal({Substrate: alice.address});171 });172173 itSub('[fungible] transferFrom incorrect token count', async ({helper}) => {174 const collection = await helper.ft.mintCollection(alice, {name: 'TransferFrom-Neg-5', description: '', tokenPrefix: 'TF'});175 await collection.mint(alice, {Substrate: alice.address}, 10n);176177 await collection.approveTokens(alice, {Substrate: bob.address}, 2n);178 expect(await collection.getApprovedTokens({Substrate: alice.address}, {Substrate: bob.address})).to.be.eq(2n);179180 await expect(collection.transferFrom(bob, {Substrate: alice.address}, {Substrate: charlie.address}, 5n))181 .to.be.rejectedWith(/common\.ApprovedValueTooLow/);182 expect(await collection.getBalance({Substrate: alice.address})).to.be.deep.equal(10n);183 expect(await collection.getBalance({Substrate: bob.address})).to.be.deep.equal(0n);184 expect(await collection.getBalance({Substrate: charlie.address})).to.be.deep.equal(0n);185 });186187 itSub.ifWithPallets('[refungible] transferFrom incorrect token count', [Pallets.ReFungible], async ({helper}) => {188 const collection = await helper.rft.mintCollection(alice, {name: 'TransferFrom-Neg-6', description: '', tokenPrefix: 'TF'});189 const rft = await collection.mintToken(alice, {Substrate: alice.address}, 10n);190191 await rft.approve(alice, {Substrate: bob.address}, 5n);192 expect(await rft.getApprovedPieces({Substrate: alice.address}, {Substrate: bob.address})).to.be.eq(5n);193194 await expect(rft.transferFrom(bob, {Substrate: alice.address}, {Substrate: charlie.address}, 7n))195 .to.be.rejectedWith(/common\.ApprovedValueTooLow/);196 expect(await rft.getBalance({Substrate: alice.address})).to.be.deep.equal(10n);197 expect(await rft.getBalance({Substrate: bob.address})).to.be.deep.equal(0n);198 expect(await rft.getBalance({Substrate: charlie.address})).to.be.deep.equal(0n);199 });200201 itSub('[nft] execute transferFrom from account that is not owner of collection', async ({helper}) => {202 const collection = await helper.nft.mintCollection(alice, {name: 'TransferFrom-Neg-7', description: '', tokenPrefix: 'TF'});203 const nft = await collection.mintToken(alice, {Substrate: alice.address});204205 await expect(nft.approve(charlie, {Substrate: bob.address})).to.be.rejectedWith(/common\.CantApproveMoreThanOwned/);206 expect(await nft.isApproved({Substrate: bob.address})).to.be.false;207208 await expect(nft.transferFrom(209 charlie,210 {Substrate: alice.address}, 211 {Substrate: charlie.address},212 )).to.be.rejectedWith(/common\.ApprovedValueTooLow/);213 expect(await nft.getOwner()).to.be.deep.equal({Substrate: alice.address});214 });215216 itSub('[fungible] execute transferFrom from account that is not owner of collection', async ({helper}) => {217 const collection = await helper.ft.mintCollection(alice, {name: 'TransferFrom-Neg-8', description: '', tokenPrefix: 'TF'});218 await collection.mint(alice, {Substrate: alice.address}, 10000n);219220 await expect(collection.approveTokens(charlie, {Substrate: bob.address}, 1n)).to.be.rejectedWith(/common\.CantApproveMoreThanOwned/);221 expect(await collection.getApprovedTokens({Substrate: alice.address}, {Substrate: bob.address})).to.be.eq(0n);222 expect(await collection.getApprovedTokens({Substrate: charlie.address}, {Substrate: bob.address})).to.be.eq(0n);223224 await expect(collection.transferFrom(225 charlie,226 {Substrate: alice.address}, 227 {Substrate: charlie.address},228 )).to.be.rejectedWith(/common\.ApprovedValueTooLow/);229 expect(await collection.getBalance({Substrate: alice.address})).to.be.deep.equal(10000n);230 expect(await collection.getBalance({Substrate: bob.address})).to.be.deep.equal(0n);231 expect(await collection.getBalance({Substrate: charlie.address})).to.be.deep.equal(0n);232 });233234 itSub.ifWithPallets('[refungible] execute transferFrom from account that is not owner of collection', [Pallets.ReFungible], async ({helper}) => {235 const collection = await helper.rft.mintCollection(alice, {name: 'TransferFrom-Neg-9', description: '', tokenPrefix: 'TF'});236 const rft = await collection.mintToken(alice, {Substrate: alice.address}, 10000n);237238 await expect(rft.approve(charlie, {Substrate: bob.address}, 1n)).to.be.rejectedWith(/common\.CantApproveMoreThanOwned/);239 expect(await rft.getApprovedPieces({Substrate: alice.address}, {Substrate: bob.address})).to.be.eq(0n);240 expect(await rft.getApprovedPieces({Substrate: charlie.address}, {Substrate: bob.address})).to.be.eq(0n);241242 await expect(rft.transferFrom(243 charlie,244 {Substrate: alice.address}, 245 {Substrate: charlie.address},246 )).to.be.rejectedWith(/common\.ApprovedValueTooLow/);247 expect(await rft.getBalance({Substrate: alice.address})).to.be.deep.equal(10000n);248 expect(await rft.getBalance({Substrate: bob.address})).to.be.deep.equal(0n);249 expect(await rft.getBalance({Substrate: charlie.address})).to.be.deep.equal(0n);250 });251252 itSub('transferFrom burnt token before approve NFT', async ({helper}) => {253 const collection = await helper.nft.mintCollection(alice, {name: 'TransferFrom-Neg-10', description: '', tokenPrefix: 'TF'});254 await collection.setLimits(alice, {ownerCanTransfer: true});255 const nft = await collection.mintToken(alice, {Substrate: alice.address});256257 await nft.burn(alice);258 await expect(nft.approve(alice, {Substrate: bob.address})).to.be.rejectedWith(/common\.TokenNotFound/);259260 await expect(nft.transferFrom(261 bob,262 {Substrate: alice.address}, 263 {Substrate: charlie.address},264 )).to.be.rejectedWith(/common\.ApprovedValueTooLow/);265 });266267 itSub('transferFrom burnt token before approve Fungible', async ({helper}) => {268 const collection = await helper.ft.mintCollection(alice, {name: 'TransferFrom-Neg-11', description: '', tokenPrefix: 'TF'});269 await collection.setLimits(alice, {ownerCanTransfer: true});270 await collection.mint(alice, {Substrate: alice.address}, 10n);271272 await collection.burnTokens(alice, 10n);273 await expect(collection.approveTokens(alice, {Substrate: bob.address})).to.be.not.rejected;274275 await expect(collection.transferFrom(276 alice,277 {Substrate: alice.address}, 278 {Substrate: charlie.address},279 )).to.be.rejectedWith(/common\.TokenValueTooLow/);280 });281282 itSub.ifWithPallets('transferFrom burnt token before approve ReFungible', [Pallets.ReFungible], async ({helper}) => {283 const collection = await helper.rft.mintCollection(alice, {name: 'TransferFrom-Neg-12', description: '', tokenPrefix: 'TF'});284 await collection.setLimits(alice, {ownerCanTransfer: true});285 const rft = await collection.mintToken(alice, {Substrate: alice.address}, 10n);286287 await rft.burn(alice, 10n);288 await expect(rft.approve(alice, {Substrate: bob.address})).to.be.rejectedWith(/common\.CantApproveMoreThanOwned/);289290 await expect(rft.transferFrom(291 alice,292 {Substrate: alice.address}, 293 {Substrate: charlie.address},294 )).to.be.rejectedWith(/common\.TokenValueTooLow/);295 });296297 itSub('transferFrom burnt token after approve NFT', async ({helper}) => {298 const collection = await helper.nft.mintCollection(alice, {name: 'TransferFrom-Neg-13', description: '', tokenPrefix: 'TF'});299 const nft = await collection.mintToken(alice, {Substrate: alice.address});300301 await nft.approve(alice, {Substrate: bob.address});302 expect(await nft.isApproved({Substrate: bob.address})).to.be.true;303304 await nft.burn(alice);305306 await expect(nft.transferFrom(307 bob,308 {Substrate: alice.address}, 309 {Substrate: charlie.address},310 )).to.be.rejectedWith(/common\.ApprovedValueTooLow/);311 });312313 itSub('transferFrom burnt token after approve Fungible', async ({helper}) => {314 const collection = await helper.ft.mintCollection(alice, {name: 'TransferFrom-Neg-14', description: '', tokenPrefix: 'TF'});315 await collection.mint(alice, {Substrate: alice.address}, 10n);316317 await collection.approveTokens(alice, {Substrate: bob.address});318 expect(await collection.getApprovedTokens({Substrate: alice.address}, {Substrate: bob.address})).to.be.eq(1n);319320 await collection.burnTokens(alice, 10n);321322 await expect(collection.transferFrom(323 bob,324 {Substrate: alice.address}, 325 {Substrate: charlie.address},326 )).to.be.rejectedWith(/common\.TokenValueTooLow/);327 });328329 itSub.ifWithPallets('transferFrom burnt token after approve ReFungible', [Pallets.ReFungible], async ({helper}) => {330 const collection = await helper.rft.mintCollection(alice, {name: 'TransferFrom-Neg-15', description: '', tokenPrefix: 'TF'});331 const rft = await collection.mintToken(alice, {Substrate: alice.address}, 10n);332333 await rft.approve(alice, {Substrate: bob.address}, 10n);334 expect(await rft.getApprovedPieces({Substrate: alice.address}, {Substrate: bob.address})).to.be.eq(10n);335336 await rft.burn(alice, 10n);337338 await expect(rft.transferFrom(339 bob,340 {Substrate: alice.address}, 341 {Substrate: charlie.address},342 )).to.be.rejectedWith(/common\.ApprovedValueTooLow/);343 });344345 itSub('fails when called by collection owner on non-owned item when OwnerCanTransfer == false', async ({helper}) => {346 const collection = await helper.nft.mintCollection(alice, {name: 'TransferFrom-Neg-16', description: '', tokenPrefix: 'TF'});347 const nft = await collection.mintToken(alice, {Substrate: bob.address});348349 await collection.setLimits(alice, {ownerCanTransfer: false});350351 await expect(nft.transferFrom(352 alice,353 {Substrate: bob.address}, 354 {Substrate: charlie.address},355 )).to.be.rejectedWith(/common\.ApprovedValueTooLow/);356 });357});