1 require 'integration_helper'
3 class UsersTest < ActionDispatch::IntegrationTest
5 test "login as active user but not admin" do
7 visit page_with_token('active_trustedclient')
9 assert page.has_no_link? 'Users' 'Found Users link for non-admin user'
12 test "login as admin user and verify active user data" do
14 visit page_with_token('admin_trustedclient')
16 # go to Users list page
17 find('#system-menu').click
20 # check active user attributes in the list page
21 page.within(:xpath, '//tr[@data-object-uuid="zzzzz-tpzed-xurymjxw79nv3jz"]') do
22 assert (text.include? 'true false'), 'Expected is_active'
25 find('tr', text: 'zzzzz-tpzed-xurymjxw79nv3jz').
26 find('a', text: 'Show').
28 assert page.has_text? 'Attributes'
29 assert page.has_text? 'Advanced'
30 assert page.has_text? 'Admin'
32 # go to the Attributes tab
33 click_link 'Attributes'
34 assert page.has_text? 'modified_by_user_uuid'
35 page.within(:xpath, '//span[@data-name="is_active"]') do
36 assert_equal "true", text, "Expected user's is_active to be true"
38 page.within(:xpath, '//span[@data-name="is_admin"]') do
39 assert_equal "false", text, "Expected user's is_admin to be false"
44 test "create a new user" do
47 visit page_with_token('admin_trustedclient')
49 find('#system-menu').click
52 assert page.has_text? 'zzzzz-tpzed-d9tiejq69daie8f'
54 click_link 'Add a new user'
56 within '.modal-content' do
57 find 'label', text: 'Virtual Machine'
58 fill_in "email", :with => "foo@example.com"
59 fill_in "repo_name", :with => "newtestrepo"
66 # verify that the new user showed up in the users page and find
69 find('tr[data-object-uuid]', text: 'foo@example.com')['data-object-uuid']
70 assert new_user_uuid, "Expected new user uuid not found"
72 # go to the new user's page
73 find('tr', text: new_user_uuid).
74 find('a', text: 'Show').
77 assert page.has_text? 'modified_by_user_uuid'
78 page.within(:xpath, '//span[@data-name="is_active"]') do
79 assert_equal "false", text, "Expected new user's is_active to be false"
84 assert page.has_text? 'Repository: foo/newtestrepo'
85 assert !(page.has_text? 'VirtualMachine:')
88 test "setup the active user" do
90 visit page_with_token('admin_trustedclient')
92 find('#system-menu').click
95 # click on active user
96 find('tr', text: 'zzzzz-tpzed-xurymjxw79nv3jz').
97 find('a', text: 'Show').
99 user_url = page.current_url
103 assert page.has_text? 'As an admin, you can setup'
105 click_link 'Setup Active User'
107 within '.modal-content' do
108 find 'label', text: 'Virtual Machine'
109 fill_in "repo_name", :with => "activetestrepo"
110 click_button "Submit"
114 assert page.has_text? 'modified_by_client_uuid'
116 click_link 'Advanced'
117 click_link 'Metadata'
118 assert page.has_text? 'Repository: active/activetestrepo'
119 assert !(page.has_text? 'VirtualMachine:')
121 # Click on Setup button again and this time also choose a VM
123 click_link 'Setup Active User'
125 within '.modal-content' do
126 fill_in "repo_name", :with => "activetestrepo2"
127 select("testvm.shell", :from => 'vm_uuid')
128 click_button "Submit"
132 find '#Attributes', text: 'modified_by_client_uuid'
134 click_link 'Advanced'
135 click_link 'Metadata'
136 assert page.has_text? 'Repository: active/activetestrepo2'
137 assert page.has_text? 'VirtualMachine: testvm.shell'
140 test "unsetup active user" do
143 visit page_with_token('admin_trustedclient')
145 find('#system-menu').click
148 # click on active user
149 find('tr', text: 'zzzzz-tpzed-xurymjxw79nv3jz').
150 find('a', text: 'Show').
152 user_url = page.current_url
154 # Verify that is_active is set
155 find('a,button', text: 'Attributes').click
156 assert page.has_text? 'modified_by_user_uuid'
157 page.within(:xpath, '//span[@data-name="is_active"]') do
158 assert_equal "true", text, "Expected user's is_active to be true"
163 assert page.has_text? 'As an admin, you can deactivate and reset this user'
165 # unsetup user and verify all the above links are deleted
167 click_button 'Deactivate Active User'
169 if Capybara.current_driver == :selenium
171 page.driver.browser.switch_to.alert.accept
173 # poltergeist returns true for confirm(), so we don't need to accept.
176 # Should now be back in the Attributes tab for the user
177 assert page.has_text? 'modified_by_user_uuid'
178 page.within(:xpath, '//span[@data-name="is_active"]') do
179 assert_equal "false", text, "Expected user's is_active to be false after unsetup"
182 click_link 'Advanced'
183 click_link 'Metadata'
184 assert page.has_no_text? 'Repository: active/'
185 assert page.has_no_text? 'VirtualMachine: testvm.shell'
187 # setup user again and verify links present
189 click_link 'Setup Active User'
191 within '.modal-content' do
192 fill_in "repo_name", :with => "activetestrepo"
193 select("testvm.shell", :from => 'vm_uuid')
194 click_button "Submit"
198 assert page.has_text? 'modified_by_client_uuid'
200 click_link 'Advanced'
201 click_link 'Metadata'
202 assert page.has_text? 'Repository: active/activetestrepo'
203 assert page.has_text? 'VirtualMachine: testvm.shell'
209 ].each do |username, expect_show_button|
210 test "login as #{username} and access show button #{expect_show_button}" do
213 user = api_fixture('users', username)
215 visit page_with_token(username, '/users')
217 if expect_show_button
218 within('tr', text: user['uuid']) do
219 assert_text user['email']
220 assert_selector 'a', text: 'Show'
221 find('a', text: 'Show').click
223 assert_selector 'a', 'Data collections'
225 # no 'Show' button in the admin user's own row
226 within('tr', text: user['uuid']) do
227 assert_text user['email']
228 assert_no_selector 'a', text: 'Show'
231 # but the admin user can access 'Show' button for other users
232 active_user = api_fixture('users', 'active')
233 within('tr', text: active_user['uuid']) do
234 assert_text active_user['email']
235 assert_selector 'a', text: 'Show'
236 find('a', text: 'Show').click
237 assert_selector 'a', 'Attributes'