X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/6eb3d1fb8fe71623fa63da46c250184cf2e4fbb8..730eb182b2160040a902feb09276b75a3f9c137c:/apps/workbench/test/integration/pipeline_instances_test.rb diff --git a/apps/workbench/test/integration/pipeline_instances_test.rb b/apps/workbench/test/integration/pipeline_instances_test.rb index da8f439dfe..3d8cbf0b63 100644 --- a/apps/workbench/test/integration/pipeline_instances_test.rb +++ b/apps/workbench/test/integration/pipeline_instances_test.rb @@ -78,11 +78,11 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest first('span', text: 'foo_tag').click find('.btn', text: 'Copy').click end - using_wait_time(Capybara.default_wait_time * 3) do + using_wait_time(Capybara.default_max_wait_time * 3) do wait_for_ajax end - click_link 'Jobs and pipelines' + click_link 'Pipelines and processes' find('tr[data-kind="arvados#pipelineInstance"]', text: '(none)'). find('a', text: 'Show'). click @@ -166,7 +166,7 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest first('span', text: 'foo_tag').click find('.btn', text: 'Copy').click end - using_wait_time(Capybara.default_wait_time * 3) do + using_wait_time(Capybara.default_max_wait_time * 3) do wait_for_ajax end @@ -469,7 +469,7 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest page_text = page.text if run_time - match = /This pipeline started at (.*)\. It failed after (.*) seconds at (.*)\. Check the Log/.match page_text + match = /This pipeline started at (.*)\. It failed after (.*) at (.*)\. Check the Log/.match page_text else match = /This pipeline started at (.*). It has been active for(.*)/.match page_text end @@ -545,12 +545,12 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest test "job logs linked for running pipeline" do pi = api_fixture("pipeline_instances", "running_pipeline_with_complete_job") visit(page_with_token("active", "/pipeline_instances/#{pi['uuid']}")) - click_on "Log" + find(:xpath, "//a[@href='#Log']").click within "#Log" do assert_text "Log for previous" log_link = find("a", text: "Log for previous") assert_includes(log_link[:href], - pi["components"]["previous"]["job"]["log"]) + "/jobs/#{pi["components"]["previous"]["job"]["uuid"]}#Log") assert_selector "#event_log_div" end end @@ -558,12 +558,12 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest test "job logs linked for complete pipeline" do pi = api_fixture("pipeline_instances", "complete_pipeline_with_two_jobs") visit(page_with_token("active", "/pipeline_instances/#{pi['uuid']}")) - click_on "Log" + find(:xpath, "//a[@href='#Log']").click within "#Log" do assert_text "Log for previous" pi["components"].each do |cname, cspec| log_link = find("a", text: "Log for #{cname}") - assert_includes(log_link[:href], cspec["job"]["log"]) + assert_includes(log_link[:href], "/jobs/#{cspec["job"]["uuid"]}#Log") end assert_no_selector "#event_log_div" end @@ -572,12 +572,12 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest test "job logs linked for failed pipeline" do pi = api_fixture("pipeline_instances", "failed_pipeline_with_two_jobs") visit(page_with_token("active", "/pipeline_instances/#{pi['uuid']}")) - click_on "Log" + find(:xpath, "//a[@href='#Log']").click within "#Log" do assert_text "Log for previous" pi["components"].each do |cname, cspec| log_link = find("a", text: "Log for #{cname}") - assert_includes(log_link[:href], cspec["job"]["log"]) + assert_includes(log_link[:href], "/jobs/#{cspec["job"]["uuid"]}#Log") end assert_no_selector "#event_log_div" end