Fixed firefox Snaps + add initial end-to-end tests (#13671)
* Changed registryUrl for snaps only in firefox Fixed getPlatform to only be imported into metamask-controller in flask Removed snaps specific testrunner script and use run-all with a cli option * Fixed flakey tests * Removed unneeded await * Added delay * Fixed lintingfeature/default_network_editable
parent
0e41bd4399
commit
1f55af3151
@ -0,0 +1,98 @@ |
||||
const { strict: assert } = require('assert'); |
||||
const { withFixtures } = require('../helpers'); |
||||
|
||||
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, |
||||
driverOptions: { |
||||
type: 'flask', |
||||
}, |
||||
}, |
||||
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('https://metamask.github.io/test-snaps/'); |
||||
await driver.fill('.snapId', 'npm:@metamask/test-snap-confirm'); |
||||
await driver.clickElement({ |
||||
text: 'Connect To Confirm Snap', |
||||
tag: 'button', |
||||
}); |
||||
|
||||
// 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); |
||||
await driver.clickElement({ |
||||
text: 'Send Inputs to Hello Snap', |
||||
tag: 'button', |
||||
}); |
||||
|
||||
// hit 'approve' on the custom confirm
|
||||
await driver.waitUntilXWindowHandles(2, 5000, 10000); |
||||
windowHandles = await driver.getAllWindowHandles(); |
||||
await driver.switchToWindowWithTitle( |
||||
'MetaMask Notification', |
||||
windowHandles, |
||||
); |
||||
await driver.clickElement({ |
||||
text: 'Approve', |
||||
tag: 'button', |
||||
}); |
||||
|
||||
// check the results of the custom confirm
|
||||
await driver.waitUntilXWindowHandles(1, 5000, 10000); |
||||
windowHandles = await driver.getAllWindowHandles(); |
||||
await driver.switchToWindowWithTitle('Test Snaps', windowHandles); |
||||
const confirmResult = await driver.findElement('.sendResults'); |
||||
assert.equal(await confirmResult.getText(), 'true'); |
||||
}, |
||||
); |
||||
}); |
||||
}); |
@ -0,0 +1,90 @@ |
||||
const { strict: assert } = require('assert'); |
||||
const { withFixtures } = require('../helpers'); |
||||
const { PAGES } = require('../webdriver/driver'); |
||||
|
||||
describe('Test Snap Error', function () { |
||||
it('can pop up a snap error and see the error', async function () { |
||||
const ganacheOptions = { |
||||
accounts: [ |
||||
{ |
||||
secretKey: |
||||
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC', |
||||
balance: 25000000000000000000, |
||||
}, |
||||
], |
||||
}; |
||||
await withFixtures( |
||||
{ |
||||
fixtures: 'imported-account', |
||||
ganacheOptions, |
||||
title: this.test.title, |
||||
driverOptions: { type: 'flask' }, |
||||
}, |
||||
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('https://metamask.github.io/test-snaps/'); |
||||
await driver.fill('.snapId2', 'npm:@metamask/test-snap-error'); |
||||
await driver.clickElement({ |
||||
text: 'Connect Error Snap', |
||||
tag: 'button', |
||||
}); |
||||
|
||||
// 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
|
||||
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); |
||||
await driver.clickElement({ |
||||
text: 'Send Test to Error Snap', |
||||
tag: 'button', |
||||
}); |
||||
|
||||
await driver.navigate(PAGES.HOME); |
||||
|
||||
const error = await driver.findElement( |
||||
'.home-notification__content-container', |
||||
); |
||||
const text = await error.getText(); |
||||
assert.equal( |
||||
text.includes( |
||||
"Snap Error: 'random error inside'. Error Code: '-32603'", |
||||
), |
||||
true, |
||||
); |
||||
}, |
||||
); |
||||
}); |
||||
}); |
Loading…
Reference in new issue