X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/04b9d6e93ca8bd18dca697e56689820516c8c572..de11b137d4469e9d54e078ac0dd5664bdb90e486:/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 e5cc6e4dc0..9d4f590555 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| @@ -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,12 +141,11 @@ 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 visit page_with_token('admin') - 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?('All processes') @@ -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')