X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a66a265608dbde7f3dd02dcd64ffba55f6a772fd..a41baffe4f38019cb5b36875c5e0c838ef9201e5:/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 9f4ce692e5..ebdb28b215 100644 --- a/apps/workbench/test/integration/pipeline_instances_test.rb +++ b/apps/workbench/test/integration/pipeline_instances_test.rb @@ -182,17 +182,27 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest "components JSON not found") end - PROJECT_WITH_SEARCH_COLLECTION = "A Subproject" - def check_parameter_search(proj_name) - template = api_fixture("pipeline_templates")["parameter_with_search"] - search_text = template["components"]["with-search"]["script_parameters"]["input"]["search_for"] - visit page_with_token("active", "/pipeline_templates/#{template['uuid']}") + def create_pipeline_from(template_name, project_name="Home") + # Visit the named pipeline template and create a pipeline instance from it. + # The instance will be created under the named project. + template_uuid = api_fixture("pipeline_templates", template_name, "uuid") + visit page_with_token("active", "/pipeline_templates/#{template_uuid}") click_on "Run this pipeline" - within(".modal-dialog") do # Set project for the new pipeline instance - find(".selectable", text: proj_name).click + within(".modal-dialog") do + # Set project for the new pipeline instance + find(".selectable", text: project_name).click click_on "Choose" end - assert(has_text?("This pipeline was created from the template"), "did not land on pipeline instance page") + assert(has_text?("This pipeline was created from the template"), + "did not land on pipeline instance page") + end + + PROJECT_WITH_SEARCH_COLLECTION = "A Subproject" + def check_parameter_search(proj_name) + create_pipeline_from("parameter_with_search", proj_name) + search_text = api_fixture("pipeline_templates", "parameter_with_search", + "components", "with-search", + "script_parameters", "input", "search_for") first("a.btn,button", text: "Choose").click within(".modal-body") do if (proj_name != PROJECT_WITH_SEARCH_COLLECTION) @@ -215,6 +225,23 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest check_parameter_search("A Project") end + test "enter a float for a number pipeline input" do + # Poltergeist either does not support the HTML 5 , or interferes with the associated X-Editable + # validation code. If the input field has type=number (forcing an + # integer), this test will yield a false positive under + # Poltergeist. --Brett, 2015-02-05 + need_selenium "for strict X-Editable input validation" + create_pipeline_from("template_with_dataclass_number") + INPUT_SELECTOR = + ".editable[data-name='[components][work][script_parameters][input][value]']" + find(INPUT_SELECTOR).click + find(".editable-input input").set("12.34") + find("#editable-submit").click + assert_no_selector(".editable-popup") + assert_selector(INPUT_SELECTOR, text: "12.34") + end + [ [true, 'Two Part Pipeline Template', 'foo_collection_in_aproject', false], [false, 'Two Part Pipeline Template', 'foo_collection_in_aproject', false], @@ -267,34 +294,18 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest ].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 if in_aproject - visit page_with_token 'active', \ - '/projects/'+api_fixture('groups')['aproject']['uuid'] + path = '/pipeline_instances/'+api_fixture('pipeline_instances')['pipeline_owned_by_active_in_aproject']['uuid'] else - visit page_with_token 'active', '/' + path = '/pipeline_instances/'+api_fixture('pipeline_instances')['pipeline_owned_by_active_in_home']['uuid'] end - # need bigger modal size when choosing a file from collection - if Capybara.current_driver == :selenium - Capybara.current_session.driver.browser.manage.window.resize_to(1200, 800) - end - - create_and_run_pipeline_in_aproject in_aproject, 'Two Part Pipeline Template', 'foo_collection_in_aproject' - instance_path = current_path + visit page_with_token(user, path) - # 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) + if user == 'project_viewer' && in_aproject 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 @@ -319,7 +330,7 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest # project. In case of project_viewer user, since the user cannot # write to the project, the pipeline should have been created in # the user's Home project. - assert_not_equal instance_path, current_path, 'Rerun instance path expected to be different' + assert_not_equal path, current_path, 'Rerun instance path expected to be different' assert_text 'Home' if in_aproject && (user != 'project_viewer') assert_text 'A Project' @@ -484,5 +495,4 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest end end end - end