-
Notifications
You must be signed in to change notification settings - Fork 3
tests for NftCollection class #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
a917e46
aeb573e
6ce4c9d
a8ce98e
55a0441
8b6473e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,3 +2,4 @@ node_modules | |
| temp | ||
| build | ||
|
|
||
| .env | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,5 +20,8 @@ | |
| "ts-jest": "^29.1.2", | ||
| "ts-node": "^10.9.2", | ||
| "typescript": "^5.3.3" | ||
| }, | ||
| "dependencies": { | ||
| "dotenv": "^16.4.5" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,23 +1,53 @@ | ||
| import { Blockchain, SandboxContract } from '@ton/sandbox'; | ||
| import { Cell, toNano } from '@ton/core'; | ||
| import { Blockchain, SandboxContract, TreasuryContract } from '@ton/sandbox'; | ||
| import { Address, Cell, toNano } from '@ton/core'; | ||
| import { NftCollection } from '../wrappers/NftCollection'; | ||
| import { buildCollectionContentCell, setItemContentCell } from '../scripts/nftContent/onChain'; | ||
| import '@ton/test-utils'; | ||
| import { compile } from '@ton/blueprint'; | ||
| import { flattenTransaction } from '@ton/test-utils'; | ||
| import * as dotenv from 'dotenv'; | ||
| dotenv.config(); | ||
|
|
||
| describe('NftCollection', () => { | ||
| let code: Cell; | ||
| let collectionCode: Cell; | ||
| let item: Cell; | ||
| let collectionContent: Cell; | ||
| let nftItemContent: Cell; | ||
|
|
||
| beforeAll(async () => { | ||
| code = await compile('NftCollection'); | ||
| collectionCode = await compile('NftCollection'); | ||
| item = await compile('NftItem'); | ||
| }); | ||
|
|
||
| let blockchain: Blockchain; | ||
| let nftCollection: SandboxContract<NftCollection>; | ||
| let collectionOwner: SandboxContract<TreasuryContract>; | ||
|
|
||
| beforeEach(async () => { | ||
| blockchain = await Blockchain.create(); | ||
| collectionOwner = await blockchain.treasury("ownerWallet"); | ||
| collectionContent = buildCollectionContentCell({ | ||
| name: process.env.COLLECTION_NAME!, | ||
| description: process.env.COLLECTION_DESCRIPTION!, | ||
| image: process.env.COLLECTION_IMAGE! | ||
| }); | ||
| nftItemContent = setItemContentCell({ | ||
| name: "OnChain", | ||
| description: "Holds onchain metadata", | ||
| image: "https://raw.githubusercontent.com/Cosmodude/Nexton/main/Nexton_Logo.jpg", | ||
| }); | ||
|
|
||
| nftCollection = blockchain.openContract(NftCollection.createFromConfig({}, code)); | ||
| nftCollection = blockchain.openContract(NftCollection.createFromConfig({ | ||
| ownerAddress: collectionOwner.address, | ||
| nextItemIndex: 0, | ||
| collectionContent: collectionContent, | ||
| nftItemCode: item, | ||
| royaltyParams: { | ||
| royaltyFactor: parseInt(process.env.COLLECTION_ROYALTY_PERCENT!), //Math.floor(Math.random() * 500), | ||
| royaltyBase: 100, //1000, | ||
| royaltyAddress: collectionOwner.getSender().address as Address | ||
| } | ||
| },collectionCode)); | ||
|
|
||
| const deployer = await blockchain.treasury('deployer'); | ||
|
|
||
|
|
@@ -31,8 +61,77 @@ describe('NftCollection', () => { | |
| }); | ||
| }); | ||
|
|
||
| it('should deploy', async () => { | ||
| // the check is done inside beforeEach | ||
| // blockchain and nftCollection are ready to use | ||
| it('should get collection data after collection has been deployed', async () => { | ||
| const collection_data = await nftCollection.getCollectionData(); | ||
| // check next_item_index | ||
| expect(collection_data).toHaveProperty("nextItemId", BigInt(0)); | ||
| // check collection content | ||
| expect(collection_data.collectionContent).toEqualCell(collectionContent); | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It would be great to check all the content fields one by one (name, description and image). You can refer to these tests https://github.com/Cosmodude/Nexton/blob/main/tests/NexTon.spec.ts#L111C9-L111C15 |
||
| // check owner address | ||
| expect(collection_data.ownerAddress.toString()).toBe(collectionOwner.address.toString()); | ||
| }); | ||
|
|
||
| it('should get roylty params after collection has been deployed', async () => { | ||
| const royalty_params = await nftCollection.getRoyaltyParams(); | ||
| expect(royalty_params.royaltyFactor).toBe(BigInt(parseInt(process.env.COLLECTION_ROYALTY_PERCENT!))); | ||
| expect(royalty_params.royaltyBase).toBe(BigInt(100)); | ||
| expect(royalty_params.royaltyAddress.toString()).toBe(collectionOwner.address.toString()); | ||
| }); | ||
|
|
||
| it ('should mint NFT item if requested by collection owner', async () => { | ||
|
|
||
| const nftOwner = await blockchain.treasury('NewNFTOwner'); | ||
| const mintResult = await nftCollection.sendMintNft(collectionOwner.getSender(), { | ||
| value: toNano("0.02"), | ||
| queryId: Math.floor(Math.random() * 10000), | ||
| amount: toNano("0.014"), | ||
| itemIndex: 0, | ||
| itemOwnerAddress: nftOwner.getSender().address!!, | ||
| itemContent: nftItemContent | ||
| }); | ||
| // const arr = mintResult.transactions.map(tx => flattenTransaction(tx)); | ||
| // console.log(arr); | ||
| // check that tx to the collection address is successful | ||
| expect(mintResult.transactions).toHaveTransaction({ | ||
| to: nftCollection.address, | ||
| op: 1, | ||
| value: toNano("0.02"), | ||
| success: true | ||
| }) | ||
| // check that getItemAddressByIndex() returns nft item address | ||
| const nftItemAddr = await nftCollection.getItemAddressByIndex({ type: 'int', value: BigInt(0) }); | ||
| // check that tx to the nft item address is successful | ||
| expect(mintResult.transactions).toHaveTransaction({ | ||
| from: nftCollection.address, | ||
| to: nftItemAddr, | ||
| value: toNano("0.014"), | ||
| success: true | ||
| }) | ||
| // check that next item index has been incremented | ||
| const collection_data = await nftCollection.getCollectionData(); | ||
| expect(collection_data.nextItemId).toBe(BigInt(1)); | ||
| }); | ||
|
|
||
| it ('should return 401 error if mint item was requested by non-owner', async () => { | ||
| const nonOwnerWallet = await blockchain.treasury("non-owner"); | ||
| const nftOwner = await blockchain.treasury('NewNFTOwner'); | ||
|
|
||
| const result = await nftCollection.sendMintNft(nonOwnerWallet.getSender(), { | ||
| value: toNano("0.02"), | ||
| queryId: Math.floor(Math.random() * 10000), | ||
| amount: toNano("0.014"), | ||
| itemIndex: 0, | ||
| itemOwnerAddress: nftOwner.getSender().address!!, | ||
| itemContent: nftItemContent | ||
| }); | ||
| // check that tx failed with 401 exit code | ||
| expect(result.transactions).toHaveTransaction({ | ||
| to: nftCollection.address, | ||
| value: toNano("0.02"), | ||
| exitCode: 401, | ||
| op: 1, | ||
| success: false | ||
| }); | ||
| }) | ||
|
|
||
| }); | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need these params from .env?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't hardcoded data more demonstrative?