X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/8d9ccb409bd1a301eea9cbb3a3911797ff7c286a..f5a30607d1746b29688363530a3011ee5c2f4f9a:/apps/workbench/test/integration/user_manage_account_test.rb diff --git a/apps/workbench/test/integration/user_manage_account_test.rb b/apps/workbench/test/integration/user_manage_account_test.rb index ff2b7dd012..a84d424d3e 100644 --- a/apps/workbench/test/integration/user_manage_account_test.rb +++ b/apps/workbench/test/integration/user_manage_account_test.rb @@ -1,12 +1,8 @@ require 'integration_helper' -require 'selenium-webdriver' -require 'headless' class UserManageAccountTest < ActionDispatch::IntegrationTest setup do - headless = Headless.new - headless.start - Capybara.current_driver = :selenium + need_javascript end # test manage_account page @@ -24,9 +20,19 @@ class UserManageAccountTest < ActionDispatch::IntegrationTest assert page.has_text?('Repositories'), 'No text - Repositories' assert page.has_text?('SSH Keys'), 'No text - SSH Keys' assert page.has_text?('Current Token'), 'No text - Current Token' - assert page.has_text?('The Arvados API token is a secret key that enables the Arvados SDKs to access Arvados'), 'No text - Arvados API token' + add_and_verify_ssh_key + else # inactive user + within('.navbar-fixed-top') do + find('a', text: "#{user['email']}").click + within('.dropdown-menu') do + assert page.has_no_link?('Manage profile'), 'Found link - Manage profile' + end + end + end + end + def add_and_verify_ssh_key click_link 'Add new SSH key' within '.modal-content' do @@ -52,14 +58,6 @@ class UserManageAccountTest < ActionDispatch::IntegrationTest # key must be added. look for it in the refreshed page assert page.has_text?('added_in_test'), 'No text - added_in_test' - else # inactive user - within('.navbar-fixed-top') do - find('a', text: "#{user['email']}").click - within('.dropdown-menu') do - assert page.has_no_link?('Manage profile'), 'Found link - Manage profile' - end - end - end end [ @@ -73,4 +71,84 @@ class UserManageAccountTest < ActionDispatch::IntegrationTest verify_manage_account user end end + + test "pipeline notification shown even though public pipelines exist" do + skip "created_by doesn't work that way" + Rails.configuration.anonymous_user_token = api_fixture('api_client_authorizations')['anonymous']['api_token'] + visit page_with_token 'job_reader' + click_link 'notifications-menu' + assert_selector 'a', text: 'Click here to learn how to run an Arvados Crunch pipeline' + end + + [ + ['job_reader', :ssh, :pipeline], + ['active'], + ].each do |user, *expect| + test "manage account for #{user} with notifications #{expect.inspect}" do + Rails.configuration.anonymous_user_token = false + visit page_with_token(user) + click_link 'notifications-menu' + if expect.include? :ssh + assert_selector('a', text: 'Click here to set up an SSH public key for use with Arvados') + click_link('Click here to set up an SSH public key for use with Arvados') + assert_selector('a', text: 'Add new SSH key') + + add_and_verify_ssh_key + + # No more SSH notification + click_link 'notifications-menu' + assert_no_selector('a', text: 'Click here to set up an SSH public key for use with Arvados') + else + assert_no_selector('a', text: 'Click here to set up an SSH public key for use with Arvados') + assert_no_selector('a', text: 'Click here to learn how to run an Arvados Crunch pipeline') + end + + if expect.include? :pipeline + assert_selector('a', text: 'Click here to learn how to run an Arvados Crunch pipeline') + end + end + end + + test "verify repositories for active user" do + visit page_with_token('active', '/manage_account') + + repos = [[api_fixture('repositories')['foo'], true, true], + [api_fixture('repositories')['repository3'], false, false], + [api_fixture('repositories')['repository4'], true, false]] + + repos.each do |(repo, writable, sharable)| + within('tr', text: repo['name']+'.git') do + if sharable + assert_selector 'a', text:'Share' + assert_text 'writable' + else + assert_text repo['name'] + assert_no_selector 'a', text:'Share' + if writable + assert_text 'writable' + else + assert_text 'read-only' + end + end + end + end + end + + test "request shell access" do + visit page_with_token('spectator', '/manage_account') + assert_text 'You do not have access to any virtual machines' + click_button 'Send request for shell access' + assert_text 'A request for shell access was sent.' + assert_no_text 'You do not have access to any virtual machines.' + + # revisit the page and verify that the Request button is no longer shown + within('.navbar-fixed-top') do + find('a', text: 'spectator').click + within('.dropdown-menu') do + find('a', text: 'Manage account').click + end + end + assert_text 'You do not have access to any virtual machines.' + assert_text 'A request for shell access was sent on ' + end end