1 require 'integration_helper'
2 require 'selenium-webdriver'
5 class PipelineInstancesTest < ActionDispatch::IntegrationTest
7 # Selecting collections requiresLocalStorage
8 headless = Headless.new
10 Capybara.current_driver = :selenium
13 test 'Create and run a pipeline' do
14 visit page_with_token('active_trustedclient')
16 visit '/pipeline_templates'
17 within('tr', text: 'Two Part Pipeline Template') do
18 find('a,button', text: 'Run').click
22 within('.modal-dialog') do
23 find('.selectable', text: 'A Project').click
24 find('button', text: 'Choose').click
27 # This pipeline needs input. So, Run should be disabled
28 page.assert_selector 'a.disabled,button.disabled', text: 'Run'
30 instance_page = current_path
32 # Go over to the collections page and select something
34 within('tr', text: 'GNU_General_Public_License') do
35 find('input[type=checkbox]').click
37 find('#persistent-selection-count').click
39 # Add this collection to the project
41 find('.arv-project-list a,button', text: 'A Project').click
42 find('.btn', text: 'Add data').click
43 find('span', text: 'foo_tag').click
44 within('.modal-dialog') do
45 find('.btn', text: 'Add').click
49 click_link 'Jobs and pipelines'
50 find('tr[data-kind="arvados#pipelineInstance"]', text: 'New pipeline instance').
51 find('a', text: 'Show').
54 assert find('p', text: 'Provide a value')
56 find('div.form-group', text: 'Foo/bar pair').
57 find('.btn', text: 'Choose').
60 within('.modal-dialog') do
61 assert(has_text?("Foo/bar pair"),
62 "pipeline input picker missing name of input")
63 first('span', text: 'foo_tag').click
64 find('button', text: 'OK').click
69 # "Run" button is now enabled
70 page.assert_no_selector 'a.disabled,button.disabled', text: 'Run'
72 first('a,button', text: 'Run').click
74 # Pipeline is running. We have a "Stop" button instead now.
75 page.assert_selector 'a,button', text: 'Stop'
76 find('a,button', text: 'Stop').click
78 # Pipeline is stopped. It should now be in paused state and Runnable again.
79 assert page.has_text? 'Paused'
80 page.assert_no_selector 'a.disabled,button.disabled', text: 'Resume'
81 page.assert_selector 'a,button', text: 'Clone and edit'
83 # Since it is test env, no jobs are created to run. So, graph not visible
84 assert_not page.has_text? 'Graph'
87 # Create a pipeline instance from within a project and run
88 test 'Create pipeline inside a project and run' do
89 visit page_with_token('active_trustedclient')
91 # Go over to the collections page and select something
93 within('tr', text: 'GNU_General_Public_License') do
94 find('input[type=checkbox]').click
96 find('#persistent-selection-count').click
98 # Add this collection to the project using collections menu from top nav
100 find('.arv-project-list a,button', text: 'A Project').click
102 find('li.selection-menu > a').click
103 click_button 'Copy selections into this project'
105 # create a pipeline instance
106 find('.btn', text: 'Run a pipeline').click
107 within('.modal-dialog') do
108 assert page.has_text? 'Two Part Pipeline Template'
109 find('.selectable', text: 'Two Part Pipeline Template').click
110 find('.btn', text: 'Next: choose inputs').click
113 assert find('p', text: 'Provide a value')
115 find('div.form-group', text: 'Foo/bar pair').
116 find('.btn', text: 'Choose').
119 within('.modal-dialog') do
120 first('span', text: 'foo_tag').click
121 find('button', text: 'OK').click
126 # "Run" button present and enabled
127 page.assert_no_selector 'a.disabled,button.disabled', text: 'Run'
128 first('a,button', text: 'Run').click
130 # Pipeline is running. We have a "Stop" button instead now.
131 page.assert_no_selector 'a,button', text: 'Run'
132 page.assert_selector 'a,button', text: 'Stop'
134 # Since it is test env, no jobs are created to run. So, graph not visible
135 assert_not page.has_text? 'Graph'
138 test 'view pipeline with job and see graph' do
139 visit page_with_token('active_trustedclient')
141 visit '/pipeline_instances'
142 assert page.has_text? 'pipeline_with_job'
144 find('a', text: 'pipeline_with_job').click
146 # since the pipeline component has a job, expect to see the graph
147 assert page.has_text? 'Graph'
149 assert page.has_text? 'script_version'
152 test "JSON popup available for strange components" do
153 uuid = api_fixture("pipeline_instances")["components_is_jobspec"]["uuid"]
154 visit page_with_token("active", "/pipeline_instances/#{uuid}")
155 click_on "Components"
156 assert(page.has_no_text?("script_parameters"),
157 "components JSON visible without popup")
158 click_on "Show components JSON"
159 assert(page.has_text?("script_parameters"),
160 "components JSON not found")