X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/32e4350b4ea4c111ae95d9a99712fb86bf0ecb86..0215bf7b8c61d59462a476d850af999105856177:/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 99eed01c4c..8a2906a43a 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,8 @@ 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 page.has_text?('Projects shared with me'), 'Not found text - Project shared with me' end elsif invited @@ -75,84 +77,22 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest end def verify_system_menu user - if user && user['is_active'] - look_for_add_new = nil + if user && user['is_admin'] + assert page.has_link?('system-menu'), 'No link - system menu' within('.navbar-fixed-top') do page.find("#system-menu").click - if user['is_admin'] - within('.dropdown-menu') do - assert page.has_text?('Groups'), 'No text - Groups' - assert page.has_link?('Repositories'), 'No link - Repositories' - assert page.has_link?('Virtual machines'), 'No link - Virtual machines' - assert page.has_link?('SSH keys'), 'No link - SSH keys' - assert page.has_link?('API tokens'), 'No link - API tokens' - find('a', text: 'Users').click - look_for_add_new = 'Add a new user' - end - else - within('.dropdown-menu') do - assert page.has_no_text?('Users'), 'Found text - Users' - assert page.has_no_link?('Repositories'), 'Found link - Repositories' - assert page.has_no_link?('Virtual machines'), 'Found link - Virtual machines' - assert page.has_no_link?('SSH keys'), 'Found link - SSH keys' - assert page.has_no_link?('API tokens'), 'Found link - API tokens' - - find('a', text: 'Groups').click - look_for_add_new = 'Add a new group' - end - end - end - if look_for_add_new - assert page.has_text? look_for_add_new - end - else - assert page.has_no_link?('#system-menu'), 'Found link - system menu' - 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 + assert page.has_text?('Groups'), 'No text - Groups' + assert page.has_link?('Repositories'), 'No link - Repositories' + assert page.has_link?('Virtual machines'), 'No link - Virtual machines' + assert page.has_link?('SSH keys'), 'No link - SSH keys' + assert page.has_link?('API tokens'), 'No link - API tokens' + find('a', text: 'Users').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' + assert page.has_text? 'Add a new user' + else + assert page.has_no_link?('system-menu'), 'Found link - system menu' end end @@ -185,21 +125,15 @@ 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) - verify_system_menu user - end + if !token + visit ('/') + else + visit page_with_token(token) + end - test "test manage account for user #{token}" do - visit page_with_token(token) - verify_manage_account user + verify_system_menu user end end end