X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/3598c3003a7987cca5c0536ba8206ec40c1c3649..ed56c26720184ca3d07f452faf014e177f1a2c2f:/apps/workbench/test/controllers/users_controller_test.rb diff --git a/apps/workbench/test/controllers/users_controller_test.rb b/apps/workbench/test/controllers/users_controller_test.rb index c1436da454..71354b82f3 100644 --- a/apps/workbench/test/controllers/users_controller_test.rb +++ b/apps/workbench/test/controllers/users_controller_test.rb @@ -1,6 +1,7 @@ require 'test_helper' class UsersControllerTest < ActionController::TestCase + test "valid token works in controller test" do get :index, {}, session_for(:active) assert_response :success @@ -31,7 +32,7 @@ class UsersControllerTest < ActionController::TestCase end test "show repositories with read, write, or manage permission" do - get :manage_account, {}, session_for(:active) + get :repositories, {id: api_fixture("users")['active']['uuid']}, session_for(:active) assert_response :success repos = assigns(:my_repositories) assert repos @@ -42,7 +43,7 @@ class UsersControllerTest < ActionController::TestCase end test "show repositories lists linked as well as owned repositories" do - get :manage_account, {}, session_for(:active) + get :repositories, {id: api_fixture("users")['active']['uuid']}, session_for(:active) assert_response :success repos = assigns(:my_repositories) assert repos @@ -74,4 +75,48 @@ class UsersControllerTest < ActionController::TestCase end assert_equal 1, found_email, "Expected 1 email after requesting shell access" end + + [ + 'admin', + 'active', + ].each do |username| + test "access users page as #{username} and verify show button is available" do + admin_user = api_fixture('users','admin') + active_user = api_fixture('users','active') + get :index, {}, session_for(username) + if username == 'admin' + assert_match /Home<\/a>/, @response.body + assert_match /Home<\/a>/, @response.body + assert_match /href="\/users\/#{admin_user['uuid']}" title="show user"><\/i> Show<\/a/, @response.body + assert_match /href="\/users\/#{active_user['uuid']}" title="show user"><\/i> Show<\/a/, @response.body + assert_includes @response.body, admin_user['email'] + assert_includes @response.body, active_user['email'] + else + refute_match /Home<\/a>/, @response.body + refute_match /href="\/users\/#{admin_user['uuid']}" title="show user"><\/i> Show<\/a/, @response.body + assert_match /href="\/users\/#{active_user['uuid']}" title="show user"><\/i> Show<\/a/, @response.body + assert_includes @response.body, active_user['email'] + end + end + end + + [ + 'admin', + 'active', + ].each do |username| + test "access settings drop down menu as #{username}" do + admin_user = api_fixture('users','admin') + active_user = api_fixture('users','active') + get :show, { + id: api_fixture('users')[username]['uuid'] + }, session_for(username) + if username == 'admin' + assert_includes @response.body, admin_user['email'] + refute_empty css_select('[id="system-menu"]') + else + assert_includes @response.body, active_user['email'] + assert_empty css_select('[id="system-menu"]') + end + end + end end