X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b52138614767c47770e871b5fa9d4ae9700e26ba..ae8ed6d9d0e5231379564beedc08c812352b7043:/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..80e6a71932 100644 --- a/apps/workbench/test/integration/users_test.rb +++ b/apps/workbench/test/integration/users_test.rb @@ -204,4 +204,40 @@ class UsersTest < ActionDispatch::IntegrationTest 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