X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/19ae770973482257117fe8ded5619c3018c4b60f..6757824d984496469cd929cdbb62643c1cede7fd:/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 4a6a553437..c4eb941b08 100644 --- a/apps/workbench/test/integration/application_layout_test.rb +++ b/apps/workbench/test/integration/application_layout_test.rb @@ -179,7 +179,7 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest first('button', text: 'x').click end - assert_text 'Active pipelines' # seeing dashboard now + assert_text 'Recent pipelines and processes' # seeing dashboard now end end @@ -241,4 +241,50 @@ class ApplicationLayoutTest < ActionDispatch::IntegrationTest 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 pipelines and processes' # seeing dashboard now + within('.recent-processes-actions') do + assert page.has_link?('Run a pipeline') + assert page.has_link?('All processes') + end + + within('.recent-processes') do + assert_text 'pipeline_with_job' + + within('.row-zzzzz-xvhdp-cr4runningcntnr') do + assert_text 'requester_for_running_cr' + 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? '1f4b0bc7583c2a7f9102c395f4ffc5e3+45' + 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