3 class Arvados::V1::GroupsControllerTest < ActionController::TestCase
5 test "attempt to delete group without read or write access" do
7 post :destroy, id: groups(:empty_lonely_group).uuid
11 test "attempt to delete group without write access" do
12 authorize_with :active
13 post :destroy, id: groups(:all_users).uuid
17 test "get list of projects" do
18 authorize_with :active
19 get :index, filters: [['group_class', '=', 'project']], format: :json
20 assert_response :success
22 json_response['items'].each do |group|
23 assert_equal 'project', group['group_class']
24 group_uuids << group['uuid']
26 assert_includes group_uuids, groups(:aproject).uuid
27 assert_includes group_uuids, groups(:asubproject).uuid
28 assert_not_includes group_uuids, groups(:system_group).uuid
29 assert_not_includes group_uuids, groups(:private).uuid
32 test "get list of groups that are not projects" do
33 authorize_with :active
34 get :index, filters: [['group_class', '!=', 'project']], format: :json
35 assert_response :success
37 json_response['items'].each do |group|
38 assert_not_equal 'project', group['group_class']
39 group_uuids << group['uuid']
41 assert_not_includes group_uuids, groups(:aproject).uuid
42 assert_not_includes group_uuids, groups(:asubproject).uuid
43 assert_includes group_uuids, groups(:private).uuid
46 test "get list of groups with bogus group_class" do
47 authorize_with :active
49 filters: [['group_class', '=', 'nogrouphasthislittleclass']],
52 assert_response :success
53 assert_equal [], json_response['items']
54 assert_equal 0, json_response['items_available']
57 def check_project_contents_response
58 assert_response :success
59 assert_operator 2, :<=, json_response['items_available']
60 assert_operator 2, :<=, json_response['items'].count
61 kinds = json_response['items'].collect { |i| i['kind'] }.uniq
62 expect_kinds = %w'arvados#group arvados#specimen arvados#pipelineTemplate arvados#job'
63 assert_equal expect_kinds, (expect_kinds & kinds)
65 json_response['items'].each do |i|
66 if i['kind'] == 'arvados#group'
67 assert(i['group_class'] == 'project',
68 "group#contents returned a non-project group")
73 test 'get group-owned objects' do
74 authorize_with :active
76 id: groups(:aproject).uuid,
80 check_project_contents_response
83 test "user with project read permission can see project objects" do
84 authorize_with :project_viewer
86 id: groups(:aproject).uuid,
90 check_project_contents_response
93 test "list objects across projects" do
94 authorize_with :project_viewer
97 filters: [['uuid', 'is_a', 'arvados#specimen']]
99 assert_response :success
100 found_uuids = json_response['items'].collect { |i| i['uuid'] }
101 [[:in_aproject, true],
102 [:in_asubproject, true],
103 [:owned_by_private_group, false]].each do |specimen_fixture, should_find|
105 assert_includes found_uuids, specimens(specimen_fixture).uuid, "did not find specimen fixture '#{specimen_fixture}'"
107 refute_includes found_uuids, specimens(specimen_fixture).uuid, "found specimen fixture '#{specimen_fixture}'"
112 test "list objects in home project" do
113 authorize_with :active
116 id: users(:active).uuid
118 assert_response :success
119 found_uuids = json_response['items'].collect { |i| i['uuid'] }
120 assert_includes found_uuids, specimens(:owned_by_active_user).uuid, "specimen did not appear in home project"
121 refute_includes found_uuids, specimens(:in_asubproject).uuid, "specimen appeared unexpectedly in home project"
124 test "user with project read permission can see project collections" do
125 authorize_with :project_viewer
127 id: groups(:asubproject).uuid,
130 ids = json_response['items'].map { |item| item["uuid"] }
131 assert_includes ids, collections(:baz_file_in_asubproject).uuid
135 ['desc', :>=]].each do |order, operator|
136 test "user with project read permission can sort project collections #{order}" do
137 authorize_with :project_viewer
139 id: groups(:asubproject).uuid,
141 filters: [['uuid', 'is_a', "arvados#collection"]],
142 order: "collections.name #{order}"
144 sorted_names = json_response['items'].collect { |item| item["name"] }
145 # Here we avoid assuming too much about the database
146 # collation. Both "alice"<"Bob" and "alice">"Bob" can be
147 # correct. Hopefully it _is_ safe to assume that if "a" comes
148 # before "b" in the ascii alphabet, "aX">"bY" is never true for
149 # any strings X and Y.
150 reliably_sortable_names = sorted_names.select do |name|
151 name[0] >= 'a' and name[0] <= 'z'
155 # Preserve order of sorted_names. But do not use &=. If
156 # sorted_names has out-of-order duplicates, we want to preserve
157 # them here, so we can detect them and fail the test below.
158 sorted_names.select! do |name|
159 reliably_sortable_names.include? name
161 actually_checked_anything = false
163 sorted_names.each do |entry|
165 assert_operator(previous, operator, entry,
166 "Entries sorted incorrectly.")
167 actually_checked_anything = true
171 assert actually_checked_anything, "Didn't even find two names to compare."
175 test 'list objects across multiple projects' do
176 authorize_with :project_viewer
179 include_linked: false,
180 filters: [['uuid', 'is_a', 'arvados#specimen']]
182 assert_response :success
183 found_uuids = json_response['items'].collect { |i| i['uuid'] }
184 [[:in_aproject, true],
185 [:in_asubproject, true],
186 [:owned_by_private_group, false]].each do |specimen_fixture, should_find|
188 assert_includes found_uuids, specimens(specimen_fixture).uuid, "did not find specimen fixture '#{specimen_fixture}'"
190 refute_includes found_uuids, specimens(specimen_fixture).uuid, "found specimen fixture '#{specimen_fixture}'"
195 # Even though the project_viewer tests go through other controllers,
196 # I'm putting them here so they're easy to find alongside the other
198 def check_new_project_link_fails(link_attrs)
199 @controller = Arvados::V1::LinksController.new
200 post :create, link: {
201 link_class: "permission",
203 head_uuid: groups(:aproject).uuid,
205 assert_includes(403..422, response.status)
208 test "user with project read permission can't add users to it" do
209 authorize_with :project_viewer
210 check_new_project_link_fails(tail_uuid: users(:spectator).uuid)
213 test "user with project read permission can't add items to it" do
214 authorize_with :project_viewer
215 check_new_project_link_fails(tail_uuid: collections(:baz_file).uuid)
218 test "user with project read permission can't rename items in it" do
219 authorize_with :project_viewer
220 @controller = Arvados::V1::LinksController.new
222 id: jobs(:running).uuid,
223 name: "Denied test name",
225 assert_includes(403..404, response.status)
228 test "user with project read permission can't remove items from it" do
229 @controller = Arvados::V1::PipelineTemplatesController.new
230 authorize_with :project_viewer
232 id: pipeline_templates(:two_part).uuid,
234 owner_uuid: users(:project_viewer).uuid,
240 test "user with project read permission can't delete it" do
241 authorize_with :project_viewer
242 post :destroy, {id: groups(:aproject).uuid}
246 test 'get group-owned objects with limit' do
247 authorize_with :active
249 id: groups(:aproject).uuid,
253 assert_response :success
254 assert_operator 1, :<, json_response['items_available']
255 assert_equal 1, json_response['items'].count
258 test 'get group-owned objects with limit and offset' do
259 authorize_with :active
261 id: groups(:aproject).uuid,
266 assert_response :success
267 assert_operator 1, :<, json_response['items_available']
268 assert_equal 0, json_response['items'].count
271 test 'get group-owned objects with additional filter matching nothing' do
272 authorize_with :active
274 id: groups(:aproject).uuid,
275 filters: [['uuid', 'in', ['foo_not_a_uuid','bar_not_a_uuid']]],
278 assert_response :success
279 assert_equal [], json_response['items']
280 assert_equal 0, json_response['items_available']
283 %w(offset limit).each do |arg|
284 ['foo', '', '1234five', '0x10', '-8'].each do |val|
285 test "Raise error on bogus #{arg} parameter #{val.inspect}" do
286 authorize_with :active
288 :id => groups(:aproject).uuid,
297 test 'get writable_by list for owned group' do
298 authorize_with :active
300 id: groups(:aproject).uuid,
303 assert_response :success
304 assert_not_nil(json_response['writable_by'],
305 "Should receive uuid list in 'writable_by' field")
306 assert_includes(json_response['writable_by'], users(:active).uuid,
307 "owner should be included in writable_by list")
310 test 'no writable_by list for group with read-only access' do
311 authorize_with :rominiadmin
313 id: groups(:testusergroup_admins).uuid,
316 assert_response :success
317 assert_equal([json_response['owner_uuid']],
318 json_response['writable_by'],
319 "Should only see owner_uuid in 'writable_by' field")
322 test 'get writable_by list by admin user' do
323 authorize_with :admin
325 id: groups(:testusergroup_admins).uuid,
328 assert_response :success
329 assert_not_nil(json_response['writable_by'],
330 "Should receive uuid list in 'writable_by' field")
331 assert_includes(json_response['writable_by'],
333 "Current user should be included in 'writable_by' field")
336 test 'creating subproject with duplicate name fails' do
337 authorize_with :active
341 owner_uuid: users(:active).uuid,
342 group_class: 'project',
346 response_errors = json_response['errors']
347 assert_not_nil response_errors, 'Expected error in response'
348 assert(response_errors.first.include?('duplicate key'),
349 "Expected 'duplicate key' error in #{response_errors.first}")
352 test 'creating duplicate named subproject succeeds with ensure_unique_name' do
353 authorize_with :active
357 owner_uuid: users(:active).uuid,
358 group_class: 'project',
360 ensure_unique_name: true
362 assert_response :success
363 new_project = json_response
364 assert_not_equal(new_project['uuid'],
365 groups(:aproject).uuid,
366 "create returned same uuid as existing project")
367 assert_equal(new_project['name'],
369 "new project name '#{new_project['name']}' was expected to be 'A Project (2)'")