|
|
|
const assert = require('assert')
|
|
|
|
const webdriver = require('selenium-webdriver')
|
|
|
|
|
|
|
|
const { By, Key, until } = webdriver
|
|
|
|
const {
|
|
|
|
tinyDelayMs,
|
|
|
|
regularDelayMs,
|
|
|
|
largeDelayMs,
|
|
|
|
} = require('./helpers')
|
|
|
|
const { buildWebDriver } = require('./webdriver')
|
|
|
|
const Ganache = require('./ganache')
|
|
|
|
const enLocaleMessages = require('../../app/_locales/en/messages.json')
|
|
|
|
|
|
|
|
const ganacheServer = new Ganache()
|
|
|
|
|
|
|
|
describe('Using MetaMask with an existing account', function () {
|
|
|
|
let driver
|
|
|
|
|
|
|
|
const testSeedPhrase = 'forum vessel pink push lonely enact gentle tail admit parrot grunt dress'
|
|
|
|
|
|
|
|
this.timeout(0)
|
|
|
|
this.bail(true)
|
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
await ganacheServer.start({
|
|
|
|
accounts: [
|
|
|
|
{
|
|
|
|
secretKey: '0x53CB0AB5226EEBF4D872113D98332C1555DC304443BEE1CF759D15798D3C55A9',
|
|
|
|
balance: 25000000000000000000,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
})
|
|
|
|
const result = await buildWebDriver()
|
|
|
|
driver = result.driver
|
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(async function () {
|
|
|
|
if (process.env.SELENIUM_BROWSER === 'chrome') {
|
|
|
|
const errors = await driver.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 driver.verboseReportOnFailure(driver, this.currentTest)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
after(async function () {
|
|
|
|
await ganacheServer.quit()
|
|
|
|
await driver.quit()
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('First time flow starting from an existing seed phrase', function () {
|
|
|
|
it('clicks the continue button on the welcome screen', async function () {
|
|
|
|
await driver.findElement(By.css('.welcome-page__header'))
|
|
|
|
await driver.clickElement(By.xpath(`//button[contains(text(), '${enLocaleMessages.getStarted.message}')]`))
|
|
|
|
await driver.delay(largeDelayMs)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('clicks the "Import Wallet" option', async function () {
|
|
|
|
await driver.clickElement(By.xpath(`//button[contains(text(), 'Import Wallet')]`))
|
|
|
|
await driver.delay(largeDelayMs)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('clicks the "No thanks" option on the metametrics opt-in screen', async function () {
|
|
|
|
await driver.clickElement(By.css('.btn-default'))
|
|
|
|
await driver.delay(largeDelayMs)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('imports a seed phrase', async function () {
|
|
|
|
const [seedTextArea] = await driver.findElements(By.css('textarea.first-time-flow__textarea'))
|
|
|
|
await seedTextArea.sendKeys(testSeedPhrase)
|
|
|
|
await driver.delay(regularDelayMs)
|
|
|
|
|
|
|
|
const [password] = await driver.findElements(By.id('password'))
|
|
|
|
await password.sendKeys('correct horse battery staple')
|
|
|
|
const [confirmPassword] = await driver.findElements(By.id('confirm-password'))
|
|
|
|
confirmPassword.sendKeys('correct horse battery staple')
|
|
|
|
|
|
|
|
await driver.clickElement(By.css('.first-time-flow__checkbox'))
|
|
|
|
|
|
|
|
await driver.clickElement(By.xpath(`//button[contains(text(), 'Import')]`))
|
|
|
|
await driver.delay(regularDelayMs)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('clicks through the success screen', async function () {
|
|
|
|
await driver.findElement(By.xpath(`//div[contains(text(), 'Congratulations')]`))
|
|
|
|
await driver.clickElement(By.xpath(`//button[contains(text(), '${enLocaleMessages.endOfFlowMessage10.message}')]`))
|
|
|
|
await driver.delay(regularDelayMs)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('Send ETH from inside MetaMask', function () {
|
|
|
|
it('starts a send transaction', async function () {
|
|
|
|
await driver.clickElement(By.xpath(`//button[contains(text(), 'Send')]`))
|
|
|
|
await driver.delay(regularDelayMs)
|
|
|
|
|
|
|
|
const inputAddress = await driver.findElement(By.css('input[placeholder="Search, public address (0x), or ENS"]'))
|
|
|
|
await inputAddress.sendKeys('0x2f318C334780961FB129D2a6c30D0763d9a5C970')
|
|
|
|
|
|
|
|
const inputAmount = await driver.findElement(By.css('.unit-input__input'))
|
|
|
|
await inputAmount.sendKeys('1')
|
|
|
|
|
|
|
|
// Set the gas limit
|
|
|
|
await driver.clickElement(By.css('.advanced-gas-options-btn'))
|
|
|
|
await driver.delay(regularDelayMs)
|
|
|
|
|
|
|
|
const gasModal = await driver.findElement(By.css('span .modal'))
|
|
|
|
|
|
|
|
const [gasPriceInput, gasLimitInput] = await driver.findElements(By.css('.advanced-gas-inputs__gas-edit-row__input'))
|
|
|
|
await gasPriceInput.sendKeys(Key.chord(Key.CONTROL, 'a'))
|
|
|
|
await driver.delay(50)
|
|
|
|
|
|
|
|
|
|
|
|
await gasPriceInput.sendKeys(Key.BACK_SPACE)
|
|
|
|
await driver.delay(50)
|
|
|
|
await gasPriceInput.sendKeys(Key.BACK_SPACE)
|
|
|
|
await driver.delay(50)
|
|
|
|
await gasPriceInput.sendKeys('10')
|
|
|
|
await driver.delay(50)
|
|
|
|
await driver.delay(tinyDelayMs)
|
|
|
|
await driver.delay(50)
|
|
|
|
await gasLimitInput.sendKeys(Key.chord(Key.CONTROL, 'a'))
|
|
|
|
await driver.delay(50)
|
|
|
|
|
|
|
|
await gasLimitInput.sendKeys('25000')
|
|
|
|
|
|
|
|
await driver.delay(1000)
|
Use `AdvancedGasInputs` in `AdvancedTabContent` (#7186)
* Use `AdvancedGasInputs` in `AdvancedTabContent`
The `AdvancedGasInputs` component was originally extracted from the
`AdvancedTabContent` component, duplicating much of the rendering
logic. They have since evolved separately, with bugs being fixed in one
place but not the other.
The inputs and outputs expected weren't exactly the same, as the
`AdvancedGasInputs` component converts the input custom gas price and
limit, and it converts them both in the setter methods as well.
The `GasModalPageContainer` had to be adjusted to avoid converting
these values multiple times.
Both components dealt with input debouncing separately, both in less
than ideal ways. `AdvancedTabContent` didn't debounce either field, but
it did debounce the check for whether the gas limit field was below the
minimum value. So if a less-than-minimum value was set, it would be
propogated upwards and could be saved if the user clicked 'Save'
quickly enough. After a second delay it would snap back to the minimum
value. The `AdvancedGasInputs` component debounced both fields, but
it would replace any gas limit below the minimum with the minimum
value. This led to a problem where a brief pause during typing would
reset the field to 21000.
The `AdvancedGasInputs` approach was chosen, except that it was
updated to no longer change the gas limit if it was below the minimum.
Instead it displays an error. Parent components were checked to ensure
they would detect the error case of the gas limit being set too low,
and prevent the form submission in those cases. Of the three parents,
one had already dealt with it correctly, one needed to convert the
gas limit from hex first, and another needed the gas limit check added.
Closes #6872
* Cleanup send components
Empty README files have been removed, and a mistake in the index file
for the send page has been corrected. The Gas Slider component class
name was updated as well; it looks like it was originally created from
`AdvancedTabContent`, so it still had that class name.
5 years ago
|
|
|
|
|
|
|
await driver.clickElement(By.xpath(`//button[contains(text(), 'Save')]`))
|
|
|
|
await driver.wait(until.stalenessOf(gasModal))
|
|
|
|
await driver.delay(regularDelayMs)
|
|
|
|
|
|
|
|
// Continue to next screen
|
|
|
|
await driver.clickElement(By.xpath(`//button[contains(text(), 'Next')]`))
|
|
|
|
await driver.delay(regularDelayMs)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('has correct value and fee on the confirm screen the transaction', async function () {
|
|
|
|
const transactionAmounts = await driver.findElements(By.css('.currency-display-component__text'))
|
|
|
|
const transactionAmount = transactionAmounts[0]
|
|
|
|
assert.equal(await transactionAmount.getText(), '1')
|
|
|
|
|
|
|
|
const transactionFee = transactionAmounts[1]
|
|
|
|
assert.equal(await transactionFee.getText(), '0.00025')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('edits the transaction', async function () {
|
|
|
|
await driver.clickElement(By.css('.confirm-page-container-header__back-button'))
|
|
|
|
|
|
|
|
await driver.delay(regularDelayMs)
|
|
|
|
|
|
|
|
const inputAmount = await driver.findElement(By.css('.unit-input__input'))
|
|
|
|
await inputAmount.sendKeys(Key.chord(Key.CONTROL, 'a'))
|
|
|
|
await driver.delay(50)
|
|
|
|
await inputAmount.sendKeys(Key.BACK_SPACE)
|
|
|
|
await driver.delay(50)
|
|
|
|
await inputAmount.sendKeys('2.2')
|
|
|
|
|
|
|
|
await driver.clickElement(By.css('.advanced-gas-options-btn'))
|
|
|
|
await driver.delay(regularDelayMs)
|
|
|
|
|
|
|
|
const gasModal = await driver.findElement(By.css('span .modal'))
|
|
|
|
|
|
|
|
const [gasPriceInput, gasLimitInput] = await driver.findElements(By.css('.advanced-gas-inputs__gas-edit-row__input'))
|
|
|
|
await gasPriceInput.sendKeys(Key.chord(Key.CONTROL, 'a'))
|
|
|
|
await driver.delay(50)
|
|
|
|
|
|
|
|
await gasPriceInput.sendKeys(Key.BACK_SPACE)
|
|
|
|
await driver.delay(50)
|
|
|
|
await gasPriceInput.sendKeys(Key.BACK_SPACE)
|
|
|
|
await driver.delay(50)
|
|
|
|
await gasPriceInput.sendKeys('8')
|
|
|
|
await driver.delay(50)
|
|
|
|
await driver.delay(tinyDelayMs)
|
|
|
|
await driver.delay(50)
|
|
|
|
await gasLimitInput.sendKeys(Key.chord(Key.CONTROL, 'a'))
|
|
|
|
await driver.delay(50)
|
|
|
|
|
|
|
|
await gasLimitInput.sendKeys('100000')
|
|
|
|
|
|
|
|
await driver.delay(1000)
|
Use `AdvancedGasInputs` in `AdvancedTabContent` (#7186)
* Use `AdvancedGasInputs` in `AdvancedTabContent`
The `AdvancedGasInputs` component was originally extracted from the
`AdvancedTabContent` component, duplicating much of the rendering
logic. They have since evolved separately, with bugs being fixed in one
place but not the other.
The inputs and outputs expected weren't exactly the same, as the
`AdvancedGasInputs` component converts the input custom gas price and
limit, and it converts them both in the setter methods as well.
The `GasModalPageContainer` had to be adjusted to avoid converting
these values multiple times.
Both components dealt with input debouncing separately, both in less
than ideal ways. `AdvancedTabContent` didn't debounce either field, but
it did debounce the check for whether the gas limit field was below the
minimum value. So if a less-than-minimum value was set, it would be
propogated upwards and could be saved if the user clicked 'Save'
quickly enough. After a second delay it would snap back to the minimum
value. The `AdvancedGasInputs` component debounced both fields, but
it would replace any gas limit below the minimum with the minimum
value. This led to a problem where a brief pause during typing would
reset the field to 21000.
The `AdvancedGasInputs` approach was chosen, except that it was
updated to no longer change the gas limit if it was below the minimum.
Instead it displays an error. Parent components were checked to ensure
they would detect the error case of the gas limit being set too low,
and prevent the form submission in those cases. Of the three parents,
one had already dealt with it correctly, one needed to convert the
gas limit from hex first, and another needed the gas limit check added.
Closes #6872
* Cleanup send components
Empty README files have been removed, and a mistake in the index file
for the send page has been corrected. The Gas Slider component class
name was updated as well; it looks like it was originally created from
`AdvancedTabContent`, so it still had that class name.
5 years ago
|
|
|
|
|
|
|
await driver.clickElement(By.xpath(`//button[contains(text(), 'Save')]`))
|
|
|
|
await driver.wait(until.stalenessOf(gasModal))
|
|
|
|
await driver.delay(regularDelayMs)
|
|
|
|
|
|
|
|
await driver.clickElement(By.xpath(`//button[contains(text(), 'Next')]`))
|
|
|
|
await driver.delay(regularDelayMs)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('has correct updated value on the confirm screen the transaction', async function () {
|
|
|
|
const transactionAmounts = await driver.findElements(By.css('.currency-display-component__text'))
|
|
|
|
const transactionAmount = transactionAmounts[0]
|
|
|
|
assert.equal(await transactionAmount.getText(), '2.2')
|
|
|
|
|
|
|
|
const transactionFee = transactionAmounts[1]
|
|
|
|
assert.equal(await transactionFee.getText(), '0.0008')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('confirms the transaction', async function () {
|
|
|
|
await driver.clickElement(By.xpath(`//button[contains(text(), 'Confirm')]`))
|
|
|
|
await driver.delay(regularDelayMs)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('finds the transaction in the transactions list', async function () {
|
|
|
|
await driver.wait(async () => {
|
|
|
|
const confirmedTxes = await driver.findElements(By.css('.transaction-list__completed-transactions .transaction-list-item'))
|
|
|
|
return confirmedTxes.length === 1
|
|
|
|
}, 10000)
|
|
|
|
|
|
|
|
const txValues = await driver.findElements(By.css('.transaction-list-item__amount--primary'))
|
|
|
|
assert.equal(txValues.length, 1)
|
|
|
|
assert.ok(/-2.2\s*ETH/.test(await txValues[0].getText()))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|