X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c0082c57cb7c5e67115e7b03c8c85f74b5b29d0d..6d1fb016135e6126c1d5c17ca02f210ba98dfc13:/apps/workbench/test/integration/users_test.rb?ds=sidebyside diff --git a/apps/workbench/test/integration/users_test.rb b/apps/workbench/test/integration/users_test.rb index db670815d8..1ae302c239 100644 --- a/apps/workbench/test/integration/users_test.rb +++ b/apps/workbench/test/integration/users_test.rb @@ -197,44 +197,4 @@ class UsersTest < ActionDispatch::IntegrationTest click_link 'Metadata' assert page.has_text? 'VirtualMachine: testvm.shell' end - - [ - 'admin', - 'active', - ].each do |username| - test "login as #{username} and access show button" do - need_javascript - - user = api_fixture('users', username) - - visit page_with_token(username, '/users') - - within('tr', text: user['uuid']) do - assert_text user['email'] - if username == 'admin' - assert_selector 'a', text: 'Home' - else - assert_no_selector 'a', text: 'Home' - end - assert_selector 'a', text: 'Show' - find('a', text: 'Show').click - end - assert_selector 'a', text: 'Attributes' - end - end - - test "admin user can access another user page" do - need_javascript - - visit page_with_token('admin', '/users') - - active_user = api_fixture('users', 'active') - within('tr', text: active_user['uuid']) do - assert_text active_user['email'] - assert_selector "a[href=\"/projects/#{active_user['uuid']}\"]", text: 'Home' - assert_selector 'a', text: 'Show' - find('a', text: 'Show').click - end - assert_selector 'a', text:'Attributes' - end end