X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/fcd8f9c22e87e7890438d0c53a873b89cf877c4e..0510460e9c5ad8f3d8cf20aa9428115e43284659:/services/api/test/functional/arvados/v1/jobs_controller_test.rb diff --git a/services/api/test/functional/arvados/v1/jobs_controller_test.rb b/services/api/test/functional/arvados/v1/jobs_controller_test.rb index 4114b72d01..9904c833c8 100644 --- a/services/api/test/functional/arvados/v1/jobs_controller_test.rb +++ b/services/api/test/functional/arvados/v1/jobs_controller_test.rb @@ -1,18 +1,57 @@ require 'test_helper' +load 'test/functional/arvados/v1/git_setup.rb' class Arvados::V1::JobsControllerTest < ActionController::TestCase + include GitSetup + test "submit a job" do authorize_with :active post :create, job: { script: "hash", script_version: "master", + repository: "foo", script_parameters: {} } assert_response :success assert_not_nil assigns(:object) new_job = JSON.parse(@response.body) assert_not_nil new_job['uuid'] + assert_not_nil new_job['script_version'].match(/^[0-9a-f]{40}$/) + # Default: not persistent + assert_equal false, new_job['output_is_persistent'] + end + + test "normalize output and log uuids when creating job" do + authorize_with :active + post :create, job: { + script: "hash", + script_version: "master", + script_parameters: {}, + repository: "foo", + started_at: Time.now, + finished_at: Time.now, + running: false, + success: true, + output: 'd41d8cd98f00b204e9800998ecf8427e+0+K@xyzzy', + log: 'd41d8cd98f00b204e9800998ecf8427e+0+K@xyzzy' + } + assert_response :success + assert_not_nil assigns(:object) + new_job = JSON.parse(@response.body) + 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}$/) + put :update, { + id: new_job['uuid'], + job: { + log: new_job['log'] + } + } + assert_equal version, JSON.parse(@response.body)['script_version'] end test "cancel a running job" do @@ -37,8 +76,9 @@ class Arvados::V1::JobsControllerTest < ActionController::TestCase assert_not_nil job['cancelled_at'] assert_not_nil job['cancelled_by_user_uuid'] assert_not_nil job['cancelled_by_client_uuid'] - assert_equal(true, job['cancelled_at'] > 1.minute.ago, - 'bogus cancelled_at corrected by server') + assert_equal(true, Time.parse(job['cancelled_at']) > 1.minute.ago, + 'server should correct bogus cancelled_at ' + + job['cancelled_at']) assert_equal(true, File.exists?(Rails.configuration.crunch_refresh_trigger), 'trigger file should be created when job is cancelled') @@ -53,4 +93,147 @@ class Arvados::V1::JobsControllerTest < ActionController::TestCase assert_not_nil job['cancelled_at'], 'un-cancelled job stays cancelled' end + test "update a job without failing script_version check" do + authorize_with :admin + put :update, { + id: jobs(:uses_nonexistent_script_version).uuid, + job: { + owner_uuid: users(:admin).uuid + } + } + assert_response :success + put :update, { + id: jobs(:uses_nonexistent_script_version).uuid, + job: { + owner_uuid: users(:active).uuid + } + } + assert_response :success + end + + test "search jobs by uuid with >= query" do + authorize_with :active + get :index, { + filters: [['uuid', '>=', 'zzzzz-8i9sb-pshmckwoma9plh7']] + } + assert_response :success + found = assigns(:objects).collect(&:uuid) + assert_equal true, !!found.index('zzzzz-8i9sb-pshmckwoma9plh7') + assert_equal false, !!found.index('zzzzz-8i9sb-4cf0nhn6xte809j') + end + + test "search jobs by uuid with <= query" do + authorize_with :active + get :index, { + filters: [['uuid', '<=', 'zzzzz-8i9sb-pshmckwoma9plh7']] + } + assert_response :success + found = assigns(:objects).collect(&:uuid) + assert_equal true, !!found.index('zzzzz-8i9sb-pshmckwoma9plh7') + assert_equal true, !!found.index('zzzzz-8i9sb-4cf0nhn6xte809j') + end + + test "search jobs by uuid with >= and <= query" do + authorize_with :active + get :index, { + filters: [['uuid', '>=', 'zzzzz-8i9sb-pshmckwoma9plh7'], + ['uuid', '<=', 'zzzzz-8i9sb-pshmckwoma9plh7']] + } + assert_response :success + found = assigns(:objects).collect(&:uuid) + assert_equal found, ['zzzzz-8i9sb-pshmckwoma9plh7'] + end + + test "search jobs by uuid with < query" do + authorize_with :active + get :index, { + filters: [['uuid', '<', 'zzzzz-8i9sb-pshmckwoma9plh7']] + } + assert_response :success + found = assigns(:objects).collect(&:uuid) + assert_equal false, !!found.index('zzzzz-8i9sb-pshmckwoma9plh7') + assert_equal true, !!found.index('zzzzz-8i9sb-4cf0nhn6xte809j') + end + + test "search jobs by uuid with like query" do + authorize_with :active + get :index, { + filters: [['uuid', 'like', '%hmckwoma9pl%']] + } + assert_response :success + found = assigns(:objects).collect(&:uuid) + assert_equal found, ['zzzzz-8i9sb-pshmckwoma9plh7'] + end + + test "search jobs by uuid with 'in' query" do + authorize_with :active + get :index, { + filters: [['uuid', 'in', ['zzzzz-8i9sb-4cf0nhn6xte809j', + 'zzzzz-8i9sb-pshmckwoma9plh7']]] + } + assert_response :success + found = assigns(:objects).collect(&:uuid) + assert_equal found.sort, ['zzzzz-8i9sb-4cf0nhn6xte809j', + 'zzzzz-8i9sb-pshmckwoma9plh7'] + end + + test "search jobs by started_at with < query" do + authorize_with :active + get :index, { + filters: [['started_at', '<', Time.now.to_s]] + } + assert_response :success + found = assigns(:objects).collect(&:uuid) + assert_equal true, !!found.index('zzzzz-8i9sb-pshmckwoma9plh7') + end + + test "search jobs by started_at with > query" do + authorize_with :active + get :index, { + filters: [['started_at', '>', Time.now.to_s]] + } + assert_response :success + assert_equal 0, assigns(:objects).count + end + + test "search jobs by started_at with >= query on metric date" do + authorize_with :active + get :index, { + filters: [['started_at', '>=', '2014-01-01']] + } + assert_response :success + found = assigns(:objects).collect(&:uuid) + assert_equal true, !!found.index('zzzzz-8i9sb-pshmckwoma9plh7') + end + + test "search jobs by started_at with >= query on metric date and time" do + authorize_with :active + get :index, { + filters: [['started_at', '>=', '2014-01-01 01:23:45']] + } + assert_response :success + found = assigns(:objects).collect(&:uuid) + assert_equal true, !!found.index('zzzzz-8i9sb-pshmckwoma9plh7') + end + + test "search jobs with 'any' operator" do + authorize_with :active + get :index, { + where: { any: ['contains', 'pshmckw'] } + } + assert_response :success + found = assigns(:objects).collect(&:uuid) + assert_equal 0, found.index('zzzzz-8i9sb-pshmckwoma9plh7') + assert_equal 1, found.count + end + + test "search jobs by nonexistent column with < query" do + authorize_with :active + get :index, { + filters: [['is_borked', '<', 'fizzbuzz']] + } + assert_response 422 + end + + end