[ARVADOS] updated: 1.3.0-632-g66cab5a1f
Git user
git at public.curoverse.com
Thu Apr 4 13:51:19 UTC 2019
Summary of changes:
.../arvados/v1/groups_controller_test.rb | 24 ++++++++++++++++++++++
.../functional/arvados/v1/jobs_controller_test.rb | 8 +++++++-
2 files changed, 31 insertions(+), 1 deletion(-)
via 66cab5a1f2b24c903a1a1c8b2316cc8b3f35ce1b (commit)
from a689825a37a32ded05866937b60742da415ce1f3 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 66cab5a1f2b24c903a1a1c8b2316cc8b3f35ce1b
Author: Lucas Di Pentima <ldipentima at veritasgenetics.com>
Date: Thu Apr 4 10:50:44 2019 -0300
14873: Modifies failing tests for debugging purposes.
Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <ldipentima at veritasgenetics.com>
diff --git a/services/api/test/functional/arvados/v1/groups_controller_test.rb b/services/api/test/functional/arvados/v1/groups_controller_test.rb
index 052089a98..bc1f5c184 100644
--- a/services/api/test/functional/arvados/v1/groups_controller_test.rb
+++ b/services/api/test/functional/arvados/v1/groups_controller_test.rb
@@ -406,6 +406,23 @@ class Arvados::V1::GroupsControllerTest < ActionController::TestCase
end
test "unsharing a project results in hiding it from previously shared user" do
+ # Make the same call as in line 448.
+ @controller = Arvados::V1::LinksController.new
+ authorize_with :system_user
+ post :create, params: {
+ link: {
+ link_class: "permission",
+ name: "can_read",
+ head_uuid: groups(:starred_and_shared_active_user_project).uuid,
+ tail_uuid: users(:project_viewer).uuid,
+ }
+ }
+ assert_response :success
+ assert_equal 'permission', json_response['link_class']
+ l = Link.find_by_uuid(json_response['uuid'])
+ l.destroy
+ @test_counter = 0
+
# remove sharing link for project
@controller = Arvados::V1::LinksController.new
authorize_with :admin
@@ -436,6 +453,13 @@ class Arvados::V1::GroupsControllerTest < ActionController::TestCase
tail_uuid: users(:project_viewer).uuid,
}
}
+ assert_response :success
+ # This fails if the call at the beginning of the test isn't
+ # made, because for some reason the links controller gets
+ # an empty params list.
+ assert_equal 'permission', json_response['link_class']
+ # NOTE that if I manually create the link, the test pass:
+ # Link.create(link_class: 'permission', name: 'can_read', head_uuid: groups(:starred_and_shared_active_user_project).uuid, tail_uuid: users(:project_viewer).uuid)
# verify that project_viewer user can now see shared project again
@test_counter = 0
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 507220816..be325aabe 100644
--- a/services/api/test/functional/arvados/v1/jobs_controller_test.rb
+++ b/services/api/test/functional/arvados/v1/jobs_controller_test.rb
@@ -514,13 +514,19 @@ class Arvados::V1::JobsControllerTest < ActionController::TestCase
}
}
assert_response :success
+ # These assertions shouldn't pass. It seems that the @request var is cached
+ # from the previous call on line 492.
+ assert_not_equal 0, json_response['components'].size
+ assert_not_equal [], SafeJSON.load(@request.params['job'])['components'].keys
@test_counter = 0 # Reset executed action counter
@controller = Arvados::V1::JobsController.new
get :show, params: {id: jobs(:running_job_with_components).uuid}
assert_response :success
assert_not_nil json_response["components"]
- assert_equal [], json_response["components"].keys
+ # The commented assertion below fails because of what's happening on the
+ # previous request
+ # assert_equal [], json_response["components"].keys
end
test 'jobs.create disabled in config' do
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list