Merge branch 'master' into 3618-column-ordering
[arvados.git] / services / api / test / functional / arvados / v1 / jobs_controller_test.rb
index 7541bc7e7e610d746764645111770a0575513d6d..07e7f840a1bafedcd456d2d674e1ad243b59ec0a 100644 (file)
@@ -37,38 +37,38 @@ class Arvados::V1::JobsControllerTest < ActionController::TestCase
     }
     assert_response :success
     assert_not_nil assigns(:object)
-    new_job = JSON.parse(@response.body)
+    new_job = assigns(:object)
     assert_equal 'd41d8cd98f00b204e9800998ecf8427e+0', new_job['log']
     assert_equal 'd41d8cd98f00b204e9800998ecf8427e+0', new_job['output']
     version = new_job['script_version']
 
     # Make sure version doesn't get mangled by normalize
     assert_not_nil version.match(/^[0-9a-f]{40}$/)
-    assert_equal 'master', JSON.parse(@response.body)['supplied_script_version']
+    assert_equal 'master', json_response['supplied_script_version']
   end
 
   test "normalize output and log uuids when updating job" do
     authorize_with :active
 
-    job = jobs(:job_with_unnormalized_output_and_log)
+    foobar_job = jobs(:foobar)
 
+    new_output = 'd41d8cd98f00b204e9800998ecf8427e+0+K@xyzzy'
+    new_log = 'd41d8cd98f00b204e9800998ecf8427e+0+K@xyzzy'
     put :update, {
-      id: job['uuid'],
+      id: foobar_job['uuid'],
       job: {
-        log: job['log']
+        output: new_output,
+        log: new_log
       }
     }
 
-    updated_job = JSON.parse(@response.body)
-    assert_not_equal job['log'], updated_job['log']
-    assert_equal job[:log][0,job['log'].rindex('+')], updated_job['log']
-    assert_not_equal job['output'], updated_job['output']
-    assert_equal job[:output][0,job['output'].rindex('+')], updated_job['output']
-
-    # Make sure version doesn't get mangled by normalize
-    updated_version = updated_job['script_version']
-    assert_not_nil updated_version.match(/^[0-9a-f]{40}$/)
-    assert_equal job['script_version'], updated_version
+    updated_job = json_response
+    assert_not_equal foobar_job['log'], updated_job['log']
+    assert_not_equal new_log, updated_job['log']  # normalized during update
+    assert_equal new_log[0,new_log.rindex('+')], updated_job['log']
+    assert_not_equal foobar_job['output'], updated_job['output']
+    assert_not_equal new_output, updated_job['output']  # normalized during update
+    assert_equal new_output[0,new_output.rindex('+')], updated_job['output']
   end
 
   test "cancel a running job" do
@@ -101,7 +101,38 @@ class Arvados::V1::JobsControllerTest < ActionController::TestCase
                  'trigger file should be created when job is cancelled')
   end
 
-  test "cancelling a cancelled jobs stays cancelled" do
+  [
+   [:put, :update, {job:{cancelled_at: Time.now}}, :success],
+   [:put, :update, {job:{cancelled_at: nil}}, :unprocessable_entity],
+   [:put, :update, {job:{state: 'Cancelled'}}, :success],
+   [:put, :update, {job:{state: 'Queued'}}, :unprocessable_entity],
+   [:put, :update, {job:{state: 'Running'}}, :unprocessable_entity],
+   [:put, :update, {job:{state: 'Failed'}}, :unprocessable_entity],
+   [:put, :update, {job:{state: 'Complete'}}, :unprocessable_entity],
+   [:post, :cancel, {}, :success],
+  ].each do |http_method, action, params, expected_response|
+    test "cancelled job stays cancelled after #{[http_method, action, params].inspect}" do
+      # We need to verify that "cancel" creates a trigger file, so first
+      # let's make sure there is no stale trigger file.
+      begin
+        File.unlink(Rails.configuration.crunch_refresh_trigger)
+      rescue Errno::ENOENT
+      end
+
+      authorize_with :active
+      self.send http_method, action, { id: jobs(:cancelled).uuid }.merge(params)
+      assert_response expected_response
+      if expected_response == :success
+        job = json_response
+        assert_not_nil job['cancelled_at'], 'job cancelled again using #{attribute}=#{value} did not have cancelled_at value'
+        assert_equal job['state'], 'Cancelled', 'cancelled again job state changed when updated using using #{attribute}=#{value}'
+      end
+      # Verify database record still says Cancelled
+      assert_equal 'Cancelled', Job.find(jobs(:cancelled).id).state, 'job was un-cancelled'
+    end
+  end
+
+  test "cancelled job updated to any other state change results in error" do
     # We need to verify that "cancel" creates a trigger file, so first
     # let's make sure there is no stale trigger file.
     begin
@@ -116,20 +147,21 @@ class Arvados::V1::JobsControllerTest < ActionController::TestCase
         cancelled_at: nil
       }
     }
-    job = JSON.parse(@response.body)
-    assert_not_nil job['cancelled_at'], 'un-cancelled job stays cancelled'
+    assert_response 422
   end
 
-  ['admin', 'active'].each do |user|
-    test "#{user} update a job without failing script_version check" do
+  ['abc.py', 'hash.py'].each do |script|
+    test "update job script attribute to #{script} without failing script_version check" do
       authorize_with :admin
       put :update, {
         id: jobs(:uses_nonexistent_script_version).uuid,
         job: {
-          owner_uuid: users(user).uuid
+          script: script
         }
       }
       assert_response :success
+      resp = assigns(:object)
+      assert_equal jobs(:uses_nonexistent_script_version).script_version, resp['script_version']
     end
   end
 
@@ -346,4 +378,18 @@ class Arvados::V1::JobsControllerTest < ActionController::TestCase
     assert_response :success
     assert_equal([nodes(:busy).uuid], json_response["node_uuids"])
   end
+
+  test "job lock success" do
+    authorize_with :active
+    post :lock, {id: jobs(:queued).uuid}
+    assert_response :success
+    job = Job.where(uuid: jobs(:queued).uuid).first
+    assert_equal "Running", job.state
+  end
+
+  test "job lock conflict" do
+    authorize_with :active
+    post :lock, {id: jobs(:running).uuid}
+    assert_response 403 # forbidden
+  end
 end