aboutsummaryrefslogblamecommitdiffstats
path: root/test/integration/lib/first-time.js
blob: e59897713813a757985dfd28a6b6a34238540091 (plain) (tree)
1
2
3
4
5
6
7
8
9
                              
                                                               
 

                                


                                                           
                                                       




                                                    


                                                    
 
                               
 

                    

                                     
                                

                                                  
                     
                                    
                    
                     
            
                  
                                       
           
     
   
 
                 
 

                                     

                                                                 
 




                                                      
 
                 
 


                                                    
 
                     
 

                                                                            
 



                                      
 
                     
 
                                            
                                                     
 
                     
 



                                                 
 
                                                          

                                         
 
                     
 

                                             
 

                                                     
 
                     
 
                                             
                                                            
 
                 
 
                                   
                                                              
                  
 
                     
 

                                                        

                                                                               
 
                 
 
                                                       
                     
 
                 
 
                                                  


                                                     

 
                         

                                           
    
 
const PASSWORD = 'password123'
const runMascaraFirstTimeTest = require('./mascara-first-time')

QUnit.module('first time usage')

QUnit.test('render init screen', (assert) => {
  const done = assert.async()
  runFirstTimeUsageTest(assert).then(done).catch((err) => {
    assert.notOk(err, `Error was thrown: ${err.stack}`)
    done()
  })
})

async function runFirstTimeUsageTest(assert, done) {
  if (window.METAMASK_PLATFORM_TYPE === 'mascara') {
    return runMascaraFirstTimeTest(assert, done)
  }

  const app = $('#app-content')

  // recurse notices
  while (true) {
    const button = app.find('button')
    if (button.html() === 'Accept') {
      // still notices to accept
      const termsPage = app.find('.markdown')[0]
      termsPage.scrollTop = termsPage.scrollHeight
      await timeout()
      console.log('Clearing notice')
      button.click()
      await timeout()
    } else {
      // exit loop
      console.log('No more notices...')
      break
    }
  }

  await timeout()

  // Scroll through terms
  const title = app.find('h1').text()
  // TODO Find where Metamask is getting added twice in the title
  assert.equal(title, 'MetaMaskMetaMask', 'title screen')

  // enter password
  const pwBox = app.find('#password-box')[0]
  const confBox = app.find('#password-box-confirm')[0]
  pwBox.value = PASSWORD
  confBox.value = PASSWORD

  await timeout()

  // create vault
  const createButton = app.find('button.primary')[0]
  createButton.click()

  await timeout(3000)

  const created = app.find('h3')[0]
  assert.equal(created.textContent, 'Vault Created', 'Vault created screen')

  // Agree button
  const button = app.find('button')[0]
  assert.ok(button, 'button present')
  button.click()

  await timeout(1000)

  const detail = app.find('.wallet-view')[0]
  assert.ok(detail, 'Account detail section loaded.')

  await timeout(1000)

  const menu = app.find('.account-menu__icon')[0]
  menu.click()

  await timeout(1000)

  const lock = app.find('.account-menu__logout-button')[0]
  assert.ok(lock, 'Lock menu item found')
  lock.click()

  await timeout(1000)

  const pwBox2 = app.find('#password-box')[0]
  pwBox2.value = PASSWORD

  const createButton2 = app.find('button.primary')[0]
  createButton2.click()

  await timeout(1000)

  const detail2 = app.find('.wallet-view')[0]
  assert.ok(detail2, 'Account detail section loaded again.')

  await timeout()

  // open account settings dropdown
  const qrButton = app.find('.wallet-view__details-button')[0]
  qrButton.click()

  await timeout(1000)

  const qrHeader = app.find('.editable-label__value')[0]
  const qrContainer = app.find('.qr-wrapper')[0]
  assert.equal(qrHeader.textContent, 'Account 1', 'Should show account label.')
  assert.ok(qrContainer, 'QR Container found')

  await timeout()

  const networkMenu = app.find('.network-component')[0]
  networkMenu.click()

  await timeout()

  const networkMenu2 = app.find('.menu-droppo')[0]
  const children2 = networkMenu2.children
  children2.length[3]
  assert.ok(children2, 'All network options present')
}

function timeout (time) {
  return new Promise((resolve, reject) => {
    setTimeout(resolve, time || 1500)
  })
}