2023-02-02 20:01:41 +01:00
|
|
|
|
const { strict: assert } = require('assert');
|
|
|
|
|
const { convertToHexValue, withFixtures } = require('../helpers');
|
|
|
|
|
const { SMART_CONTRACTS } = require('../seeder/smart-contracts');
|
|
|
|
|
const FixtureBuilder = require('../fixture-builder');
|
|
|
|
|
|
|
|
|
|
describe('Import NFT', function () {
|
2023-02-16 20:23:29 +01:00
|
|
|
|
const smartContract = SMART_CONTRACTS.NFTS;
|
2023-02-02 20:01:41 +01:00
|
|
|
|
const ganacheOptions = {
|
|
|
|
|
accounts: [
|
|
|
|
|
{
|
|
|
|
|
secretKey:
|
|
|
|
|
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
|
|
|
|
|
balance: convertToHexValue(25000000000000000000),
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
it('should be able to import an NFT that user owns', async function () {
|
|
|
|
|
await withFixtures(
|
|
|
|
|
{
|
|
|
|
|
dapp: true,
|
|
|
|
|
fixtures: new FixtureBuilder()
|
|
|
|
|
.withPermissionControllerConnectedToTestDapp()
|
|
|
|
|
.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, open the import NFT form
|
|
|
|
|
await driver.clickElement('[data-testid="home__nfts-tab"]');
|
2023-06-27 08:35:31 +02:00
|
|
|
|
await driver.clickElement({ text: 'Import NFT', tag: 'button' });
|
2023-02-02 20:01:41 +01:00
|
|
|
|
|
|
|
|
|
// Enter a valid NFT that belongs to user and check success message appears
|
2023-07-14 18:18:41 +02:00
|
|
|
|
await driver.fill('#address', contractAddress);
|
|
|
|
|
await driver.fill('#token-id', '1');
|
|
|
|
|
await driver.clickElement(
|
|
|
|
|
'[data-testid="import-nfts-modal-import-button"]',
|
|
|
|
|
);
|
2023-02-02 20:01:41 +01:00
|
|
|
|
|
|
|
|
|
const newNftNotification = await driver.findElement({
|
2023-02-10 16:36:58 +01:00
|
|
|
|
text: 'NFT was successfully added!',
|
2023-02-02 20:01:41 +01:00
|
|
|
|
tag: 'h6',
|
|
|
|
|
});
|
|
|
|
|
assert.equal(await newNftNotification.isDisplayed(), true);
|
|
|
|
|
|
|
|
|
|
// Check the imported NFT and its image are displayed in the NFT tab
|
|
|
|
|
const importedNft = await driver.waitForSelector({
|
|
|
|
|
css: 'h5',
|
2023-06-15 22:18:12 +02:00
|
|
|
|
text: 'TestDappNFTs',
|
2023-02-02 20:01:41 +01:00
|
|
|
|
});
|
|
|
|
|
const importedNftImage = await driver.findElement(
|
2023-06-04 18:28:48 +02:00
|
|
|
|
'.nft-item__item-image',
|
2023-02-02 20:01:41 +01:00
|
|
|
|
);
|
|
|
|
|
assert.equal(await importedNft.isDisplayed(), true);
|
|
|
|
|
assert.equal(await importedNftImage.isDisplayed(), true);
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
2023-02-07 23:34:04 +01:00
|
|
|
|
it('should not be able to import an NFT that does not belong to user', async function () {
|
2023-02-02 20:01:41 +01:00
|
|
|
|
await withFixtures(
|
|
|
|
|
{
|
|
|
|
|
dapp: true,
|
|
|
|
|
fixtures: new FixtureBuilder()
|
|
|
|
|
.withPermissionControllerConnectedToTestDapp()
|
|
|
|
|
.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, open the import NFT form
|
|
|
|
|
await driver.clickElement('[data-testid="home__nfts-tab"]');
|
2023-06-27 08:35:31 +02:00
|
|
|
|
await driver.clickElement({ text: 'Import NFT', tag: 'button' });
|
2023-02-02 20:01:41 +01:00
|
|
|
|
|
|
|
|
|
// Enter an NFT that not belongs to user with a valid address and an invalid token id
|
2023-07-14 18:18:41 +02:00
|
|
|
|
await driver.fill('#address', contractAddress);
|
|
|
|
|
await driver.fill('#token-id', '2');
|
|
|
|
|
await driver.clickElement(
|
|
|
|
|
'[data-testid="import-nfts-modal-import-button"]',
|
|
|
|
|
);
|
2023-02-02 20:01:41 +01:00
|
|
|
|
|
|
|
|
|
// Check error message appears
|
|
|
|
|
const invalidNftNotification = await driver.findElement({
|
|
|
|
|
text: 'NFT can’t be added as the ownership details do not match. Make sure you have entered correct information.',
|
2023-07-14 18:18:41 +02:00
|
|
|
|
tag: 'p',
|
2023-02-02 20:01:41 +01:00
|
|
|
|
});
|
|
|
|
|
assert.equal(await invalidNftNotification.isDisplayed(), true);
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
});
|