X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/dd59a50f9f3933c359930806516b43899a8b4957..a124a5350d31001a7c66381fa853dfcd78dddd06:/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 aa856b5b28..a941389c00 100644 --- a/apps/workbench/test/integration/pipeline_instances_test.rb +++ b/apps/workbench/test/integration/pipeline_instances_test.rb @@ -313,4 +313,26 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest assert_not page.has_text? 'Graph' end + [ + [0, 0], # run time 0 minutes + [9, 17*60*60 + 51*60], # run time 17 hours and 51 minutes + ].each do |index, run_time| + test "pipeline start and finish time display #{index}" do + visit page_with_token("user1_with_load", "/pipeline_instances/zzzzz-d1hrv-10pipelines0#{index.to_s.rjust(3, '0')}") + + assert page.has_text? 'This pipeline started at' + page_text = page.text + match = /This pipeline started at (.*)\. It failed after (.*) seconds at (.*)\. Check the Log/.match page_text + + start_at = match[1] + finished_at = match[3] + + # start and finished time display is of the format '2:20 PM 10/20/2014' + start_time = DateTime.strptime(start_at, '%I:%M %p %m/%d/%Y').to_time + finished_time = DateTime.strptime(finished_at, '%I:%M %p %m/%d/%Y').to_time + + assert_equal(run_time, finished_time-start_time, + "Time difference did not match for start_at #{start_at}, finished_at #{finished_at}, ran_for #{match[2]}") + end + end end