Merge branch 'master' into 4227-date-display
[arvados.git] / apps / workbench / test / integration / pipeline_instances_test.rb
index eb9b987560e0689bccbb84705ac5a6f3daca466a..77aaf790130cb3e433e1a66c13298af139a181ad 100644 (file)
@@ -202,15 +202,18 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest
   end
 
   [
-    [false, false, false],
-    [false, false, true],
-    [true, false, false],
-    [true, true, false],
-    [true, false, true],
-    [true, true, true],
-  ].each do |with_options, choose_options, in_aproject|
-    test "Rerun pipeline instance using options #{with_options} #{choose_options} in #{in_aproject}" do
-      visit page_with_token('active_trustedclient')
+    ['active', false, false, false],
+    ['active', false, false, true],
+    ['active', true, false, false],
+    ['active', true, true, false],
+    ['active', true, false, true],
+    ['active', true, true, true],
+    ['project_viewer', false, false, true],
+    ['project_viewer', true, false, true],
+    ['project_viewer', true, true, true],
+  ].each do |user, with_options, choose_options, in_aproject|
+    test "Rerun pipeline instance as #{user} using options #{with_options} #{choose_options} in #{in_aproject}" do
+      visit page_with_token('active')
 
       if in_aproject
         find("#projects-menu").click
@@ -220,13 +223,23 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest
       create_and_run_pipeline_in_aproject in_aproject
       instance_path = current_path
 
-      # pause the pipeline
+      # Pause the pipeline
       find('a,button', text: 'Pause').click
       assert page.has_text? 'Paused'
       page.assert_no_selector 'a.disabled,button.disabled', text: 'Resume'
       page.assert_selector 'a,button', text: 'Re-run with latest'
       page.assert_selector 'a,button', text: 'Re-run options'
 
+      # Pipeline can be re-run now. Access it as the specified user, and re-run
+      if user == 'project_viewer'
+        visit page_with_token(user, instance_path)
+        assert page.has_text? 'A Project'
+        page.assert_no_selector 'a.disabled,button.disabled', text: 'Resume'
+        page.assert_selector 'a,button', text: 'Re-run with latest'
+        page.assert_selector 'a,button', text: 'Re-run options'
+      end
+
+      # Now re-run the pipeline
       if with_options
         find('a,button', text: 'Re-run options').click
         within('.modal-dialog') do
@@ -242,12 +255,16 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest
         find('a,button', text: 'Re-run with latest').click
       end
 
-      # verify that the newly created instance is in the expected project
+      # Verify that the newly created instance is created in the right project.
+      # In case of project_viewer user, since the use cannot write to the project,
+      # the pipeline should have been created in the user's Home project.
       rerun_instance_path = current_path
       assert_not_equal instance_path, rerun_instance_path, 'Rerun instance path expected to be different'
       assert page.has_text? 'Home'
-      if in_aproject
+      if in_aproject && (user != 'project_viewer')
         assert page.has_text? 'A Project'
+      else
+        assert page.has_no_text? 'A Project'
       end
     end
   end
@@ -296,4 +313,48 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest
     assert_not page.has_text? 'Graph'
   end
 
+  (1..20).each do |index|
+    test "pipeline dates #{index}" do
+      visit page_with_token("user1_with_load", "/pipeline_instances/zzzzz-d1hrv-25pipelines0#{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].split(' ')
+      ran_for = match[2].split(' ')
+      finished_at = match[3].split(' ')
+
+      # start and finished time display is of the format '2:20 PM 10/20/2014'
+      start_date = start_at[2].split('/')
+      start_time = Time.parse(start_date[2]+'/'+start_date[0]+'/'+start_date[1]+'T'+start_at[0])
+      if start_at[1].eql?('PM') and !start_at[0].start_with?('12:')
+        start_time += 12*60*60 
+      end
+
+      finished_date = finished_at[2].split('/')
+      finished_time = Time.parse(finished_date[2]+'/'+finished_date[0]+'/'+finished_date[1]+'T'+finished_at[0])
+      if finished_at[1].eql?('PM') and !finished_at[0].start_with?('12:')
+        finished_time += 12*60*60 
+      end
+
+      # ran for time display is of the format 4 minutes 52 seconds
+      run_time = ran_for[-1].to_i
+      if ran_for[-2].andand.start_with?('minute')
+        run_time += ran_for[-3].to_i*60 if ran_for[-3]
+      elsif ran_for[-2].andand.start_with?('hour')
+        run_time += ran_for[-3].to_i*60*60 if ran_for[-3]
+      elsif ran_for[-2].andand.start_with?('day')
+        run_time += ran_for[-3].to_i*60*60*60 if ran_for[-3]
+      end
+      if ran_for[-4].andand.start_with?('hour')
+        run_time += ran_for[-5].to_i*60*60 if ran_for[-5]
+      elsif ran_for[-4].andand.start_with?('day')
+        run_time += ran_for[-5].to_i*60*60*60 if ran_for[-5]
+      end
+      run_time += ran_for[-7].to_i*60*60*60 if ran_for[-7]
+
+      assert_equal(run_time, finished_time-start_time, "Time difference did not match for start_at #{start_at}, finished_at #{finished_at}, ran_for  #{ran_for}")
+    end
+  end
+
 end