Merge branch '12995-wb-merge-acct' refs #12995
[arvados.git] / apps / workbench / test / diagnostics / pipeline_test.rb
index fdc9d20a4ca07ec1afe228ebe4eaff15960a9ae8..d90d0cb53664bd514daa0ec4f4d4194b063e9b7a 100644 (file)
@@ -1,36 +1,32 @@
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: AGPL-3.0
+
 require 'diagnostics_test_helper'
-require 'selenium-webdriver'
-require 'headless'
 
 class PipelineTest < DiagnosticsTest
-  pipelines_to_run = Rails.configuration.diagnostics_testing_pipeline_fields.andand.keys
+  pipelines_to_test = Rails.configuration.pipelines_to_test.andand.keys
 
   setup do
-    headless = Headless.new
-    headless.start
-    Capybara.current_driver = :selenium
+    need_selenium 'to make websockets work'
   end
 
-  pipelines_to_run.andand.each do |pipeline_to_run|
-    test "visit home page for user #{pipeline_to_run}" do
+  pipelines_to_test.andand.each do |pipeline_to_test|
+    test "run pipeline: #{pipeline_to_test}" do
       visit_page_with_token 'active'
-
-      pipeline_config = diagnostic_test_pipeline_config pipeline_to_run
+      pipeline_config = Rails.configuration.pipelines_to_test[pipeline_to_test]
 
       # Search for tutorial template
+      find '.navbar-fixed-top'
       within('.navbar-fixed-top') do
-        page.find_field('search').set pipeline_config['template_uuid']
+        page.find_field('search this site').set pipeline_config['template_uuid']
         page.find('.glyphicon-search').click
       end
 
-#      within '.modal-content' do
-#        find('.selectable', text: pipeline_config['template_name']).click
-#        find(:xpath, "//div[./span[contains(.,'zzzzz-p5p6p-rxj8d71854j9idn')]]").click
-#        click_button 'Show'
-#      end
-
       # Run the pipeline
-      find('a,button', text: 'Run').click
+      assert_triggers_dom_event 'shown.bs.modal' do
+        find('a,button', text: 'Run').click
+      end
 
       # Choose project
       within('.modal-dialog') do
@@ -38,23 +34,23 @@ class PipelineTest < DiagnosticsTest
         find('button', text: 'Choose').click
       end
 
-        # This pipeline needs input. So, Run should be disabled
-        page.assert_selector 'a.disabled,button.disabled', text: 'Run'
+      page.assert_selector('a.disabled,button.disabled', text: 'Run') if pipeline_config['input_paths'].any?
 
-        # Choose input for the pipeline
-        find('.btn', text: 'Choose').click
-        within('.modal-dialog') do
-          find('.selectable', text: pipeline_config['input_names'][0]).click
-          find('button', text: 'OK').click
-        end
-        wait_for_ajax
+      # Choose input for the pipeline
+      pipeline_config['input_paths'].each do |look_for|
+        select_input look_for
+      end
+      wait_for_ajax
 
-        # Run this pipeline instance
-        find('a,button', text: 'Run').click
+      # All needed input are filled in. Run this pipeline now
+      find('a,button', text: 'Components').click
+      find('a,button', text: 'Run').click
 
-        # Pipeline is running. We have a "Stop" button instead now.
-        page.assert_selector 'a,button', text: 'Stop'
-      end
-  end
+      # Pipeline is running. We have a "Pause" button instead now.
+      page.assert_selector 'a,button', text: 'Pause'
 
+      # Wait for pipeline run to complete
+      wait_until_page_has 'completed', pipeline_config['max_wait_seconds']
+    end
+  end
 end