|
|
|
@ -2,125 +2,118 @@ const PASSWORD = 'password123' |
|
|
|
|
|
|
|
|
|
QUnit.module('first time usage') |
|
|
|
|
|
|
|
|
|
QUnit.test('render init screen', function (assert) { |
|
|
|
|
var done = assert.async() |
|
|
|
|
let app |
|
|
|
|
QUnit.test('render init screen', (assert) => { |
|
|
|
|
const done = assert.async() |
|
|
|
|
runFirstTimeUsageTest(assert).then(done).catch((err) => { |
|
|
|
|
assert.notOk(err, 'Should not error') |
|
|
|
|
done() |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
async function runFirstTimeUsageTest(assert, done) { |
|
|
|
|
await wait() |
|
|
|
|
|
|
|
|
|
wait().then(function() { |
|
|
|
|
app = $('iframe').contents().find('#app-content .mock-app-root') |
|
|
|
|
const app = $('iframe').contents().find('#app-content .mock-app-root') |
|
|
|
|
|
|
|
|
|
const recurseNotices = function () { |
|
|
|
|
let button = app.find('button') |
|
|
|
|
const recurseNotices = async () => { |
|
|
|
|
const button = app.find('button') |
|
|
|
|
if (button.html() === 'Accept') { |
|
|
|
|
let termsPage = app.find('.markdown')[0] |
|
|
|
|
const termsPage = app.find('.markdown')[0] |
|
|
|
|
termsPage.scrollTop = termsPage.scrollHeight |
|
|
|
|
return wait().then(() => { |
|
|
|
|
await wait() |
|
|
|
|
button.click() |
|
|
|
|
return wait() |
|
|
|
|
}).then(() => { |
|
|
|
|
return recurseNotices() |
|
|
|
|
}) |
|
|
|
|
await wait() |
|
|
|
|
await recurseNotices() |
|
|
|
|
} else { |
|
|
|
|
return wait() |
|
|
|
|
await wait() |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return recurseNotices() |
|
|
|
|
}).then(function() { |
|
|
|
|
|
|
|
|
|
await recurseNotices() |
|
|
|
|
|
|
|
|
|
// Scroll through terms
|
|
|
|
|
var title = app.find('h1').text() |
|
|
|
|
const title = app.find('h1').text() |
|
|
|
|
assert.equal(title, 'MetaMask', 'title screen') |
|
|
|
|
|
|
|
|
|
// enter password
|
|
|
|
|
var pwBox = app.find('#password-box')[0] |
|
|
|
|
var confBox = app.find('#password-box-confirm')[0] |
|
|
|
|
const pwBox = app.find('#password-box')[0] |
|
|
|
|
const confBox = app.find('#password-box-confirm')[0] |
|
|
|
|
pwBox.value = PASSWORD |
|
|
|
|
confBox.value = PASSWORD |
|
|
|
|
|
|
|
|
|
return wait() |
|
|
|
|
}).then(function() { |
|
|
|
|
await wait() |
|
|
|
|
|
|
|
|
|
// create vault
|
|
|
|
|
var createButton = app.find('button.primary')[0] |
|
|
|
|
const createButton = app.find('button.primary')[0] |
|
|
|
|
createButton.click() |
|
|
|
|
|
|
|
|
|
return wait(1500) |
|
|
|
|
}).then(function() { |
|
|
|
|
await wait(1500) |
|
|
|
|
|
|
|
|
|
var created = app.find('h3')[0] |
|
|
|
|
const created = app.find('h3')[0] |
|
|
|
|
assert.equal(created.textContent, 'Vault Created', 'Vault created screen') |
|
|
|
|
|
|
|
|
|
// Agree button
|
|
|
|
|
var button = app.find('button')[0] |
|
|
|
|
const button = app.find('button')[0] |
|
|
|
|
assert.ok(button, 'button present') |
|
|
|
|
button.click() |
|
|
|
|
|
|
|
|
|
return wait(1000) |
|
|
|
|
}).then(function() { |
|
|
|
|
await wait(1000) |
|
|
|
|
|
|
|
|
|
var detail = app.find('.account-detail-section')[0] |
|
|
|
|
const detail = app.find('.account-detail-section')[0] |
|
|
|
|
assert.ok(detail, 'Account detail section loaded.') |
|
|
|
|
|
|
|
|
|
var sandwich = app.find('.sandwich-expando')[0] |
|
|
|
|
const sandwich = app.find('.sandwich-expando')[0] |
|
|
|
|
sandwich.click() |
|
|
|
|
|
|
|
|
|
return wait() |
|
|
|
|
}).then(function() { |
|
|
|
|
await wait() |
|
|
|
|
|
|
|
|
|
var sandwich = app.find('.menu-droppo')[0] |
|
|
|
|
var children = sandwich.children |
|
|
|
|
var lock = children[children.length - 2] |
|
|
|
|
const menu = app.find('.menu-droppo')[0] |
|
|
|
|
const children = menu.children |
|
|
|
|
const lock = children[children.length - 2] |
|
|
|
|
assert.ok(lock, 'Lock menu item found') |
|
|
|
|
lock.click() |
|
|
|
|
|
|
|
|
|
return wait(1000) |
|
|
|
|
}).then(function() { |
|
|
|
|
await wait(1000) |
|
|
|
|
|
|
|
|
|
var pwBox = app.find('#password-box')[0] |
|
|
|
|
pwBox.value = PASSWORD |
|
|
|
|
const pwBox2 = app.find('#password-box')[0] |
|
|
|
|
pwBox2.value = PASSWORD |
|
|
|
|
|
|
|
|
|
var createButton = app.find('button.primary')[0] |
|
|
|
|
createButton.click() |
|
|
|
|
const createButton2 = app.find('button.primary')[0] |
|
|
|
|
createButton2.click() |
|
|
|
|
|
|
|
|
|
return wait(1000) |
|
|
|
|
}).then(function() { |
|
|
|
|
await wait(1000) |
|
|
|
|
|
|
|
|
|
var detail = app.find('.account-detail-section')[0] |
|
|
|
|
assert.ok(detail, 'Account detail section loaded again.') |
|
|
|
|
const detail2 = app.find('.account-detail-section')[0] |
|
|
|
|
assert.ok(detail2, 'Account detail section loaded again.') |
|
|
|
|
|
|
|
|
|
return wait() |
|
|
|
|
}).then(function (){ |
|
|
|
|
await wait() |
|
|
|
|
|
|
|
|
|
var qrButton = app.find('.fa.fa-ellipsis-h')[0] // open account settings dropdown
|
|
|
|
|
// open account settings dropdown
|
|
|
|
|
const qrButton = app.find('.fa.fa-ellipsis-h')[0] |
|
|
|
|
qrButton.click() |
|
|
|
|
|
|
|
|
|
return wait(1000) |
|
|
|
|
}).then(function (){ |
|
|
|
|
await wait(1000) |
|
|
|
|
|
|
|
|
|
var qrButton = app.find('.dropdown-menu-item')[1] // qr code item
|
|
|
|
|
qrButton.click() |
|
|
|
|
// qr code item
|
|
|
|
|
const qrButton2 = app.find('.dropdown-menu-item')[1] |
|
|
|
|
qrButton2.click() |
|
|
|
|
|
|
|
|
|
return wait(1000) |
|
|
|
|
}).then(function (){ |
|
|
|
|
await wait(1000) |
|
|
|
|
|
|
|
|
|
var qrHeader = app.find('.qr-header')[0] |
|
|
|
|
var qrContainer = app.find('#qr-container')[0] |
|
|
|
|
const qrHeader = app.find('.qr-header')[0] |
|
|
|
|
const qrContainer = app.find('#qr-container')[0] |
|
|
|
|
assert.equal(qrHeader.textContent, 'Account 1', 'Should show account label.') |
|
|
|
|
assert.ok(qrContainer, 'QR Container found') |
|
|
|
|
|
|
|
|
|
return wait() |
|
|
|
|
}).then(function (){ |
|
|
|
|
await wait() |
|
|
|
|
|
|
|
|
|
var networkMenu = app.find('.network-indicator')[0] |
|
|
|
|
const networkMenu = app.find('.network-indicator')[0] |
|
|
|
|
networkMenu.click() |
|
|
|
|
|
|
|
|
|
return wait() |
|
|
|
|
}).then(function (){ |
|
|
|
|
|
|
|
|
|
var networkMenu = app.find('.network-indicator')[0] |
|
|
|
|
var children = networkMenu.children |
|
|
|
|
children.length[3] |
|
|
|
|
assert.ok(children, 'All network options present') |
|
|
|
|
await wait() |
|
|
|
|
|
|
|
|
|
done() |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
const networkMenu2 = app.find('.network-indicator')[0] |
|
|
|
|
const children2 = networkMenu2.children |
|
|
|
|
children2.length[3] |
|
|
|
|
assert.ok(children2, 'All network options present') |
|
|
|
|
} |