X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0c3927322282606c3aa6e668641ec2b9e7f4d65e..c58a2c83fa6338358962b8161c576e5391d7bf2b:/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 a33c47e360..28790b4a79 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 @@ -76,29 +72,65 @@ class UserManageAccountTest < ActionDispatch::IntegrationTest 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 + [ - ['inactive_but_signed_user_agreement', true], - ['active', false], - ].each do |user, notifications| - test "test manage account for #{user} with notifications #{notifications}" do + ['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 notifications - assert_selector('a', text: 'Click here to learn about SSH keys') - assert_selector('a', text: 'Click here to learn how to run an Arvados Crunch pipeline') - click_link('Click here to learn about SSH keys') + 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 learn about SSH keys') - assert_selector('a', text: 'Click here to learn how to run an Arvados Crunch pipeline') + 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 learn about SSH keys') + 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 end