X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/d8b8e96fe4c07369f1296a174abf6e3aab4092a0..3bfb9c5cbf5dd56b84fd17f9e1dcdd6a219fe5fe:/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 e3441c4b3d..ba36220717 100644 --- a/apps/workbench/test/integration/application_layout_test.rb +++ b/apps/workbench/test/integration/application_layout_test.rb @@ -1,12 +1,13 @@ require 'integration_helper' -require 'selenium-webdriver' -require 'headless' class ApplicationLayoutTest < ActionDispatch::IntegrationTest + # These tests don't do state-changing API calls. Save some time by + # skipping the database reset. + reset_api_fixtures :after_each_test, false + reset_api_fixtures :after_suite, true + setup do - headless = Headless.new - headless.start - Capybara.current_driver = :selenium + need_javascript end def verify_homepage user, invited, has_profile @@ -21,7 +22,10 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest if profile_config && !has_profile assert page.has_text?('Save profile'), 'No text - Save profile' else - assert page.has_text?('My projects'), 'Not found text - My projects' + assert page.has_link?("Projects"), 'Not found link - Projects' + page.find("#projects-menu").click + assert_selector 'a', text: 'Add a new project' + assert_no_selector 'a', text: 'Browse public projects' assert page.has_text?('Projects shared with me'), 'Not found text - Project shared with me' end elsif invited @@ -32,25 +36,36 @@ 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 page.has_link?('Log in'), 'Not found link - Log in' else # my account menu - assert page.has_link?("#{user['email']}"), 'Not found link - email' - find('a', text: "#{user['email']}").click + assert_selector 'a', text: Rails.configuration.site_name.downcase + 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' @@ -64,6 +79,8 @@ 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_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' assert page.has_link?('SDK Reference'), 'No link - SDK Reference' @@ -94,52 +111,6 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest end end - # test manage_account page - def verify_manage_account user - if user && user['is_active'] - within('.navbar-fixed-top') do - find('a', text: "#{user['email']}").click - within('.dropdown-menu') do - find('a', text: 'Manage account').click - end - end - - # now in manage account page - assert page.has_text?('Virtual Machines'), 'No text - Virtual Machines' - 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' - - click_link 'Add new SSH key' - - within '.modal-content' do - assert page.has_text?('Public Key'), 'No text - Public Key' - assert page.has_button?('Cancel'), 'No button - Cancel' - assert page.has_button?('Submit'), 'No button - Submit' - - page.find_field('public_key').set 'first test with an incorrect ssh key value' - click_button 'Submit' - assert page.has_text?('Public key does not appear to be a valid ssh-rsa or dsa public key'), 'No text - Public key does not appear to be a valid' - - public_key_str = api_fixture('authorized_keys')['active']['public_key'] - page.find_field('public_key').set public_key_str - page.find_field('name').set 'added_in_test' - click_button 'Submit' - assert page.has_text?('Public key already exists in the database, use a different key.'), 'No text - Public key already exists' - - new_key = SSHKey.generate - page.find_field('public_key').set new_key.ssh_public_key - page.find_field('name').set 'added_in_test' - click_button 'Submit' - end - - # key must be added. look for it in the refreshed page - assert page.has_text?('added_in_test'), 'No text - added_in_test' - end - end - [ [nil, nil, false, false], ['inactive', api_fixture('users')['inactive'], true, false], @@ -147,7 +118,8 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest ['active', api_fixture('users')['active'], true, true], ['admin', api_fixture('users')['admin'], true, true], ['active_no_prefs', api_fixture('users')['active_no_prefs'], true, false], - ['active_no_prefs_profile', api_fixture('users')['active_no_prefs_profile'], true, false], + ['active_no_prefs_profile_no_getting_started_shown', + api_fixture('users')['active_no_prefs_profile_no_getting_started_shown'], true, false], ].each do |token, user, invited, has_profile| test "visit home page for user #{token}" do @@ -169,21 +141,111 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest check_help_menu end - end - - [ - ['active', api_fixture('users')['active']], - ['admin', api_fixture('users')['admin']], - ].each do |token, user| test "test system menu for user #{token}" do - visit page_with_token(token) + if !token + visit ('/') + else + visit page_with_token(token) + 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 + + within '.modal-content' do + 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 + end + + test "test arvados_public_data_doc_url config unset" do + Rails.configuration.arvados_public_data_doc_url = false + + 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_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' + assert page.has_link?('Show version / debugging info ...'), 'No link - Show version / debugging info' + 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 - test "test manage account for user #{token}" do - visit page_with_token(token) - verify_manage_account user + # look for unique property in the current page + assert_text look_for end end end