X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/351a497c96770f379acdfe58ebeff34262e1308b..3c2372f03566fb3ce53625d3e4783eaac0fc480e:/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 4a45a6a87c..a329f5188e 100644 --- a/apps/workbench/test/integration/users_test.rb +++ b/apps/workbench/test/integration/users_test.rb @@ -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,7 +81,7 @@ 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 @@ -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,7 +133,7 @@ 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 @@ -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