X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/3d5ffcdc1c522d8252470d9ab448e3872e0a3a58..cd1f6c0fd2f9a91b88659b90a6fd9faee576a557:/apps/workbench/test/integration/users_test.rb diff --git a/apps/workbench/test/integration/users_test.rb b/apps/workbench/test/integration/users_test.rb index 5975395ed2..a329f5188e 100644 --- a/apps/workbench/test/integration/users_test.rb +++ b/apps/workbench/test/integration/users_test.rb @@ -3,14 +3,14 @@ require 'integration_helper' class UsersTest < ActionDispatch::IntegrationTest test "login as active user but not admin" do - Capybara.current_driver = Capybara.javascript_driver + need_javascript visit page_with_token('active_trustedclient') assert page.has_no_link? 'Users' 'Found Users link for non-admin user' end test "login as admin user and verify active user data" do - Capybara.current_driver = Capybara.javascript_driver + need_javascript visit page_with_token('admin_trustedclient') # go to Users list page @@ -42,7 +42,7 @@ class UsersTest < ActionDispatch::IntegrationTest end test "create a new user" do - Capybara.current_driver = Capybara.javascript_driver + need_javascript visit page_with_token('admin_trustedclient') @@ -56,7 +56,7 @@ class UsersTest < ActionDispatch::IntegrationTest within '.modal-content' do find 'label', text: 'Virtual Machine' fill_in "email", :with => "foo@example.com" - fill_in "repo_name", :with => "test_repo" + fill_in "repo_name", :with => "newtestrepo" click_button "Submit" wait_for_ajax end @@ -81,12 +81,12 @@ class UsersTest < ActionDispatch::IntegrationTest click_link 'Advanced' click_link 'Metadata' - assert page.has_text? 'Repository: test_repo' + assert page.has_text? 'Repository: foo/newtestrepo' assert !(page.has_text? 'VirtualMachine:') end test "setup the active user" do - Capybara.current_driver = Capybara.javascript_driver + need_javascript visit page_with_token('admin_trustedclient') find('#system-menu').click @@ -106,7 +106,7 @@ class UsersTest < ActionDispatch::IntegrationTest within '.modal-content' do find 'label', text: 'Virtual Machine' - fill_in "repo_name", :with => "test_repo" + fill_in "repo_name", :with => "activetestrepo" click_button "Submit" end @@ -115,7 +115,7 @@ class UsersTest < ActionDispatch::IntegrationTest click_link 'Advanced' click_link 'Metadata' - assert page.has_text? 'Repository: test_repo' + assert page.has_text? 'Repository: active/activetestrepo' assert !(page.has_text? 'VirtualMachine:') # Click on Setup button again and this time also choose a VM @@ -123,7 +123,7 @@ class UsersTest < ActionDispatch::IntegrationTest click_link 'Setup Active User' within '.modal-content' do - fill_in "repo_name", :with => "second_test_repo" + fill_in "repo_name", :with => "activetestrepo2" select("testvm.shell", :from => 'vm_uuid') click_button "Submit" end @@ -133,12 +133,12 @@ class UsersTest < ActionDispatch::IntegrationTest click_link 'Advanced' click_link 'Metadata' - assert page.has_text? 'Repository: second_test_repo' + assert page.has_text? 'Repository: active/activetestrepo2' assert page.has_text? 'VirtualMachine: testvm.shell' end test "unsetup active user" do - Capybara.current_driver = Capybara.javascript_driver + need_javascript visit page_with_token('admin_trustedclient') @@ -181,16 +181,15 @@ class UsersTest < ActionDispatch::IntegrationTest click_link 'Advanced' click_link 'Metadata' - assert !(page.has_text? 'Repository: test_repo') - assert !(page.has_text? 'Repository: second_test_repo') - assert !(page.has_text? 'VirtualMachine: testvm.shell') + assert page.has_no_text? 'Repository: active/' + assert page.has_no_text? 'VirtualMachine: testvm.shell' # setup user again and verify links present click_link 'Admin' click_link 'Setup Active User' within '.modal-content' do - fill_in "repo_name", :with => "second_test_repo" + fill_in "repo_name", :with => "activetestrepo" select("testvm.shell", :from => 'vm_uuid') click_button "Submit" end @@ -200,8 +199,44 @@ class UsersTest < ActionDispatch::IntegrationTest click_link 'Advanced' click_link 'Metadata' - assert page.has_text? 'Repository: second_test_repo' + assert page.has_text? 'Repository: active/activetestrepo' assert page.has_text? 'VirtualMachine: testvm.shell' end + [ + ['admin', false], + ['active', true], + ].each do |username, expect_show_button| + test "login as #{username} and access show button #{expect_show_button}" do + need_javascript + + user = api_fixture('users', username) + + visit page_with_token(username, '/users') + + if expect_show_button + within('tr', text: user['uuid']) do + assert_text user['email'] + assert_selector 'a', text: 'Show' + find('a', text: 'Show').click + end + assert_selector 'a', 'Data collections' + else + # no 'Show' button in the admin user's own row + within('tr', text: user['uuid']) do + assert_text user['email'] + assert_no_selector 'a', text: 'Show' + end + + # but the admin user can access 'Show' button for other users + active_user = api_fixture('users', 'active') + within('tr', text: active_user['uuid']) do + assert_text active_user['email'] + assert_selector 'a', text: 'Show' + find('a', text: 'Show').click + assert_selector 'a', 'Attributes' + end + end + end + end end