X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/5ff990155f06109c55bbb832a8dd670265d3f3d1..437d4225617df22b4e6d9c245f854620cdc09bc7:/apps/workbench/test/diagnostics/pipeline_test.rb diff --git a/apps/workbench/test/diagnostics/pipeline_test.rb b/apps/workbench/test/diagnostics/pipeline_test.rb index 2f20b00a00..fbc144a996 100644 --- a/apps/workbench/test/diagnostics/pipeline_test.rb +++ b/apps/workbench/test/diagnostics/pipeline_test.rb @@ -3,7 +3,7 @@ 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 @@ -11,11 +11,10 @@ class PipelineTest < DiagnosticsTest Capybara.current_driver = :selenium 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 "visit home page for user #{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 within('.navbar-fixed-top') do @@ -32,36 +31,63 @@ class PipelineTest < DiagnosticsTest find('button', text: 'Choose').click end + page.assert_selector('a.disabled,button.disabled', text: 'Run') if pipeline_config['input_paths'].any? + # Choose input for the pipeline - if pipeline_config['input_paths'].andand.any? - # This pipeline needs input. So, Run should be disabled - page.assert_selector 'a.disabled,button.disabled', text: 'Run' - - inputs_needed = page.all('.btn', text: 'Choose') - inputs_needed.each_with_index do |input_needed, index| - input_needed.click - within('.modal-dialog') do - look_for = pipeline_config['input_paths'][index] - found = page.has_text?(look_for) - if found - find('.selectable').click - else - fill_in('Search', with: look_for, exact: true) - wait_for_ajax - find('.selectable').click - end - find('button', text: 'OK').click - wait_for_ajax - end - end + pipeline_config['input_paths'].each do |look_for| + select_input look_for end + wait_for_ajax - # Run this pipeline instance + # All needed input are filled in. Run this pipeline now find('a,button', text: 'Run').click # Pipeline is running. We have a "Stop" button instead now. - page.assert_selector 'a,button', text: 'Stop' + page.assert_selector 'a,button', text: 'Pause' + + # Wait for pipeline run to complete + wait_until_page_has 'Complete', pipeline_config['max_wait_seconds'] end end + def select_input look_for + inputs_needed = page.all('.btn', text: 'Choose') + return if (!inputs_needed || !inputs_needed.any?) + + look_for_uuid = nil + look_for_file = nil + if look_for.andand.index('/').andand.>0 + partitions = look_for.partition('/') + look_for_uuid = partitions[0] + look_for_file = partitions[2] + else + look_for_uuid = look_for + look_for_file = nil + end + + inputs_needed[0].click + + within('.modal-dialog') do + if look_for_uuid + fill_in('Search', with: look_for_uuid, exact: true) + wait_for_ajax + end + + page.all('.selectable').first.click + wait_for_ajax + # ajax reload is wiping out input selection after search results; so, select again. + page.all('.selectable').first.click + wait_for_ajax + + if look_for_file + wait_for_ajax + within('.collection_files_name', text: look_for_file) do + find('.fa-file').click + end + end + + find('button', text: 'OK').click + wait_for_ajax + end + end end