[FLASK] Add E2E for `wallet_getSnaps` (#16169)
* Add E2E for wallet_getSnaps * Fix lintfeature/default_network_editable
parent
1b4f1344b1
commit
6ba9f65b4c
@ -0,0 +1,122 @@ |
||||
const { strict: assert } = require('assert'); |
||||
const { withFixtures } = require('../helpers'); |
||||
const { TEST_SNAPS_WEBSITE_URL } = require('./enums'); |
||||
|
||||
describe('Test Snap Confirm', function () { |
||||
it('can pop up a snap confirm and get its result', async function () { |
||||
const ganacheOptions = { |
||||
accounts: [ |
||||
{ |
||||
secretKey: |
||||
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC', |
||||
balance: 25000000000000000000, |
||||
}, |
||||
], |
||||
}; |
||||
await withFixtures( |
||||
{ |
||||
fixtures: 'imported-account', |
||||
ganacheOptions, |
||||
title: this.test.title, |
||||
}, |
||||
async ({ driver }) => { |
||||
await driver.navigate(); |
||||
|
||||
// enter pw into extension
|
||||
await driver.fill('#password', 'correct horse battery staple'); |
||||
await driver.press('#password', driver.Key.ENTER); |
||||
|
||||
// navigate to test snaps page and connect
|
||||
await driver.driver.get(TEST_SNAPS_WEBSITE_URL); |
||||
await driver.fill('#snapId1', 'npm:@metamask/test-snap-confirm'); |
||||
await driver.clickElement('#connectHello'); |
||||
|
||||
// switch to metamask extension and click connect
|
||||
await driver.waitUntilXWindowHandles(2, 5000, 10000); |
||||
let windowHandles = await driver.getAllWindowHandles(); |
||||
await driver.switchToWindowWithTitle( |
||||
'MetaMask Notification', |
||||
windowHandles, |
||||
); |
||||
await driver.clickElement( |
||||
{ |
||||
text: 'Connect', |
||||
tag: 'button', |
||||
}, |
||||
10000, |
||||
); |
||||
|
||||
await driver.delay(2000); |
||||
|
||||
// approve install of snap
|
||||
await driver.waitUntilXWindowHandles(2, 5000, 10000); |
||||
windowHandles = await driver.getAllWindowHandles(); |
||||
await driver.switchToWindowWithTitle( |
||||
'MetaMask Notification', |
||||
windowHandles, |
||||
); |
||||
await driver.clickElement({ |
||||
text: 'Approve & install', |
||||
tag: 'button', |
||||
}); |
||||
|
||||
// click send inputs on test snap page
|
||||
await driver.waitUntilXWindowHandles(1, 5000, 10000); |
||||
windowHandles = await driver.getAllWindowHandles(); |
||||
await driver.switchToWindowWithTitle('Test Snaps', windowHandles); |
||||
|
||||
const errorButton = await driver.findElement('#connectError'); |
||||
await driver.scrollToElement(errorButton); |
||||
await driver.delay(1000); |
||||
await driver.fill('#snapId2', 'npm:@metamask/test-snap-error'); |
||||
await driver.clickElement('#connectError'); |
||||
|
||||
// switch to metamask extension and click connect
|
||||
await driver.waitUntilXWindowHandles(2, 5000, 10000); |
||||
windowHandles = await driver.getAllWindowHandles(); |
||||
await driver.switchToWindowWithTitle( |
||||
'MetaMask Notification', |
||||
windowHandles, |
||||
); |
||||
await driver.clickElement( |
||||
{ |
||||
text: 'Connect', |
||||
tag: 'button', |
||||
}, |
||||
10000, |
||||
); |
||||
|
||||
await driver.delay(2000); |
||||
|
||||
// approve install of snap
|
||||
windowHandles = await driver.getAllWindowHandles(); |
||||
await driver.switchToWindowWithTitle( |
||||
'MetaMask Notification', |
||||
windowHandles, |
||||
); |
||||
await driver.clickElement({ |
||||
text: 'Approve & install', |
||||
tag: 'button', |
||||
}); |
||||
|
||||
await driver.waitUntilXWindowHandles(1, 5000, 10000); |
||||
windowHandles = await driver.getAllWindowHandles(); |
||||
await driver.switchToWindowWithTitle('Test Snaps', windowHandles); |
||||
|
||||
const getInstalledSnapsButton = await driver.findElement( |
||||
'#getInstalledSnapsButton', |
||||
); |
||||
await driver.scrollToElement(getInstalledSnapsButton); |
||||
await driver.delay(1000); |
||||
await driver.clickElement('#getInstalledSnapsButton'); |
||||
await driver.delay(1000); |
||||
|
||||
const result = await driver.findElement('#getInstalledSnapsResult'); |
||||
assert.equal( |
||||
await result.getText(), |
||||
'npm:@metamask/test-snap-confirm, npm:@metamask/test-snap-error', |
||||
); |
||||
}, |
||||
); |
||||
}); |
||||
}); |
Loading…
Reference in new issue