X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/3100cf66fee222eed832bd813cc0b7430bed0f93..98db65de63c9e2acfeae6636ccc619171635bda0:/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 505767814a..e28809e131 100644 --- a/apps/workbench/test/integration/application_layout_test.rb +++ b/apps/workbench/test/integration/application_layout_test.rb @@ -129,6 +129,7 @@ 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 @@ -213,7 +214,7 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest first('button', text: 'x').click end - assert_text 'Recent pipelines and processes' # seeing dashboard now + assert_text 'Recent processes' # seeing dashboard now end end @@ -237,6 +238,7 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest test "no SSH public key notification when shell_in_a_box_url is configured" do 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.' @@ -283,7 +285,7 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest test "visit dashboard as #{token}" do visit page_with_token(token) - assert_text 'Recent pipelines and processes' # seeing dashboard now + 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') @@ -305,19 +307,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