X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/017d19d31606b8b313c04fffc33d44592ad9644b..de11b137d4469e9d54e078ac0dd5664bdb90e486:/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 b145635687..e28809e131 100644 --- a/apps/workbench/test/integration/application_layout_test.rb +++ b/apps/workbench/test/integration/application_layout_test.rb @@ -1,4 +1,9 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require 'integration_helper' +require 'config_validators' class ApplicationLayoutTest < ActionDispatch::IntegrationTest # These tests don't do state-changing API calls. Save some time by @@ -11,22 +16,23 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest end def verify_homepage user, invited, has_profile - profile_config = Rails.configuration.user_profile_form_fields + profile_config = Rails.configuration.Workbench.UserProfileFormFields if !user assert page.has_text?('Please log in'), 'Not found text - Please log in' assert page.has_text?('The "Log in" button below will show you a Google sign-in page'), 'Not found text - google sign in page' assert page.has_no_text?('My projects'), 'Found text - My projects' - assert page.has_link?("Log in to #{Rails.configuration.site_name}"), 'Not found text - log in to' + assert page.has_link?("Log in to #{Rails.configuration.Workbench.SiteName}"), 'Not found text - log in to' elsif user['is_active'] if profile_config && !has_profile assert page.has_text?('Save profile'), 'No text - Save profile' else assert page.has_link?("Projects"), 'Not found link - Projects' page.find("#projects-menu").click - assert_selector 'a', text: 'Add a new project' + assert_selector 'a', text: 'Search all projects' assert_no_selector 'a', text: 'Browse public projects' - assert page.has_text?('Projects shared with me'), 'Not found text - Project shared with me' + 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 . . .' @@ -36,12 +42,12 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest within('.navbar-fixed-top') do if !user - assert_text Rails.configuration.site_name.downcase - assert_no_selector 'a', text: Rails.configuration.site_name.downcase + assert_text Rails.configuration.Workbench.SiteName.downcase + assert_no_selector 'a', text: Rails.configuration.Workbench.SiteName.downcase assert page.has_link?('Log in'), 'Not found link - Log in' else # my account menu - assert_selector 'a', text: Rails.configuration.site_name.downcase + assert_selector 'a', text: Rails.configuration.Workbench.SiteName.downcase assert(page.has_link?("notifications-menu"), 'no user menu') page.find("#notifications-menu").click within('.dropdown-menu') do @@ -49,17 +55,23 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest assert page.has_no_link?('Not active'), 'Found link - Not active' assert page.has_no_link?('Sign agreements'), 'Found link - Sign agreements' - assert_selector "a[href=\"/projects/#{user['uuid']}\"]", text: 'My home project' - 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=\"/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_no_selector 'a', text: 'My home project' - 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' @@ -73,7 +85,7 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest within('.navbar-fixed-top') do page.find("#arv-help").click within('.dropdown-menu') do - assert_selector 'a', text:'Getting Started ...' + assert_no_selector 'a', text:'Getting Started ...' assert_selector 'a', text:'Public Pipelines and Data sets' assert page.has_link?('Tutorials and User guide'), 'No link - Tutorials and User guide' assert page.has_link?('API Reference'), 'No link - API Reference' @@ -117,83 +129,105 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest ].each do |token, user, invited, has_profile| test "visit home page for user #{token}" do + Rails.configuration.Users.AnonymousUserToken = "" if !token visit ('/') else visit page_with_token(token) end + check_help_menu verify_homepage user, invited, has_profile + verify_system_menu user end + end - test "check help for user #{token}" do - if !token - visit ('/') - else - visit page_with_token(token) + [ + ["", false], + ['http://wb2.example.org//', false], + ['ftp://wb2.example.org', false], + ['wb2.example.org', false], + ['http://wb2.example.org', true], + ['https://wb2.example.org', true], + ['http://wb2.example.org/', true], + ['https://wb2.example.org/', true], + ].each do |wb2_url_config, wb2_menu_appear| + test "workbench2_url=#{wb2_url_config} should#{wb2_menu_appear ? '' : ' not'} show WB2 menu" do + Rails.configuration.Services.Workbench2.ExternalURL = URI(wb2_url_config) + if !wb2_menu_appear and !wb2_url_config.empty? + assert_raises RuntimeError do + ConfigValidators.validate_wb2_url_config() + end + Rails.configuration.Services.Workbench2.ExternalURL = URI("") end - check_help_menu - end - - test "test system menu for user #{token}" do - if !token - visit ('/') - else - visit page_with_token(token) + visit page_with_token('active') + within('.navbar-fixed-top') do + page.find("#notifications-menu").click + within('.dropdown-menu') do + assert_equal wb2_menu_appear, page.has_text?('Go to Workbench 2') + end end - - verify_system_menu user end end - test "test getting started help menu item" do - visit page_with_token('active') - within '.navbar-fixed-top' do - find('.help-menu > a').click - find('.help-menu .dropdown-menu a', text: 'Getting Started ...').click - end + [ + ['active', true], + ['active_with_prefs_profile_no_getting_started_shown', false], + ].each do |token, getting_started_shown| + test "getting started help menu item #{getting_started_shown}" do + Rails.configuration.Workbench.EnableGettingStartedPopup = true - within '.modal-content' do - assert_text 'Getting Started' - assert_selector 'button:not([disabled])', text: 'Next' - assert_no_selector 'button:not([disabled])', text: 'Prev' + visit page_with_token(token) - # 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 + if getting_started_shown + within '.navbar-fixed-top' do + find('.help-menu > a').click + find('.help-menu .dropdown-menu a', text: 'Getting Started ...').click + end + end + + within '.modal-content' do + assert_text 'Getting Started' + assert_selector 'button:not([disabled])', text: 'Next' + assert_no_selector 'button:not([disabled])', text: 'Prev' - # 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 + # Use Next button to enable Prev button click_button 'Next' - begin - find('button:not([disabled])', text: 'Next') - rescue => e - break + 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 - 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 + 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 + first('button', text: 'x').click + end + assert_text 'Recent processes' # seeing dashboard now end - assert_text 'Active pipelines' # seeing dashboard now end test "test arvados_public_data_doc_url config unset" do - Rails.configuration.arvados_public_data_doc_url = false + Rails.configuration.Workbench.ArvadosPublicDataDocURL = "" visit page_with_token('active') within '.navbar-fixed-top' do find('.help-menu > a').click assert_no_selector 'a', text:'Public Pipelines and Data sets' + assert_no_selector 'a', text:'Getting Started ...' - assert_selector 'a', text:'Getting Started ...' assert page.has_link?('Tutorials and User guide'), 'No link - Tutorials and User guide' assert page.has_link?('API Reference'), 'No link - API Reference' assert page.has_link?('SDK Reference'), 'No link - SDK Reference' @@ -203,7 +237,8 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest 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' + Rails.configuration.Services.WebShell.ExternalURL = URI('http://example.com') + Rails.configuration.Users.AnonymousUserToken = "" 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.' @@ -211,18 +246,16 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest end [ - ['Repositories','repository','Attributes'], - ['Virtual machines','virtual machine','current_user_logins'], - ['SSH keys','authorized key','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'], + ['Repositories', nil, 'active/crunchdispatchtest'], + ['Virtual machines', nil, 'testvm.shell'], + ['SSH keys', nil, 'public_key'], + ['Links', nil, 'link_class'], + ['Groups', nil, 'All users'], + ['Compute nodes', nil, 'ping_secret'], + ['Keep services', nil, 'service_ssl_flag'], + ['Keep disks', nil, 'bytes_free'], ].each do |page_name, add_button_text, look_for| test "test system menu #{page_name} link" do - skip 'Skip repositories test until #6652 is fixed.' if page_name == 'Repositories' - visit page_with_token('admin') within('.navbar-fixed-top') do page.find("#system-menu").click @@ -232,12 +265,48 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest end end - # click the add button - assert_selector 'button', text: "Add a new #{add_button_text}" - find('button', text: "Add a new #{add_button_text}").click + # 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 created object page - assert page.has_text? look_for + # look for unique property in the current page + assert_text look_for + end + end + + [ + ['active', false], + ['admin', true], + ].each do |token, is_admin| + test "visit dashboard as #{token}" do + visit page_with_token(token) + + assert_text 'Recent processes' # seeing dashboard now + within('.recent-processes-actions') do + assert page.has_link?('Run a process') + assert page.has_link?('All processes') + end + + within('.recent-processes') do + + within('.row-zzzzz-xvhdp-cr4runningcntnr') do + assert_text 'running' + end + + assert_text 'zzzzz-d1hrv-twodonepipeline' + within('.row-zzzzz-d1hrv-twodonepipeline')do + assert_text 'No output' + end + + assert_text 'completed container request' + within('.row-zzzzz-xvhdp-cr4completedctr')do + assert page.has_link? 'foo_file' + end + end end end end