git.delta.rocks / unique-network / refs/commits / 23f963dcddfc

difftreelog

source

tests/src/eth/collectionProperties.test.ts7.1 KiBsourcehistory
1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.2// This file is part of Unique Network.34// Unique Network is free software: you can redistribute it and/or modify5// it under the terms of the GNU General Public License as published by6// the Free Software Foundation, either version 3 of the License, or7// (at your option) any later version.89// Unique Network is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the12// GNU General Public License for more details.1314// You should have received a copy of the GNU General Public License15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.1617import {itEth, usingEthPlaygrounds, expect, EthUniqueHelper} from './util';18import {Pallets} from '../util';19import {IProperty, ITokenPropertyPermission} from '../util/playgrounds/types';20import {IKeyringPair} from '@polkadot/types/types';2122describe('EVM collection properties', () => {23  let donor: IKeyringPair;24  let alice: IKeyringPair;2526  before(async function() {27    await usingEthPlaygrounds(async (_helper, privateKey) => {28      donor = await privateKey({filename: __filename});29      [alice] = await _helper.arrange.createAccounts([10n], donor);30    });31  });3233  itEth('Can be set', async({helper}) => {34    const caller = await helper.eth.createAccountWithBalance(donor);35    const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'test', tokenPrefix: 'test', properties: []});36    await collection.addAdmin(alice, {Ethereum: caller});3738    const address = helper.ethAddress.fromCollectionId(collection.collectionId);39    const contract = helper.ethNativeContract.collection(address, 'nft', caller);4041    await contract.methods.setCollectionProperty('testKey', Buffer.from('testValue')).send({from: caller});4243    const raw = (await collection.getData())?.raw;4445    expect(raw.properties[0].value).to.equal('testValue');46  });4748  itEth('Can be deleted', async({helper}) => {49    const caller = await helper.eth.createAccountWithBalance(donor);50    const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'test', tokenPrefix: 'test', properties: [{key: 'testKey', value: 'testValue'}]});5152    await collection.addAdmin(alice, {Ethereum: caller});5354    const address = helper.ethAddress.fromCollectionId(collection.collectionId);55    const contract = helper.ethNativeContract.collection(address, 'nft', caller);5657    await contract.methods.deleteCollectionProperty('testKey').send({from: caller});5859    const raw = (await collection.getData())?.raw;6061    expect(raw.properties.length).to.equal(0);62  });6364  itEth('Can be read', async({helper}) => {65    const caller = helper.eth.createAccount();66    const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'test', tokenPrefix: 'test', properties: [{key: 'testKey', value: 'testValue'}]});6768    const address = helper.ethAddress.fromCollectionId(collection.collectionId);69    const contract = helper.ethNativeContract.collection(address, 'nft', caller);7071    const value = await contract.methods.collectionProperty('testKey').call();72    expect(value).to.equal(helper.getWeb3().utils.toHex('testValue'));73  });74});7576describe('Supports ERC721Metadata', () => {77  let donor: IKeyringPair;7879  before(async function() {80    await usingEthPlaygrounds(async (_helper, privateKey) => {81      donor = await privateKey({filename: __filename});82    });83  });8485  const checkERC721Metadata = async (helper: EthUniqueHelper, mode: 'nft' | 'rft') => {86    const caller = await helper.eth.createAccountWithBalance(donor);87    const bruh = await helper.eth.createAccountWithBalance(donor);8889    const BASE_URI = 'base/';90    const SUFFIX = 'suffix1';91    const URI = 'uri1';9293    const collectionHelpers = helper.ethNativeContract.collectionHelpers(caller);94    const creatorMethod = mode === 'rft' ? 'createRFTCollection' : 'createNFTCollection';9596    const {collectionId, collectionAddress} = await helper.eth[creatorMethod](caller, 'n', 'd', 'p');9798    const contract = helper.ethNativeContract.collectionById(collectionId, mode, caller);99    await contract.methods.addCollectionAdmin(bruh).send(); // to check that admin will work too100101    const collection1 = helper.nft.getCollectionObject(collectionId);102    const data1 = await collection1.getData();103    expect(data1?.raw.flags.erc721metadata).to.be.false;104    expect(await contract.methods.supportsInterface('0x5b5e139f').call()).to.be.false;105106    await collectionHelpers.methods.makeCollectionERC721MetadataCompatible(collectionAddress, BASE_URI)107      .send({from: bruh});108109    expect(await contract.methods.supportsInterface('0x5b5e139f').call()).to.be.true;110111    const collection2 = helper.nft.getCollectionObject(collectionId);112    const data2 = await collection2.getData();113    expect(data2?.raw.flags.erc721metadata).to.be.true;114115    const propertyPermissions = data2?.raw.tokenPropertyPermissions;116    expect(propertyPermissions?.length).to.equal(2);117118    expect(propertyPermissions.find((tpp: ITokenPropertyPermission) => {119      return tpp.key === 'URI' && tpp.permission.mutable && tpp.permission.collectionAdmin && !tpp.permission.tokenOwner;120    })).to.be.not.null;121122    expect(propertyPermissions.find((tpp: ITokenPropertyPermission) => {123      return tpp.key === 'URISuffix' && tpp.permission.mutable && tpp.permission.collectionAdmin && !tpp.permission.tokenOwner;124    })).to.be.not.null;125126    expect(data2?.raw.properties?.find((property: IProperty) => {127      return property.key === 'baseURI' && property.value === BASE_URI;128    })).to.be.not.null;129130    const token1Result = await contract.methods.mint(bruh).send();131    const tokenId1 = token1Result.events.Transfer.returnValues.tokenId;132133    expect(await contract.methods.tokenURI(tokenId1).call()).to.equal(BASE_URI);134135    await contract.methods.setProperty(tokenId1, 'URISuffix', Buffer.from(SUFFIX)).send();136    expect(await contract.methods.tokenURI(tokenId1).call()).to.equal(BASE_URI + SUFFIX);137138    await contract.methods.setProperty(tokenId1, 'URI', Buffer.from(URI)).send();139    expect(await contract.methods.tokenURI(tokenId1).call()).to.equal(URI);140141    await contract.methods.deleteProperty(tokenId1, 'URI').send();142    expect(await contract.methods.tokenURI(tokenId1).call()).to.equal(BASE_URI + SUFFIX);143144    const token2Result = await contract.methods.mintWithTokenURI(bruh, URI).send();145    const tokenId2 = token2Result.events.Transfer.returnValues.tokenId;146147    expect(await contract.methods.tokenURI(tokenId2).call()).to.equal(URI);148149    await contract.methods.deleteProperty(tokenId2, 'URI').send();150    expect(await contract.methods.tokenURI(tokenId2).call()).to.equal(BASE_URI);151152    await contract.methods.setProperty(tokenId2, 'URISuffix', Buffer.from(SUFFIX)).send();153    expect(await contract.methods.tokenURI(tokenId2).call()).to.equal(BASE_URI + SUFFIX);154  };155156  itEth('ERC721Metadata property can be set for NFT collection', async({helper}) => {157    await checkERC721Metadata(helper, 'nft');158  });159160  itEth.ifWithPallets('ERC721Metadata property can be set for RFT collection', [Pallets.ReFungible], async({helper}) => {161    await checkERC721Metadata(helper, 'rft');162  });163});