10674: Extend pipeline/workflow creation test to check that parameter with default...
[arvados.git] / apps / workbench / test / integration / work_units_test.rb
1 require 'helpers/fake_websocket_helper'
2 require 'integration_helper'
3
4 class WorkUnitsTest < ActionDispatch::IntegrationTest
5   include FakeWebsocketHelper
6
7   setup do
8     need_javascript
9   end
10
11   test "scroll all_processes page" do
12       expected_min, expected_max, expected, not_expected = [
13         25, 100,
14         ['/pipeline_instances/zzzzz-d1hrv-1yfj61234abcdk3',
15          '/pipeline_instances/zzzzz-d1hrv-jobspeccomponts',
16          '/jobs/zzzzz-8i9sb-grx15v5mjnsyxk7',
17          '/jobs/zzzzz-8i9sb-n7omg50bvt0m1nf',
18          '/container_requests/zzzzz-xvhdp-cr4completedcr2',
19          '/container_requests/zzzzz-xvhdp-cr4requestercn2'],
20         ['/pipeline_instances/zzzzz-d1hrv-scarxiyajtshq3l',
21          '/container_requests/zzzzz-xvhdp-oneof60crs00001']
22       ]
23
24       visit page_with_token('active', "/all_processes")
25
26       page_scrolls = expected_max/20 + 2
27       within('.arv-recent-all-processes') do
28         (0..page_scrolls).each do |i|
29           page.driver.scroll_to 0, 999000
30           begin
31             wait_for_ajax
32           rescue
33           end
34         end
35       end
36
37       # Verify that expected number of processes are found
38       found_items = page.all('tr[data-object-uuid]')
39       found_count = found_items.count
40       if expected_min == expected_max
41         assert_equal(true, found_count == expected_min,
42           "Not found expected number of items. Expected #{expected_min} and found #{found_count}")
43         assert page.has_no_text? 'request failed'
44       else
45         assert_equal(true, found_count>=expected_min,
46           "Found too few items. Expected at least #{expected_min} and found #{found_count}")
47         assert_equal(true, found_count<=expected_max,
48           "Found too many items. Expected at most #{expected_max} and found #{found_count}")
49       end
50
51       # verify that all expected uuid links are found
52       expected.each do |link|
53         assert_selector "a[href=\"#{link}\"]"
54       end
55
56       # verify that none of the not_expected uuid links are found
57       not_expected.each do |link|
58         assert_no_selector "a[href=\"#{link}\"]"
59       end
60   end
61
62   [
63     ['jobs', 'running_job_with_components', true],
64     ['pipeline_instances', 'components_is_jobspec', false],
65     ['containers', 'running', false],
66     ['container_requests', 'running', true],
67   ].each do |type, fixture, cancelable|
68     test "cancel button for #{type}/#{fixture}" do
69       if cancelable
70         need_selenium 'to cancel'
71       end
72
73       obj = api_fixture(type)[fixture]
74       visit page_with_token "active", "/#{type}/#{obj['uuid']}"
75
76       assert_text 'created_at'
77
78       if cancelable
79         assert_text 'priority: 1' if type.include?('container')
80         assert_selector 'button', text: 'Cancel'
81         first('a,button', text: 'Cancel').click
82         wait_for_ajax
83       end
84       assert_text 'priority: 0' if cancelable and type.include?('container')
85     end
86   end
87
88   [
89     ['jobs', 'running_job_with_components'],
90     ['pipeline_instances', 'has_component_with_completed_jobs'],
91     ['container_requests', 'running'],
92     ['container_requests', 'completed'],
93   ].each do |type, fixture|
94     test "edit description for #{type}/#{fixture}" do
95       obj = api_fixture(type)[fixture]
96       visit page_with_token "active", "/#{type}/#{obj['uuid']}"
97
98       within('.arv-description-as-subtitle') do
99         find('.fa-pencil').click
100         find('.editable-input textarea').set('*Textile description for object*')
101         find('.editable-submit').click
102       end
103       wait_for_ajax
104
105       # verify description
106       assert page.has_no_text? '*Textile description for object*'
107       assert page.has_text? 'Textile description for object'
108     end
109   end
110
111   [
112     ['Pipeline with default input specifications', 'part-one', 'Provide values for the following'],
113     ['Workflow with default input specifications', 'this workflow has inputs specified', 'Provide a value for the following'],
114   ].each do |template_name, preview_txt, process_txt|
115     test "run a process using template #{template_name} from dashboard" do
116       visit page_with_token('admin')
117       assert_text 'Recent pipelines and processes' # seeing dashboard now
118
119       within('.recent-processes-actions') do
120         assert page.has_link?('All processes')
121         find('a', text: 'Run a process').click
122       end
123
124       # in the chooser, verify preview and click Next button
125       within('.modal-dialog') do
126         find('.selectable', text: template_name).click
127         assert_text preview_txt
128         find('.btn', text: 'Next: choose inputs').click
129       end
130
131       # in the process page now
132       assert_text process_txt
133       assert_selector 'a', text: template_name
134
135       assert_equal "Set value for ex_string_def", find('div.form-group > div > p.form-control-static > a', text: "hello-testing-123")[:"data-title"]
136     end
137   end
138
139   test 'display container state changes in Container Request live log' do
140     use_fake_websocket_driver
141     c = api_fixture('containers')['queued']
142     cr = api_fixture('container_requests')['queued']
143     visit page_with_token('active', '/container_requests/'+cr['uuid'])
144     click_link('Log')
145
146     # The attrs of the "terminal window" text div in the log tab
147     # indicates which objects' events are worth displaying. Events
148     # that arrive too early (before that div exists) are not
149     # shown. For the user's sake, these early logs should also be
150     # retrieved and shown one way or another -- but in this particular
151     # test, we are only interested in logs that arrive by
152     # websocket. Therefore, to avoid races, we wait for the log tab to
153     # display before sending any events.
154     assert_text 'Recent logs'
155
156     [[{
157         event_type: 'dispatch',
158         properties: {
159           text: "dispatch logged a fake message\n",
160         },
161       }, "dispatch logged"],
162      [{
163         event_type: 'update',
164         properties: {
165           old_attributes: {state: 'Locked'},
166           new_attributes: {state: 'Queued'},
167         },
168       }, "Container #{c['uuid']} was returned to the queue"],
169      [{
170         event_type: 'update',
171         properties: {
172           old_attributes: {state: 'Queued'},
173           new_attributes: {state: 'Locked'},
174         },
175       }, "Container #{c['uuid']} was taken from the queue by a dispatch process"],
176      [{
177         event_type: 'crunch-run',
178         properties: {
179           text: "according to fake crunch-run,\nsome setup stuff happened on the compute node\n",
180         },
181       }, "setup stuff happened"],
182      [{
183         event_type: 'update',
184         properties: {
185           old_attributes: {state: 'Locked'},
186           new_attributes: {state: 'Running'},
187         },
188       }, "Container #{c['uuid']} started"],
189      [{
190         event_type: 'update',
191         properties: {
192           old_attributes: {state: 'Running'},
193           new_attributes: {state: 'Complete', exit_code: 1},
194         },
195       }, "Container #{c['uuid']} finished with exit code 1 (failure)"],
196      # It's unrealistic for state to change again once it's Complete,
197      # but the logging code doesn't care, so we do it to keep the test
198      # simple.
199      [{
200         event_type: 'update',
201         properties: {
202           old_attributes: {state: 'Running'},
203           new_attributes: {state: 'Cancelled'},
204         },
205       }, "Container #{c['uuid']} was cancelled"],
206     ].each do |send_event, expect_log_text|
207       assert_no_text(expect_log_text)
208       fake_websocket_event(send_event.merge(object_uuid: c['uuid']))
209       assert_text(expect_log_text)
210     end
211   end
212
213   [
214     ['jobs', 'active', 'running_job_with_components', 'component1', '/jobs/zzzzz-8i9sb-jyq01m7in1jlofj#Log'],
215     ['pipeline_instances', 'active', 'pipeline_in_running_state', 'foo', '/jobs/zzzzz-8i9sb-pshmckwoma9plh7#Log'],
216     ['pipeline_instances', nil, 'pipeline_in_publicly_accessible_project_but_other_objects_elsewhere', 'foo', 'Log unavailable'],
217   ].each do |type, token, fixture, child, log_link|
218     test "link_to_log for #{fixture} for #{token}" do
219       obj = api_fixture(type)[fixture]
220       if token
221         visit page_with_token token, "/#{type}/#{obj['uuid']}"
222       else
223         Rails.configuration.anonymous_user_token =
224           api_fixture("api_client_authorizations", "anonymous", "api_token")
225         visit "/#{type}/#{obj['uuid']}"
226       end
227
228       click_link(child)
229
230       if token
231         assert_selector "a[href=\"#{log_link}\"]"
232       else
233         assert_text log_link
234       end
235     end
236   end
237 end