X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2d216d80f51d74c5a9a9d5167fa26a43bbb03d1f..86b7903116608ac3a8314437639cb61d774fb510:/apps/workbench/test/integration/work_units_test.rb diff --git a/apps/workbench/test/integration/work_units_test.rb b/apps/workbench/test/integration/work_units_test.rb index 5f6ef9988b..fe73f2734f 100644 --- a/apps/workbench/test/integration/work_units_test.rb +++ b/apps/workbench/test/integration/work_units_test.rb @@ -78,8 +78,6 @@ class WorkUnitsTest < ActionDispatch::IntegrationTest end [ - ['jobs', 'running_job_with_components', true, true], - ['pipeline_instances', 'components_is_jobspec', true, true], ['containers', 'running', false], ['container_requests', 'running', true], ].each do |type, fixture, cancelable, confirm_cancellation| @@ -93,7 +91,7 @@ class WorkUnitsTest < ActionDispatch::IntegrationTest assert_text 'created_at' if cancelable - assert_text 'priority: 1' if type.include?('container') + assert_text 'priority: 501' if type.include?('container') if type.include?('pipeline') assert_selector 'a', text: 'Pause' first('a,link', text: 'Pause').click @@ -122,8 +120,6 @@ class WorkUnitsTest < ActionDispatch::IntegrationTest end [ - ['jobs', 'running_job_with_components'], - ['pipeline_instances', 'has_component_with_completed_jobs'], ['container_requests', 'running'], ['container_requests', 'completed'], ].each do |type, fixture| @@ -145,7 +141,6 @@ class WorkUnitsTest < ActionDispatch::IntegrationTest end [ - ['Pipeline with default input specifications', 'part-one', 'Provide values for the following'], ['Workflow with default input specifications', 'this workflow has inputs specified', 'Provide a value for the following'], ].each do |template_name, preview_txt, process_txt| test "run a process using template #{template_name} from dashboard" do @@ -248,31 +243,6 @@ class WorkUnitsTest < ActionDispatch::IntegrationTest end end - [ - ['jobs', 'active', 'running_job_with_components', 'component1', '/jobs/zzzzz-8i9sb-jyq01m7in1jlofj#Log'], - ['pipeline_instances', 'active', 'pipeline_in_running_state', 'foo', '/jobs/zzzzz-8i9sb-pshmckwoma9plh7#Log'], - ['pipeline_instances', nil, 'pipeline_in_publicly_accessible_project_but_other_objects_elsewhere', 'foo', 'Log unavailable'], - ].each do |type, token, fixture, child, log_link| - test "link_to_log for #{fixture} for #{token}" do - obj = api_fixture(type)[fixture] - if token - visit page_with_token token, "/#{type}/#{obj['uuid']}" - else - Rails.configuration.anonymous_user_token = - api_fixture("api_client_authorizations", "anonymous", "api_token") - visit "/#{type}/#{obj['uuid']}" - end - - click_link(child) - - if token - assert_selector "a[href=\"#{log_link}\"]" - else - assert_text log_link - end - end - end - test 'Run from workflows index page' do visit page_with_token('active', '/workflows')