1 require 'integration_helper'
3 class UserManageAccountTest < ActionDispatch::IntegrationTest
8 # test manage_account page
9 def verify_manage_account user
11 within('.navbar-fixed-top') do
12 find('a', text: "#{user['email']}").click
13 within('.dropdown-menu') do
14 find('a', text: 'Manage account').click
18 # now in manage account page
19 assert page.has_text?('Virtual Machines'), 'No text - Virtual Machines'
20 assert page.has_text?('Repositories'), 'No text - Repositories'
21 assert page.has_text?('SSH Keys'), 'No text - SSH Keys'
22 assert page.has_text?('Current Token'), 'No text - Current Token'
23 assert page.has_text?('The Arvados API token is a secret key that enables the Arvados SDKs to access Arvados'), 'No text - Arvados API token'
24 add_and_verify_ssh_key
26 within('.navbar-fixed-top') do
27 find('a', text: "#{user['email']}").click
28 within('.dropdown-menu') do
29 assert page.has_no_link?('Manage profile'), 'Found link - Manage profile'
35 def add_and_verify_ssh_key
36 click_link 'Add new SSH key'
38 within '.modal-content' do
39 assert page.has_text?('Public Key'), 'No text - Public Key'
40 assert page.has_button?('Cancel'), 'No button - Cancel'
41 assert page.has_button?('Submit'), 'No button - Submit'
43 page.find_field('public_key').set 'first test with an incorrect ssh key value'
45 assert page.has_text?('Public key does not appear to be a valid ssh-rsa or dsa public key'), 'No text - Public key does not appear to be a valid'
47 public_key_str = api_fixture('authorized_keys')['active']['public_key']
48 page.find_field('public_key').set public_key_str
49 page.find_field('name').set 'added_in_test'
51 assert page.has_text?('Public key already exists in the database, use a different key.'), 'No text - Public key already exists'
53 new_key = SSHKey.generate
54 page.find_field('public_key').set new_key.ssh_public_key
55 page.find_field('name').set 'added_in_test'
59 # key must be added. look for it in the refreshed page
60 assert page.has_text?('added_in_test'), 'No text - added_in_test'
64 ['inactive', api_fixture('users')['inactive']],
65 ['inactive_uninvited', api_fixture('users')['inactive_uninvited']],
66 ['active', api_fixture('users')['active']],
67 ['admin', api_fixture('users')['admin']],
68 ].each do |token, user|
69 test "test manage account for user #{token}" do
70 visit page_with_token(token)
71 verify_manage_account user
76 ['inactive_but_signed_user_agreement', true],
78 ].each do |user, notifications|
79 test "test manage account for #{user} with notifications #{notifications}" do
80 visit page_with_token(user)
81 click_link 'notifications-menu'
83 assert_selector('a', text: 'Click here to set up an SSH public key for use with Arvados')
84 assert_selector('a', text: 'Click here to learn how to run an Arvados Crunch pipeline')
85 click_link('Click here to set up an SSH public key for use with Arvados')
86 assert_selector('a', text: 'Add new SSH key')
88 add_and_verify_ssh_key
90 # No more SSH notification
91 click_link 'notifications-menu'
92 assert_no_selector('a', text: 'Click here to set up an SSH public key for use with Arvados')
93 assert_selector('a', text: 'Click here to learn how to run an Arvados Crunch pipeline')
95 assert_no_selector('a', text: 'Click here to set up an SSH public key for use with Arvados')
96 assert_no_selector('a', text: 'Click here to learn how to run an Arvados Crunch pipeline')
101 test "verify repositories for active user" do
102 visit page_with_token('active', '/manage_account')
104 repos = [[api_fixture('repositories')['foo'], true, true],
105 [api_fixture('repositories')['repository3'], false, false],
106 [api_fixture('repositories')['repository4'], true, false]]
108 repos.each do |(repo, writable, sharable)|
109 within('tr', text: repo['name']+'.git') do
111 assert_selector 'a', text:'Share'
112 assert_text 'writable'
114 assert_text repo['name']
115 assert_no_selector 'a', text:'Share'
117 assert_text 'writable'
119 assert_text 'read-only'