mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
4c37448c97
* added ipfs toggle * added placeholder valur * fixed snapshot * updated tests * updated spec file * hide input if toggle is disabled * updated e2e tests for nft image * fixed view-ercc-1155 spec * updated e2e tests for nfts * added ipfs toggle modal * updated UI for ipfs * updated tests * updated classname * added placeholder image * lint fix * removed prop ipfsEnabled and used with selector * fixed ui for ipfs toggle * updated test * updated test to handle cases * nit fix * ensure default image height match nft image
73 lines
2.5 KiB
JavaScript
73 lines
2.5 KiB
JavaScript
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().withNftControllerERC1155().build(),
|
|
ganacheOptions,
|
|
smartContract,
|
|
title: this.test.title,
|
|
},
|
|
async ({ driver }) => {
|
|
await driver.navigate();
|
|
await driver.fill('#password', 'correct horse battery staple');
|
|
await driver.press('#password', driver.Key.ENTER);
|
|
|
|
// Click to open the NFT details page and check displayed account
|
|
await driver.clickElement('[data-testid="home__nfts-tab"]');
|
|
const importedNftImage = await driver.findVisibleElement(
|
|
'.nft-item__container',
|
|
);
|
|
await importedNftImage.click();
|
|
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-item__container');
|
|
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');
|
|
},
|
|
);
|
|
});
|
|
});
|