mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 15:50:28 +01:00
adb50d1357
* Add a delay after connecting This addresses an intermittent test failure where the MetaMask Notification window cannot be found. It appears to be caused by the Send button being clicked too soon after connecting to a dapp, before the background has had a chance to process the approval. The premature send is ignored and the window never appears. This delay (2 seconds) should be sufficient time for the connection to be processed. A later 5-second delay was also reduced to 2 seconds. * Select onboarding buttons by button text The onboarding buttons were being selected using the classname, which was common to all onboarding buttons. This resulting in buttons being selected just before a page transition, leading to an error about the element reference being stale when a click was attempted. The CSS class selectors have been replaced by text selectors, which are more specific and shouldn't be at risk of resolving early. They're also easier to read. * Remove retypeSeedPhrase function This function was used to re-type the seed phrase in the event that a failure occurred when confirming the seed phrase. I'm not sure what failure this was meant to address exactly, but this contingency hasn't been needed for some time. We can tell that it hasn't been used because it wasn't updated for the incremental account security changes, so it couldn't have worked since then (it would have clicked the wrong button).
305 lines
8.7 KiB
JavaScript
305 lines
8.7 KiB
JavaScript
const assert = require('assert')
|
|
const webdriver = require('selenium-webdriver')
|
|
const { By } = webdriver
|
|
const {
|
|
delay,
|
|
} = require('./func')
|
|
const {
|
|
checkBrowserForConsoleErrors,
|
|
findElement,
|
|
findElements,
|
|
openNewPage,
|
|
switchToWindowWithTitle,
|
|
verboseReportOnFailure,
|
|
waitUntilXWindowHandles,
|
|
setupFetchMocking,
|
|
prepareExtensionForTesting,
|
|
} = require('./helpers')
|
|
const enLocaleMessages = require('../../app/_locales/en/messages.json')
|
|
|
|
describe('Using MetaMask with an existing account', function () {
|
|
let driver
|
|
|
|
const testSeedPhrase = 'forum vessel pink push lonely enact gentle tail admit parrot grunt dress'
|
|
const regularDelayMs = 1000
|
|
const largeDelayMs = regularDelayMs * 2
|
|
|
|
const button = async (x) => {
|
|
const buttoncheck = x
|
|
await buttoncheck.click()
|
|
await delay(largeDelayMs)
|
|
const [results] = await findElements(driver, By.css('#results'))
|
|
const resulttext = await results.getText()
|
|
var parsedData = JSON.parse(resulttext)
|
|
|
|
return (parsedData)
|
|
|
|
}
|
|
|
|
this.timeout(0)
|
|
this.bail(true)
|
|
|
|
before(async function () {
|
|
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 driver.quit()
|
|
})
|
|
|
|
describe('First time flow starting from an existing seed phrase', () => {
|
|
it('clicks the continue button on the welcome screen', async () => {
|
|
await findElement(driver, By.css('.welcome-page__header'))
|
|
const welcomeScreenBtn = await findElement(driver, By.xpath(`//button[contains(text(), '${enLocaleMessages.getStarted.message}')]`))
|
|
welcomeScreenBtn.click()
|
|
await delay(largeDelayMs)
|
|
})
|
|
|
|
it('clicks the "Import Wallet" option', async () => {
|
|
const customRpcButton = await findElement(driver, By.xpath(`//button[contains(text(), 'Import Wallet')]`))
|
|
customRpcButton.click()
|
|
await delay(largeDelayMs)
|
|
})
|
|
|
|
it('clicks the "No thanks" option on the metametrics opt-in screen', async () => {
|
|
const optOutButton = await findElement(driver, By.css('.btn-default'))
|
|
optOutButton.click()
|
|
await delay(largeDelayMs)
|
|
})
|
|
|
|
it('imports a seed phrase', async () => {
|
|
const [seedTextArea] = await findElements(driver, By.css('textarea.first-time-flow__textarea'))
|
|
await seedTextArea.sendKeys(testSeedPhrase)
|
|
await delay(regularDelayMs)
|
|
|
|
const [password] = await findElements(driver, By.id('password'))
|
|
await password.sendKeys('correct horse battery staple')
|
|
const [confirmPassword] = await findElements(driver, By.id('confirm-password'))
|
|
confirmPassword.sendKeys('correct horse battery staple')
|
|
|
|
const tosCheckBox = await findElement(driver, By.css('.first-time-flow__checkbox'))
|
|
await tosCheckBox.click()
|
|
|
|
const [importButton] = await findElements(driver, By.xpath(`//button[contains(text(), 'Import')]`))
|
|
await importButton.click()
|
|
await delay(regularDelayMs)
|
|
})
|
|
|
|
it('clicks through the success screen', async () => {
|
|
await findElement(driver, By.xpath(`//div[contains(text(), 'Congratulations')]`))
|
|
const doneButton = await findElement(driver, By.xpath(`//button[contains(text(), '${enLocaleMessages.endOfFlowMessage10.message}')]`))
|
|
await doneButton.click()
|
|
await delay(regularDelayMs)
|
|
})
|
|
})
|
|
|
|
|
|
describe('opens dapp', () => {
|
|
|
|
it('switches to mainnet', async () => {
|
|
const networkDropdown = await findElement(driver, By.css('.network-name'))
|
|
await networkDropdown.click()
|
|
await delay(regularDelayMs)
|
|
|
|
const [mainnet] = await findElements(driver, By.xpath(`//span[contains(text(), 'Main Ethereum Network')]`))
|
|
await mainnet.click()
|
|
await delay(largeDelayMs * 2)
|
|
})
|
|
|
|
it('connects to dapp', async () => {
|
|
await openNewPage(driver, 'http://127.0.0.1:8080/')
|
|
await delay(regularDelayMs)
|
|
|
|
await waitUntilXWindowHandles(driver, 3)
|
|
const windowHandles = await driver.getAllWindowHandles()
|
|
|
|
const extension = windowHandles[0]
|
|
const popup = await switchToWindowWithTitle(driver, 'MetaMask Notification', windowHandles)
|
|
const dapp = windowHandles.find(handle => handle !== extension && handle !== popup)
|
|
|
|
await delay(regularDelayMs)
|
|
const approveButton = await findElement(driver, By.xpath(`//button[contains(text(), 'Connect')]`))
|
|
await approveButton.click()
|
|
|
|
await driver.switchTo().window(dapp)
|
|
await delay(regularDelayMs)
|
|
})
|
|
})
|
|
|
|
describe('testing web3 methods', async () => {
|
|
|
|
|
|
it('testing hexa methods', async () => {
|
|
|
|
|
|
var List = await driver.findElements(By.className('hexaNumberMethods'))
|
|
|
|
for (let i = 0; i < List.length; i++) {
|
|
try {
|
|
|
|
var parsedData = await button(List[i])
|
|
console.log(parsedData)
|
|
var result = parseInt(parsedData.result, 16)
|
|
|
|
assert.equal((typeof result === 'number'), true)
|
|
await delay(regularDelayMs)
|
|
} catch (err) {
|
|
console.log(err)
|
|
assert(false)
|
|
|
|
}
|
|
}
|
|
})
|
|
|
|
it('testing booleanMethods', async () => {
|
|
|
|
var List = await driver.findElements(By.className('booleanMethods'))
|
|
|
|
for (let i = 0; i < List.length; i++) {
|
|
try {
|
|
|
|
var parsedData = await button(List[i])
|
|
console.log(parsedData)
|
|
var result = parsedData.result
|
|
|
|
assert.equal(result, false)
|
|
await delay(regularDelayMs)
|
|
} catch (err) {
|
|
console.log(err)
|
|
assert(false)
|
|
|
|
|
|
}
|
|
}
|
|
|
|
})
|
|
|
|
it('testing transactionMethods', async () => {
|
|
|
|
var List = await driver.findElements(By.className('transactionMethods'))
|
|
|
|
for (let i = 0; i < List.length; i++) {
|
|
try {
|
|
|
|
var parsedData = await button(List[i])
|
|
|
|
console.log(parsedData.result.blockHash)
|
|
|
|
var result = []
|
|
result.push(parseInt(parsedData.result.blockHash, 16))
|
|
result.push(parseInt(parsedData.result.blockNumber, 16))
|
|
result.push(parseInt(parsedData.result.gas, 16))
|
|
result.push(parseInt(parsedData.result.gasPrice, 16))
|
|
result.push(parseInt(parsedData.result.hash, 16))
|
|
result.push(parseInt(parsedData.result.input, 16))
|
|
result.push(parseInt(parsedData.result.nonce, 16))
|
|
result.push(parseInt(parsedData.result.r, 16))
|
|
result.push(parseInt(parsedData.result.s, 16))
|
|
result.push(parseInt(parsedData.result.v, 16))
|
|
result.push(parseInt(parsedData.result.to, 16))
|
|
result.push(parseInt(parsedData.result.value, 16))
|
|
|
|
|
|
result.forEach((value) => {
|
|
assert.equal((typeof value === 'number'), true)
|
|
})
|
|
|
|
|
|
} catch (err) {
|
|
|
|
console.log(err)
|
|
assert(false)
|
|
|
|
|
|
}
|
|
}
|
|
|
|
})
|
|
|
|
it('testing blockMethods', async () => {
|
|
|
|
var List = await driver.findElements(By.className('blockMethods'))
|
|
|
|
for (let i = 0; i < List.length; i++) {
|
|
try {
|
|
|
|
var parsedData = await button(List[i])
|
|
console.log(JSON.stringify(parsedData) + i)
|
|
|
|
console.log(parsedData.result.parentHash)
|
|
|
|
var result = parseInt(parsedData.result.parentHash, 16)
|
|
|
|
assert.equal((typeof result === 'number'), true)
|
|
await delay(regularDelayMs)
|
|
} catch (err) {
|
|
|
|
console.log(err)
|
|
assert(false)
|
|
|
|
|
|
}
|
|
}
|
|
})
|
|
|
|
it('testing methods', async () => {
|
|
|
|
var List = await driver.findElements(By.className('methods'))
|
|
var parsedData
|
|
var result
|
|
|
|
for (let i = 0; i < List.length; i++) {
|
|
try {
|
|
|
|
if (i === 2) {
|
|
|
|
parsedData = await button(List[i])
|
|
console.log(parsedData.result.blockHash)
|
|
|
|
result = parseInt(parsedData.result.blockHash, 16)
|
|
|
|
assert.equal((typeof result === 'number' || (result === 0)), true)
|
|
await delay(regularDelayMs)
|
|
} else {
|
|
parsedData = await button(List[i])
|
|
console.log(parsedData.result)
|
|
|
|
result = parseInt(parsedData.result, 16)
|
|
|
|
assert.equal((typeof result === 'number' || (result === 0)), true)
|
|
await delay(regularDelayMs)
|
|
}
|
|
|
|
|
|
} catch (err) {
|
|
|
|
console.log(err)
|
|
assert(false)
|
|
|
|
|
|
}
|
|
}
|
|
})
|
|
|
|
|
|
})
|
|
|
|
|
|
})
|