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
48 click_link 'Jobs and pipelines'
49 find('tr[data-kind="arvados#pipelineInstance"]', text: 'New pipeline instance').
50 find('a', text: 'Show').
53 assert find('p', text: 'Provide a value')
55 find('div.form-group', text: 'Foo/bar pair').
56 find('.btn', text: 'Choose').
59 within('.modal-dialog') do
60 first('span', text: 'foo_tag').click
61 find('button', text: 'OK').click
66 # "Run" button is now enabled
67 page.assert_no_selector 'a.disabled,button.disabled', text: 'Run'
69 first('a,button', text: 'Run').click
71 # Pipeline is running. We have a "Stop" button instead now.
72 page.assert_selector 'a,button', text: 'Stop'
73 find('a,button', text: 'Stop').click
75 # Pipeline is stopped. It should now be in paused state and Runnable again.
76 assert page.has_text? 'Paused'
77 page.assert_no_selector 'a.disabled,button.disabled', text: 'Resume'
78 page.assert_selector 'a,button', text: 'Clone and edit'
80 # Since it is test env, no jobs are created to run. So, graph not visible
81 assert_not page.has_text? 'Graph'
84 # Create a pipeline instance from within a project and run
85 test 'Create pipeline inside a project and run' do
86 visit page_with_token('active_trustedclient')
88 # Go over to the collections page and select something
90 within('tr', text: 'GNU_General_Public_License') do
91 find('input[type=checkbox]').click
93 find('#persistent-selection-count').click
95 # Add this collection to the project using collections menu from top nav
97 find('.arv-project-list a,button', text: 'A Project').click
99 find('li.selection-menu > a').click
100 click_button 'Copy selections into this project'
102 # create a pipeline instance
103 find('.btn', text: 'Run a pipeline').click
104 within('.modal-dialog') do
105 assert page.has_text? 'Two Part Pipeline Template'
106 find('.selectable', text: 'Two Part Pipeline Template').click
107 find('.btn', text: 'Next: choose inputs').click
110 assert find('p', text: 'Provide a value')
112 find('div.form-group', text: 'Foo/bar pair').
113 find('.btn', text: 'Choose').
116 within('.modal-dialog') do
117 first('span', text: 'foo_tag').click
118 find('button', text: 'OK').click
123 # "Run" button present and enabled
124 page.assert_no_selector 'a.disabled,button.disabled', text: 'Run'
125 first('a,button', text: 'Run').click
127 # Pipeline is running. We have a "Stop" button instead now.
128 page.assert_no_selector 'a,button', text: 'Run'
129 page.assert_selector 'a,button', text: 'Stop'
131 # Since it is test env, no jobs are created to run. So, graph not visible
132 assert_not page.has_text? 'Graph'
135 test 'view pipeline with job and see graph' do
136 visit page_with_token('active_trustedclient')
138 visit '/pipeline_instances'
139 assert page.has_text? 'pipeline_with_job'
141 find('a', text: 'pipeline_with_job').click
143 # since the pipeline component has a job, expect to see the graph
144 assert page.has_text? 'Graph'
146 assert page.has_text? 'script_version'
149 test "JSON popup available for strange components" do
150 uuid = api_fixture("pipeline_instances")["components_is_jobspec"]["uuid"]
151 visit page_with_token("active", "/pipeline_instances/#{uuid}")
152 click_on "Components"
153 assert(page.has_no_text?("script_parameters"),
154 "components JSON visible without popup")
155 click_on "Show components JSON"
156 assert(page.has_text?("script_parameters"),
157 "components JSON not found")