mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
eadeaa7883
* Add network store for testing An alternative persistent state store has been created for use with e2e tests. Instead of reading state from disk, it tries to load state from a local fixture server running on port `12345` and serving state from the path `/state.json`, and returns a blank state otherwise. * Add e2e test fixture server A fixture server has been added for serving background state, which the background will read upon startup as part of restoring persisted state. The `signature-request` e2e test has been updated to use a fixture to bypass the registration step. The fixture used (`imported-account`) was generated by pausing midway through that test run
155 lines
5.3 KiB
JavaScript
155 lines
5.3 KiB
JavaScript
const assert = require('assert')
|
|
const path = require('path')
|
|
const webdriver = require('selenium-webdriver')
|
|
const { By, Key, until } = webdriver
|
|
const {
|
|
checkBrowserForConsoleErrors,
|
|
delay,
|
|
findElement,
|
|
findElements,
|
|
openNewPage,
|
|
verboseReportOnFailure,
|
|
waitUntilXWindowHandles,
|
|
switchToWindowWithTitle,
|
|
setupFetchMocking,
|
|
prepareExtensionForTesting,
|
|
} = require('./helpers')
|
|
const Ganache = require('./ganache')
|
|
const FixtureServer = require('./fixture-server')
|
|
|
|
const fixtureServer = new FixtureServer()
|
|
|
|
const ganacheServer = new Ganache()
|
|
|
|
describe('MetaMask', function () {
|
|
let driver
|
|
let publicAddress
|
|
|
|
const tinyDelayMs = 200
|
|
const regularDelayMs = tinyDelayMs * 2
|
|
const largeDelayMs = regularDelayMs * 2
|
|
|
|
this.timeout(0)
|
|
this.bail(true)
|
|
|
|
before(async function () {
|
|
await ganacheServer.start()
|
|
await fixtureServer.start()
|
|
await fixtureServer.loadState(path.join(__dirname, 'fixtures', 'imported-account'))
|
|
publicAddress = '0x5cfe73b6021e818b776b421b1c4db2474086a7e1'
|
|
const result = await prepareExtensionForTesting()
|
|
driver = result.driver
|
|
await setupFetchMocking(driver)
|
|
})
|
|
|
|
afterEach(async function () {
|
|
if (process.env.SELENIUM_BROWSER === 'chrome') {
|
|
const errors = await checkBrowserForConsoleErrors(driver)
|
|
if (errors.length) {
|
|
const errorReports = errors.map(err => err.message)
|
|
const errorMessage = `Errors found in browser console:\n${errorReports.join('\n')}`
|
|
console.error(new Error(errorMessage))
|
|
}
|
|
}
|
|
if (this.currentTest.state === 'failed') {
|
|
await verboseReportOnFailure(driver, this.currentTest)
|
|
}
|
|
})
|
|
|
|
after(async function () {
|
|
await ganacheServer.quit()
|
|
await fixtureServer.stop()
|
|
await driver.quit()
|
|
})
|
|
|
|
describe('successfuly signs typed data', () => {
|
|
let extension
|
|
let popup
|
|
let dapp
|
|
let windowHandles
|
|
|
|
it('accepts the account password after lock', async () => {
|
|
await delay(1000)
|
|
await driver.findElement(By.id('password')).sendKeys('correct horse battery staple')
|
|
await driver.findElement(By.id('password')).sendKeys(Key.ENTER)
|
|
await delay(largeDelayMs * 4)
|
|
})
|
|
|
|
it('connects to the dapp', async () => {
|
|
await openNewPage(driver, 'http://127.0.0.1:8080/')
|
|
await delay(regularDelayMs)
|
|
|
|
const connectButton = await findElement(driver, By.xpath(`//button[contains(text(), 'Connect')]`))
|
|
await connectButton.click()
|
|
|
|
await delay(regularDelayMs)
|
|
|
|
await waitUntilXWindowHandles(driver, 3)
|
|
const windowHandles = await driver.getAllWindowHandles()
|
|
|
|
extension = windowHandles[0]
|
|
dapp = await switchToWindowWithTitle(driver, 'E2E Test Dapp', windowHandles)
|
|
popup = windowHandles.find(handle => handle !== extension && handle !== dapp)
|
|
|
|
await driver.switchTo().window(popup)
|
|
|
|
await delay(regularDelayMs)
|
|
|
|
const accountButton = await findElement(driver, By.css('.permissions-connect-choose-account__account'))
|
|
await accountButton.click()
|
|
|
|
const submitButton = await findElement(driver, By.xpath(`//button[contains(text(), 'Submit')]`))
|
|
await submitButton.click()
|
|
|
|
await waitUntilXWindowHandles(driver, 2)
|
|
await driver.switchTo().window(dapp)
|
|
})
|
|
|
|
it('creates a sign typed data signature request', async () => {
|
|
const signTypedMessage = await findElement(driver, By.xpath(`//button[contains(text(), 'Sign')]`), 10000)
|
|
await signTypedMessage.click()
|
|
await delay(largeDelayMs)
|
|
|
|
await delay(regularDelayMs)
|
|
windowHandles = await driver.getAllWindowHandles()
|
|
await switchToWindowWithTitle(driver, 'MetaMask Notification', windowHandles)
|
|
await delay(regularDelayMs)
|
|
|
|
const title = await findElement(driver, By.css('.signature-request-content__title'))
|
|
const name = await findElement(driver, By.css('.signature-request-content__info--bolded'))
|
|
const content = await findElements(driver, By.css('.signature-request-content__info'))
|
|
const origin = content[0]
|
|
const address = content[1]
|
|
assert.equal(await title.getText(), 'Signature Request')
|
|
assert.equal(await name.getText(), 'Ether Mail')
|
|
assert.equal(await origin.getText(), '127.0.0.1')
|
|
assert.equal(await address.getText(), publicAddress.slice(0, 8) + '...' + publicAddress.slice(publicAddress.length - 8))
|
|
})
|
|
|
|
it('signs the transaction', async () => {
|
|
const signButton = await findElement(driver, By.xpath(`//button[contains(text(), 'Sign')]`), 10000)
|
|
await signButton.click()
|
|
await delay(regularDelayMs)
|
|
|
|
extension = windowHandles[0]
|
|
await driver.switchTo().window(extension)
|
|
})
|
|
|
|
it('gets the current accounts address', async () => {
|
|
const detailsButton = await findElement(driver, By.css('.account-details__details-button'))
|
|
await detailsButton.click()
|
|
await delay(regularDelayMs)
|
|
|
|
const addressInput = await findElement(driver, By.css('.qr-ellip-address'))
|
|
const newPublicAddress = await addressInput.getAttribute('value')
|
|
const accountModal = await driver.findElement(By.css('span .modal'))
|
|
|
|
await driver.executeScript("document.querySelector('.account-modal-close').click()")
|
|
|
|
await driver.wait(until.stalenessOf(accountModal))
|
|
await delay(regularDelayMs)
|
|
assert.equal(newPublicAddress.toLowerCase(), publicAddress)
|
|
})
|
|
})
|
|
})
|