X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/7f3ed5e22e01b9cc8efe9ebfc79a2591b37b14d7..140012f16cc5945a8c469db3e11f13cc4493cc22:/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 e019813a16..4e53db7783 100644 --- a/apps/workbench/test/integration/pipeline_instances_test.rb +++ b/apps/workbench/test/integration/pipeline_instances_test.rb @@ -38,7 +38,8 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest # Add this collection to the project visit '/projects' - find('.arv-project-list a,button', text: 'A Project').click + find("#projects-menu").click + find('.dropdown-menu a,button', text: 'A Project').click find('.btn', text: 'Add data').click within('.modal-dialog') do wait_for_ajax @@ -74,14 +75,15 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest first('a,button', text: 'Run').click - # Pipeline is running. We have a "Stop" button instead now. - page.assert_selector 'a,button', text: 'Stop' - find('a,button', text: 'Stop').click + # Pipeline is running. We have a "Pause" button instead now. + page.assert_selector 'a,button', text: 'Pause' + find('a,button', text: 'Pause').click # Pipeline is stopped. It should now be in paused state and Runnable again. assert page.has_text? 'Paused' page.assert_no_selector 'a.disabled,button.disabled', text: 'Resume' - page.assert_selector 'a,button', text: 'Clone and edit' + page.assert_selector 'a,button', text: 'Re-run with latest' + page.assert_selector 'a,button', text: 'Re-run options' # Since it is test env, no jobs are created to run. So, graph not visible assert_not page.has_text? 'Graph' @@ -100,7 +102,8 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest # Add this collection to the project using collections menu from top nav visit '/projects' - find('.arv-project-list a,button', text: 'A Project').click + find("#projects-menu").click + find('.dropdown-menu a,button', text: 'A Project').click find('.btn', text: 'Add data').click within('.modal-dialog') do wait_for_ajax @@ -111,37 +114,56 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest wait_for_ajax end - # create a pipeline instance - find('.btn', text: 'Run a pipeline').click - within('.modal-dialog') do - find('.selectable', text: 'Two Part Pipeline Template').click - find('.btn', text: 'Next: choose inputs').click - end + create_and_run_pipeline_in_aproject true + end - assert find('p', text: 'Provide a value') + # Create a pipeline instance from without a project + test 'Run a pipeline from dashboard' do + visit page_with_token('active_trustedclient') + create_and_run_pipeline_in_aproject false + end - find('div.form-group', text: 'Foo/bar pair'). - find('.btn', text: 'Choose'). - click + # Test that the portable_data_hash is recorded when choosing an + # input collection for a pipeline + test 'pipeline input collections are recorded with portable_data_hash' do + visit page_with_token('active_trustedclient') + + template = api_fixture('pipeline_templates')['simple_pipeline'] + + visit '/pipeline_templates' + within('tr', text: 'Pipeline Template With Collection Input') do + find('a,button', text: 'Run').click + end + # project chooser + project = api_fixture('groups')['aproject'] within('.modal-dialog') do - assert_selector 'button.dropdown-toggle', text: 'A Project' - wait_for_ajax - first('span', text: 'foo_tag').click - find('button', text: 'OK').click + find('.selectable', text: 'A Project').click + find('button', text: 'Choose').click end - wait_for_ajax - # "Run" button present and enabled - page.assert_no_selector 'a.disabled,button.disabled', text: 'Run' - first('a,button', text: 'Run').click + # find the collection input field + input = page.all('a', text: 'Choose').select { |a| + a[:href] =~ /Choose.a.dataset.for.foo.template.input/ + } + assert_not_empty input + input.first.click - # Pipeline is running. We have a "Stop" button instead now. - page.assert_no_selector 'a,button', text: 'Run' - page.assert_selector 'a,button', text: 'Stop' + # Select a collection + col = api_fixture('collections')['foo_collection_in_aproject'] + within('.modal-dialog') do + find('div', text: col['name']).click + find('button', text: 'OK').click + end - # Since it is test env, no jobs are created to run. So, graph not visible - assert_not page.has_text? 'Graph' + # The collection's portable_data_hash, name, and uuid should have + # been recorded, respectively, as the value, selection_name and selection_uuid + # for this component's input script_parameter. + api_response = JSON.parse(find('div#advanced_api_response pre').text) + input_params = api_response['components']['part-one']['script_parameters']['input'] + assert_equal input_params['value'], col['portable_data_hash'] + assert_equal input_params['selection_name'], col['name'] + assert_equal input_params['selection_uuid'], col['uuid'] end test 'view pipeline with job and see graph' do @@ -158,6 +180,26 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest assert page.has_text? 'script_version' end + test 'pipeline description' do + visit page_with_token('active_trustedclient') + + visit '/pipeline_instances' + assert page.has_text? 'pipeline_with_job' + + find('a', text: 'pipeline_with_job').click + + within('.arv-description-as-subtitle') do + find('.fa-pencil').click + find('.editable-input textarea').set('*Textile description for pipeline instance*') + find('.editable-submit').click + end + wait_for_ajax + + # verify description + assert page.has_no_text? '*Textile description for pipeline instance*' + assert page.has_text? 'Textile description for pipeline instance' + end + test "JSON popup available for strange components" do uuid = api_fixture("pipeline_instances")["components_is_jobspec"]["uuid"] visit page_with_token("active", "/pipeline_instances/#{uuid}") @@ -179,7 +221,7 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest find(".selectable", text: proj_name).click click_on "Choose" end - assert(has_text?("From 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") first("a.btn,button", text: "Choose").click within(".modal-body") do if (proj_name != PROJECT_WITH_SEARCH_COLLECTION) @@ -201,4 +243,139 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest test "Workbench preserves search_for parameter after project switch" do check_parameter_search("A Project") end + + [ + ['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 + find('.dropdown-menu a,button', text: 'A Project').click + end + + create_and_run_pipeline_in_aproject in_aproject + instance_path = current_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) + 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 + page.assert_selector 'a,button', text: 'Copy and edit inputs' + page.assert_selector 'a,button', text: 'Run now' + if choose_options + find('button', text: 'Copy and edit inputs').click + else + find('button', text: 'Run now').click + end + end + else + find('a,button', text: 'Re-run with latest').click + end + + # 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 && (user != 'project_viewer') + assert page.has_text? 'A Project' + else + assert page.has_no_text? 'A Project' + end + end + end + + # Create and run a pipeline for 'Two Part Pipeline Template' in 'A Project' + def create_and_run_pipeline_in_aproject in_aproject + # create a pipeline instance + find('.btn', text: 'Run a pipeline').click + within('.modal-dialog') do + find('.selectable', text: 'Two Part Pipeline Template').click + find('.btn', text: 'Next: choose inputs').click + end + + assert find('p', text: 'Provide a value') + + find('div.form-group', text: 'Foo/bar pair'). + find('.btn', text: 'Choose'). + click + + within('.modal-dialog') do + if in_aproject + assert_selector 'button.dropdown-toggle', text: 'A Project' + wait_for_ajax + else + assert_selector 'button.dropdown-toggle', text: 'Home' + wait_for_ajax + click_button "Home" + click_link "A Project" + wait_for_ajax + end + first('span', text: 'foo_tag').click + find('button', text: 'OK').click + end + wait_for_ajax + + # "Run" button present and enabled + page.assert_no_selector 'a.disabled,button.disabled', text: 'Run' + first('a,button', text: 'Run').click + + # Pipeline is running. We have a "Pause" button instead now. + page.assert_no_selector 'a,button', text: 'Run' + page.assert_no_selector 'a.disabled,button.disabled', text: 'Resume' + page.assert_selector 'a,button', text: 'Pause' + + # Since it is test env, no jobs are created to run. So, graph not visible + assert_not page.has_text? 'Graph' + end + + [ + [0, 0], # run time 0 minutes + [9, 17*60*60 + 51*60], # run time 17 hours and 51 minutes + ].each do |index, run_time| + test "pipeline start and finish time display #{index}" do + visit page_with_token("user1_with_load", "/pipeline_instances/zzzzz-d1hrv-10pipelines0#{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] + finished_at = match[3] + + # start and finished time display is of the format '2:20 PM 10/20/2014' + start_time = DateTime.strptime(start_at, '%I:%M %p %m/%d/%Y').to_time + finished_time = DateTime.strptime(finished_at, '%I:%M %p %m/%d/%Y').to_time + + assert_equal(run_time, finished_time-start_time, + "Time difference did not match for start_at #{start_at}, finished_at #{finished_at}, ran_for #{match[2]}") + end + end end