X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/1eedd481146bc30cd2548c44399949cbfa2d576b..1471ad4b235e168ccee4fa351b0025b2b380d7ac:/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 431719e6af..d90d0cb536 100644 --- a/apps/workbench/test/diagnostics/pipeline_test.rb +++ b/apps/workbench/test/diagnostics/pipeline_test.rb @@ -1,55 +1,56 @@ -require 'integration_helper' -require 'selenium-webdriver' -require 'headless' +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 -class PipelineTest < ActionDispatch::IntegrationTest - setup do - headless = Headless.new - headless.start - Capybara.current_driver = :selenium - end - - test 'Run tutorial pipeline' do - visit page_with_token(Rails.configuration.diagnostics_testing_active_user_token) - - # Search for tutorial template - within('.navbar-fixed-top') do - page.find_field('search').set 'Diagnostic testing - Tutorial pipeline template' - page.find('.glyphicon-search').click - end - - within '.modal-content' do - find('.selectable', text: 'Diagnostic testing - Tutorial pipeline template').click - click_button 'Show' - end +require 'diagnostics_test_helper' - # Tun the pipeline - find('a,button', text: 'Run').click +class PipelineTest < DiagnosticsTest + pipelines_to_test = Rails.configuration.pipelines_to_test.andand.keys - # Choose project - within('.modal-dialog') do - find('.selectable', text: 'Home').click - find('button', text: 'Choose').click - end - - # This pipeline needs input. So, Run should be disabled - page.assert_selector 'a.disabled,button.disabled', text: 'Run' - - instance_page = current_path + setup do + need_selenium 'to make websockets work' + end - # Choose input for the pipeline - find('.btn', text: 'Choose').click - within('.modal-dialog') do - find('.selectable', text: 'Diagnostic testing - Tutorial pipeline input').click - find('button', text: 'OK').click + pipelines_to_test.andand.each do |pipeline_to_test| + test "run pipeline: #{pipeline_to_test}" do + visit_page_with_token 'active' + 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 this site').set pipeline_config['template_uuid'] + page.find('.glyphicon-search').click + end + + # Run the pipeline + assert_triggers_dom_event 'shown.bs.modal' do + find('a,button', text: 'Run').click + end + + # Choose project + within('.modal-dialog') do + find('.selectable', text: 'Home').click + 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 + pipeline_config['input_paths'].each do |look_for| + select_input look_for + end + wait_for_ajax + + # 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 "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 - wait_for_ajax - - # Run this pipeline instance - 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