X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/15303f9cf99f00ccdef948e5ce593d9a3a88d21a..2c149e2e0a4d00831f111aedaaf47320100c3a00:/apps/workbench/test/integration/application_layout_test.rb diff --git a/apps/workbench/test/integration/application_layout_test.rb b/apps/workbench/test/integration/application_layout_test.rb index b85977f213..61ba16294f 100644 --- a/apps/workbench/test/integration/application_layout_test.rb +++ b/apps/workbench/test/integration/application_layout_test.rb @@ -24,7 +24,10 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest else assert page.has_link?("Projects"), 'Not found link - Projects' page.find("#projects-menu").click - assert page.has_text?('Projects shared with me'), 'Not found text - Project shared with me' + assert_selector 'a', text: 'Search all projects' + assert_no_selector 'a', text: 'Browse public projects' + assert_selector 'a', text: 'Add a new project' + assert_selector 'li[class="dropdown-header"]', text: 'My projects' end elsif invited assert page.has_text?('Please check the box below to indicate that you have read and accepted the user agreement'), 'Not found text - Please check the box below . . .' @@ -40,22 +43,30 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest else # my account menu assert_selector 'a', text: Rails.configuration.site_name.downcase - assert page.has_link?("#{user['email']}"), 'Not found link - email' - find('a', text: "#{user['email']}").click + assert(page.has_link?("notifications-menu"), 'no user menu') + page.find("#notifications-menu").click within('.dropdown-menu') do if user['is_active'] assert page.has_no_link?('Not active'), 'Found link - Not active' assert page.has_no_link?('Sign agreements'), 'Found link - Sign agreements' - assert page.has_link?('Manage account'), 'No link - Manage account' + assert_selector "a[href=\"/projects/#{user['uuid']}\"]", text: 'Home project' + assert_selector "a[href=\"/users/#{user['uuid']}/virtual_machines\"]", text: 'Virtual machines' + assert_selector "a[href=\"/users/#{user['uuid']}/repositories\"]", text: 'Repositories' + assert_selector "a[href=\"/current_token\"]", text: 'Current token' + assert_selector "a[href=\"/users/#{user['uuid']}/ssh_keys\"]", text: 'SSH keys' if profile_config - assert page.has_link?('Manage profile'), 'No link - Manage profile' + assert_selector "a[href=\"/users/#{user['uuid']}/profile\"]", text: 'Manage profile' else - assert page.has_no_link?('Manage profile'), 'Found link - Manage profile' + assert_no_selector "a[href=\"/users/#{user['uuid']}/profile\"]", text: 'Manage profile' end else - assert page.has_no_link?('Manage account'), 'Found link - Manage account' + assert_no_selector 'a', text: 'Home project' + assert page.has_no_link?('Virtual machines'), 'Found link - Virtual machines' + assert page.has_no_link?('Repositories'), 'Found link - Repositories' + assert page.has_no_link?('Current token'), 'Found link - Current token' + assert page.has_no_link?('SSH keys'), 'Found link - SSH keys' assert page.has_no_link?('Manage profile'), 'Found link - Manage profile' end assert page.has_link?('Log out'), 'No link - Log out' @@ -110,8 +121,6 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest ['active_no_prefs', api_fixture('users')['active_no_prefs'], true, false], ['active_no_prefs_profile_no_getting_started_shown', api_fixture('users')['active_no_prefs_profile_no_getting_started_shown'], true, false], - ['active_no_prefs_profile_with_getting_started_shown', - api_fixture('users')['active_no_prefs_profile_with_getting_started_shown'], true, false], ].each do |token, user, invited, has_profile| test "visit home page for user #{token}" do @@ -156,10 +165,27 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest assert_text 'Getting Started' assert_selector 'button:not([disabled])', text: 'Next' assert_no_selector 'button:not([disabled])', text: 'Prev' + + # Use Next button to enable Prev button click_button 'Next' assert_selector 'button:not([disabled])', text: 'Prev' # Prev button is now enabled click_button 'Prev' assert_no_selector 'button:not([disabled])', text: 'Prev' # Prev button is again disabled + + # Click Next until last page is reached and verify that it is disabled + (0..20).each do |i| # currently we only have 4 pages, and don't expect to have more than 20 in future + click_button 'Next' + begin + find('button:not([disabled])', text: 'Next') + rescue => e + break + end + end + assert_no_selector 'button:not([disabled])', text: 'Next' # Next button is disabled + assert_selector 'button:not([disabled])', text: 'Prev' # Prev button is enabled + click_button 'Prev' + assert_selector 'button:not([disabled])', text: 'Next' # Next button is now enabled + first('button', text: 'x').click end assert_text 'Active pipelines' # seeing dashboard now @@ -182,4 +208,45 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest assert page.has_link?('Report a problem ...'), 'No link - Report a problem' end end + + test "no SSH public key notification when shell_in_a_box_url is configured" do + Rails.configuration.shell_in_a_box_url = 'example.com' + visit page_with_token('job_reader') + click_link 'notifications-menu' + assert_no_selector 'a', text:'Click here to set up an SSH public key for use with Arvados.' + assert_selector 'a', text:'Click here to learn how to run an Arvados Crunch pipeline' + end + + [ + ['Repositories',nil,'s0uqq'], + ['Virtual machines','virtual machine','current_user_logins'], + ['SSH keys',nil,'public_key'], + ['Links','link','link_class'], + ['Groups','group','group_class'], + ['Compute nodes','node','info[ping_secret'], + ['Keep services','keep service','service_ssl_flag'], + ['Keep disks', 'keep disk','bytes_free'], + ].each do |page_name, add_button_text, look_for| + test "test system menu #{page_name} link" do + visit page_with_token('admin') + within('.navbar-fixed-top') do + page.find("#system-menu").click + within('.dropdown-menu') do + assert_selector 'a', text: page_name + find('a', text: page_name).click + end + end + + # click the add button if it exists + if add_button_text + assert_selector 'button', text: "Add a new #{add_button_text}" + find('button', text: "Add a new #{add_button_text}").click + else + assert_no_selector 'button', text:"Add a new" + end + + # look for unique property in the current page + assert_text look_for + end + end end