2 require 'helpers/git_test_helper'
4 class Arvados::V1::JobsControllerTest < ActionController::TestCase
12 script_version: "master",
16 assert_response :success
17 assert_not_nil assigns(:object)
18 new_job = JSON.parse(@response.body)
19 assert_not_nil new_job['uuid']
20 assert_not_nil new_job['script_version'].match(/^[0-9a-f]{40}$/)
21 assert_equal 0, new_job['priority']
24 test "normalize output and log uuids when creating job" do
25 authorize_with :active
28 script_version: "master",
29 script_parameters: {},
32 finished_at: Time.now,
35 output: 'd41d8cd98f00b204e9800998ecf8427e+0+K@xyzzy',
36 log: 'd41d8cd98f00b204e9800998ecf8427e+0+K@xyzzy'
38 assert_response :success
39 assert_not_nil assigns(:object)
40 new_job = assigns(:object)
41 assert_equal 'd41d8cd98f00b204e9800998ecf8427e+0', new_job['log']
42 assert_equal 'd41d8cd98f00b204e9800998ecf8427e+0', new_job['output']
43 version = new_job['script_version']
45 # Make sure version doesn't get mangled by normalize
46 assert_not_nil version.match(/^[0-9a-f]{40}$/)
47 assert_equal 'master', json_response['supplied_script_version']
50 test "normalize output and log uuids when updating job" do
51 authorize_with :active
53 foobar_job = jobs(:foobar)
55 new_output = 'd41d8cd98f00b204e9800998ecf8427e+0+K@xyzzy'
56 new_log = 'd41d8cd98f00b204e9800998ecf8427e+0+K@xyzzy'
58 id: foobar_job['uuid'],
65 updated_job = json_response
66 assert_not_equal foobar_job['log'], updated_job['log']
67 assert_not_equal new_log, updated_job['log'] # normalized during update
68 assert_equal new_log[0,new_log.rindex('+')], updated_job['log']
69 assert_not_equal foobar_job['output'], updated_job['output']
70 assert_not_equal new_output, updated_job['output'] # normalized during update
71 assert_equal new_output[0,new_output.rindex('+')], updated_job['output']
74 test "cancel a running job" do
75 # We need to verify that "cancel" creates a trigger file, so first
76 # let's make sure there is no stale trigger file.
78 File.unlink(Rails.configuration.crunch_refresh_trigger)
82 authorize_with :active
84 id: jobs(:running).uuid,
86 cancelled_at: 4.day.ago
89 assert_response :success
90 assert_not_nil assigns(:object)
91 job = JSON.parse(@response.body)
92 assert_not_nil job['uuid']
93 assert_not_nil job['cancelled_at']
94 assert_not_nil job['cancelled_by_user_uuid']
95 assert_not_nil job['cancelled_by_client_uuid']
96 assert_equal(true, Time.parse(job['cancelled_at']) > 1.minute.ago,
97 'server should correct bogus cancelled_at ' +
100 File.exists?(Rails.configuration.crunch_refresh_trigger),
101 'trigger file should be created when job is cancelled')
105 [:put, :update, {job:{cancelled_at: Time.now}}, :success],
106 [:put, :update, {job:{cancelled_at: nil}}, :unprocessable_entity],
107 [:put, :update, {job:{state: 'Cancelled'}}, :success],
108 [:put, :update, {job:{state: 'Queued'}}, :unprocessable_entity],
109 [:put, :update, {job:{state: 'Running'}}, :unprocessable_entity],
110 [:put, :update, {job:{state: 'Failed'}}, :unprocessable_entity],
111 [:put, :update, {job:{state: 'Complete'}}, :unprocessable_entity],
112 [:post, :cancel, {}, :success],
113 ].each do |http_method, action, params, expected_response|
114 test "cancelled job stays cancelled after #{[http_method, action, params].inspect}" do
115 # We need to verify that "cancel" creates a trigger file, so first
116 # let's make sure there is no stale trigger file.
118 File.unlink(Rails.configuration.crunch_refresh_trigger)
122 authorize_with :active
123 self.send http_method, action, { id: jobs(:cancelled).uuid }.merge(params)
124 assert_response expected_response
125 if expected_response == :success
127 assert_not_nil job['cancelled_at'], 'job cancelled again using #{attribute}=#{value} did not have cancelled_at value'
128 assert_equal job['state'], 'Cancelled', 'cancelled again job state changed when updated using using #{attribute}=#{value}'
130 # Verify database record still says Cancelled
131 assert_equal 'Cancelled', Job.find(jobs(:cancelled).id).state, 'job was un-cancelled'
135 test "cancelled job updated to any other state change results in error" do
136 # We need to verify that "cancel" creates a trigger file, so first
137 # let's make sure there is no stale trigger file.
139 File.unlink(Rails.configuration.crunch_refresh_trigger)
143 authorize_with :active
145 id: jobs(:running_cancelled).uuid,
153 ['abc.py', 'hash.py'].each do |script|
154 test "update job script attribute to #{script} without failing script_version check" do
155 authorize_with :admin
157 id: jobs(:uses_nonexistent_script_version).uuid,
162 assert_response :success
163 resp = assigns(:object)
164 assert_equal jobs(:uses_nonexistent_script_version).script_version, resp['script_version']
168 test "search jobs by uuid with >= query" do
169 authorize_with :active
171 filters: [['uuid', '>=', 'zzzzz-8i9sb-pshmckwoma9plh7']]
173 assert_response :success
174 found = assigns(:objects).collect(&:uuid)
175 assert_equal true, !!found.index('zzzzz-8i9sb-pshmckwoma9plh7')
176 assert_equal false, !!found.index('zzzzz-8i9sb-4cf0nhn6xte809j')
179 test "search jobs by uuid with <= query" do
180 authorize_with :active
182 filters: [['uuid', '<=', 'zzzzz-8i9sb-pshmckwoma9plh7']]
184 assert_response :success
185 found = assigns(:objects).collect(&:uuid)
186 assert_equal true, !!found.index('zzzzz-8i9sb-pshmckwoma9plh7')
187 assert_equal true, !!found.index('zzzzz-8i9sb-4cf0nhn6xte809j')
190 test "search jobs by uuid with >= and <= query" do
191 authorize_with :active
193 filters: [['uuid', '>=', 'zzzzz-8i9sb-pshmckwoma9plh7'],
194 ['uuid', '<=', 'zzzzz-8i9sb-pshmckwoma9plh7']]
196 assert_response :success
197 found = assigns(:objects).collect(&:uuid)
198 assert_equal found, ['zzzzz-8i9sb-pshmckwoma9plh7']
201 test "search jobs by uuid with < query" do
202 authorize_with :active
204 filters: [['uuid', '<', 'zzzzz-8i9sb-pshmckwoma9plh7']]
206 assert_response :success
207 found = assigns(:objects).collect(&:uuid)
208 assert_equal false, !!found.index('zzzzz-8i9sb-pshmckwoma9plh7')
209 assert_equal true, !!found.index('zzzzz-8i9sb-4cf0nhn6xte809j')
212 test "search jobs by uuid with like query" do
213 authorize_with :active
215 filters: [['uuid', 'like', '%hmckwoma9pl%']]
217 assert_response :success
218 found = assigns(:objects).collect(&:uuid)
219 assert_equal found, ['zzzzz-8i9sb-pshmckwoma9plh7']
222 test "search jobs by uuid with 'in' query" do
223 authorize_with :active
225 filters: [['uuid', 'in', ['zzzzz-8i9sb-4cf0nhn6xte809j',
226 'zzzzz-8i9sb-pshmckwoma9plh7']]]
228 assert_response :success
229 found = assigns(:objects).collect(&:uuid)
230 assert_equal found.sort, ['zzzzz-8i9sb-4cf0nhn6xte809j',
231 'zzzzz-8i9sb-pshmckwoma9plh7']
234 test "search jobs by uuid with 'not in' query" do
235 exclude_uuids = [jobs(:running).uuid,
236 jobs(:running_cancelled).uuid]
237 authorize_with :active
239 filters: [['uuid', 'not in', exclude_uuids]]
241 assert_response :success
242 found = assigns(:objects).collect(&:uuid)
243 assert_not_empty found, "'not in' query returned nothing"
244 assert_empty(found & exclude_uuids,
245 "'not in' query returned uuids I asked not to get")
248 ['=', '!='].each do |operator|
249 [['uuid', 'zzzzz-8i9sb-pshmckwoma9plh7'],
250 ['output', nil]].each do |attr, operand|
251 test "search jobs with #{attr} #{operator} #{operand.inspect} query" do
252 authorize_with :active
254 filters: [[attr, operator, operand]]
256 assert_response :success
257 values = assigns(:objects).collect { |x| x.send(attr) }
258 assert_not_empty values, "query should return non-empty result"
260 assert_empty values - [operand], "query results do not satisfy query"
262 assert_empty values & [operand], "query results do not satisfy query"
268 test "search jobs by started_at with < query" do
269 authorize_with :active
271 filters: [['started_at', '<', Time.now.to_s]]
273 assert_response :success
274 found = assigns(:objects).collect(&:uuid)
275 assert_equal true, !!found.index('zzzzz-8i9sb-pshmckwoma9plh7')
278 test "search jobs by started_at with > query" do
279 authorize_with :active
281 filters: [['started_at', '>', Time.now.to_s]]
283 assert_response :success
284 assert_equal 0, assigns(:objects).count
287 test "search jobs by started_at with >= query on metric date" do
288 authorize_with :active
290 filters: [['started_at', '>=', '2014-01-01']]
292 assert_response :success
293 found = assigns(:objects).collect(&:uuid)
294 assert_equal true, !!found.index('zzzzz-8i9sb-pshmckwoma9plh7')
297 test "search jobs by started_at with >= query on metric date and time" do
298 authorize_with :active
300 filters: [['started_at', '>=', '2014-01-01 01:23:45']]
302 assert_response :success
303 found = assigns(:objects).collect(&:uuid)
304 assert_equal true, !!found.index('zzzzz-8i9sb-pshmckwoma9plh7')
307 test "search jobs with 'any' operator" do
308 authorize_with :active
310 where: { any: ['contains', 'pshmckw'] }
312 assert_response :success
313 found = assigns(:objects).collect(&:uuid)
314 assert_equal 0, found.index('zzzzz-8i9sb-pshmckwoma9plh7')
315 assert_equal 1, found.count
318 test "search jobs by nonexistent column with < query" do
319 authorize_with :active
321 filters: [['is_borked', '<', 'fizzbuzz']]
326 test "finish a job" do
327 authorize_with :active
329 id: jobs(:nearly_finished_job).uuid,
331 output: '551392cc37a317abf865b95f66f4ef94+101',
332 log: '9215de2a951a721f5f156bc08cf63ad7+93',
333 tasks_summary: {done: 1, running: 0, todo: 0, failed: 0},
336 finished_at: Time.now.to_s
339 assert_response :success
342 [:spectator, :admin].each_with_index do |which_token, i|
343 test "get job queue as #{which_token} user" do
344 authorize_with which_token
346 assert_response :success
347 assert_equal i, assigns(:objects).count
351 test "get job queue as with a = filter" do
352 authorize_with :admin
353 get :queue, { filters: [['script','=','foo']] }
354 assert_response :success
355 assert_equal ['foo'], assigns(:objects).collect(&:script).uniq
356 assert_equal 0, assigns(:objects)[0].queue_position
359 test "get job queue as with a != filter" do
360 authorize_with :admin
361 get :queue, { filters: [['script','!=','foo']] }
362 assert_response :success
363 assert_equal 0, assigns(:objects).count
366 [:spectator, :admin].each do |which_token|
367 test "get queue_size as #{which_token} user" do
368 authorize_with which_token
370 assert_response :success
371 assert_equal 1, JSON.parse(@response.body)["queue_size"]
375 test "job includes assigned nodes" do
376 authorize_with :active
377 get :show, {id: jobs(:nearly_finished_job).uuid}
378 assert_response :success
379 assert_equal([nodes(:busy).uuid], json_response["node_uuids"])
382 test "job lock success" do
383 authorize_with :active
384 post :lock, {id: jobs(:queued).uuid}
385 assert_response :success
386 job = Job.where(uuid: jobs(:queued).uuid).first
387 assert_equal "Running", job.state
390 test "job lock conflict" do
391 authorize_with :active
392 post :lock, {id: jobs(:running).uuid}
393 assert_response 403 # forbidden