X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/7d2f01a15a9e0ecf7bce74e1d271b6fb2993bbc3..927524f1be454de021180b74999d682780b8cb6b:/apps/workbench/test/integration/application_layout_test.rb?ds=sidebyside diff --git a/apps/workbench/test/integration/application_layout_test.rb b/apps/workbench/test/integration/application_layout_test.rb index ac5b529708..35a1415213 100644 --- a/apps/workbench/test/integration/application_layout_test.rb +++ b/apps/workbench/test/integration/application_layout_test.rb @@ -20,9 +20,9 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest 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_text?('If you have never used Arvados Workbench before'), 'Not found text - If you have never' assert page.has_no_text?('My projects'), 'Found text - My projects' - assert page.has_link?("Log in to #{Rails.configuration.Workbench.SiteName}"), 'Not found text - log in to' + assert page.has_link?("Log in"), 'Not found text - Log in' elsif user['is_active'] if profile_config && !has_profile assert page.has_text?('Save profile'), 'No text - Save profile' @@ -251,9 +251,7 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest ['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 visit page_with_token('admin') @@ -307,19 +305,6 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest assert page.has_link? 'foo_file' end end - - within('.compute-node-actions') do - if is_admin - assert page.has_link?('All nodes') - else - assert page.has_no_link?('All nodes') - end - end - - within('.compute-node-summary-pane') do - click_link 'Details' - assert_text 'compute0' - end end end end