1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 01:47:00 +01:00

e2e test view erc1155 details (#17942)

This commit is contained in:
chloeYue 2023-03-06 16:04:53 +01:00 committed by GitHub
parent a5dcc60697
commit 4e807a967a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,78 @@
const { strict: assert } = require('assert');
const { convertToHexValue, withFixtures } = require('../helpers');
const { SMART_CONTRACTS } = require('../seeder/smart-contracts');
const FixtureBuilder = require('../fixture-builder');
describe('View ERC1155 NFT details', function () {
const smartContract = SMART_CONTRACTS.ERC1155;
const ganacheOptions = {
accounts: [
{
secretKey:
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
balance: convertToHexValue(25000000000000000000),
},
],
};
it('user should be able to view ERC1155 NFT details', async function () {
const expectedImageSource =
'https://bafkreifvhjdf6ve4jfv6qytqtux5nd4nwnelioeiqx5x2ez5yrgrzk7ypi.ipfs.dweb.link';
await withFixtures(
{
dapp: true,
fixtures: new FixtureBuilder().build(),
ganacheOptions,
smartContract,
title: this.test.title,
},
async ({ driver, _, contractRegistry }) => {
const contractAddress =
contractRegistry.getContractAddress(smartContract);
await driver.navigate();
await driver.fill('#password', 'correct horse battery staple');
await driver.press('#password', driver.Key.ENTER);
// After login, go to NFTs tab and import an ERC1155 NFT
await driver.clickElement('[data-testid="home__nfts-tab"]');
await driver.clickElement({ text: 'Import NFTs', tag: 'a' });
await driver.fill('[data-testid="address"]', contractAddress);
await driver.fill('[data-testid="token-id"]', '1');
await driver.clickElement({ text: 'Add', tag: 'button' });
// Click to open the NFT details page and check displayed account
await driver.clickElement('.nfts-items__item-image');
const detailsPageAccount = await driver.findElement(
'.asset-breadcrumb span:nth-of-type(2)',
);
assert.equal(await detailsPageAccount.getText(), 'Account 1');
// Check the displayed ERC1155 NFT details
const nftName = await driver.findElement('.nft-details__info h4');
assert.equal(await nftName.getText(), 'Rocks');
const nftDescription = await driver.findElement(
'.nft-details__info h6:nth-of-type(2)',
);
assert.equal(
await nftDescription.getText(),
'This is a collection of Rock NFTs.',
);
const nftImage = await driver.findElement('.nft-details__image');
assert.equal(await nftImage.isDisplayed(), true);
const nftImageSource = await driver.findElement(
'.nft-details__image-source',
);
assert.equal(await nftImageSource.getText(), expectedImageSource);
const nftContract = await driver.findElement(
'.nft-details__contract-wrapper',
);
assert.equal(await nftContract.getText(), '0x581...5947');
},
);
});
});