Merge branch '16157-adc-metrics'
[arvados.git] / services / api / test / functional / arvados / v1 / filters_test.rb
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 require 'test_helper'
6
7 class Arvados::V1::FiltersTest < ActionController::TestCase
8   test '"not in" filter passes null values' do
9     @controller = Arvados::V1::GroupsController.new
10     authorize_with :admin
11     get :index, params: {
12       filters: [ ['group_class', 'not in', ['project']] ],
13       controller: 'groups',
14     }
15     assert_response :success
16     found = assigns(:objects)
17     assert_includes(found.collect(&:group_class), nil,
18                     "'group_class not in ['project']' filter should pass null")
19   end
20
21   test 'error message for non-array element in filters array' do
22     @controller = Arvados::V1::CollectionsController.new
23     authorize_with :active
24     get :index, params: {
25       filters: [{bogus: 'filter'}],
26     }
27     assert_response 422
28     assert_match(/Invalid element in filters array/,
29                  json_response['errors'].join(' '))
30   end
31
32   test 'error message for full text search on a specific column' do
33     @controller = Arvados::V1::CollectionsController.new
34     authorize_with :active
35     get :index, params: {
36       filters: [['uuid', '@@', 'abcdef']],
37     }
38     assert_response 422
39     assert_match(/not supported/, json_response['errors'].join(' '))
40   end
41
42   test 'difficult characters in full text search' do
43     @controller = Arvados::V1::CollectionsController.new
44     authorize_with :active
45     get :index, params: {
46       filters: [['any', '@@', 'a|b"c']],
47     }
48     assert_response :success
49     # (Doesn't matter so much which results are returned.)
50   end
51
52   test 'array operand in full text search' do
53     @controller = Arvados::V1::CollectionsController.new
54     authorize_with :active
55     get :index, params: {
56       filters: [['any', '@@', ['abc', 'def']]],
57     }
58     assert_response 422
59     assert_match(/not supported/, json_response['errors'].join(' '))
60   end
61
62   test 'api responses provide timestamps with nanoseconds' do
63     @controller = Arvados::V1::CollectionsController.new
64     authorize_with :active
65     get :index
66     assert_response :success
67     assert_not_empty json_response['items']
68     json_response['items'].each do |item|
69       %w(created_at modified_at).each do |attr|
70         # Pass fixtures with null timestamps.
71         next if item[attr].nil?
72         assert_match(/^\d{4}-\d\d-\d\dT\d\d:\d\d:\d\d.\d{9}Z$/, item[attr])
73       end
74     end
75   end
76
77   %w(< > <= >= =).each do |operator|
78     test "timestamp #{operator} filters work with nanosecond precision" do
79       # Python clients like Node Manager rely on this exact format.
80       # If you must change this format for some reason, make sure you
81       # coordinate the change with them.
82       expect_match = !!operator.index('=')
83       mine = act_as_user users(:active) do
84         Collection.create!(manifest_text: '')
85       end
86       timestamp = mine.modified_at.strftime('%Y-%m-%dT%H:%M:%S.%NZ')
87       @controller = Arvados::V1::CollectionsController.new
88       authorize_with :active
89       get :index, params: {
90         filters: [['modified_at', operator, timestamp],
91                   ['uuid', '=', mine.uuid]],
92       }
93       assert_response :success
94       uuids = json_response['items'].map { |item| item['uuid'] }
95       if expect_match
96         assert_includes uuids, mine.uuid
97       else
98         assert_not_includes uuids, mine.uuid
99       end
100     end
101   end
102
103   test "full text search with count='none'" do
104     @controller = Arvados::V1::GroupsController.new
105     authorize_with :admin
106
107     get :contents, params: {
108       format: :json,
109       count: 'none',
110       limit: 1000,
111       filters: [['any', '@@', Rails.configuration.ClusterID]],
112     }
113
114     assert_response :success
115
116     all_objects = Hash.new(0)
117     json_response['items'].map{|o| o['kind']}.each{|t| all_objects[t] += 1}
118
119     assert_equal true, all_objects['arvados#group']>0
120     assert_equal true, all_objects['arvados#job']>0
121     assert_equal true, all_objects['arvados#pipelineInstance']>0
122     assert_equal true, all_objects['arvados#pipelineTemplate']>0
123
124     # Perform test again mimicking a second page request with:
125     # last_object_class = PipelineInstance
126     #   and hence groups and jobs should not be included in the response
127     # offset = 5, which means first 5 pipeline instances were already received in page 1
128     #   and hence the remaining pipeline instances and all other object types should be included in the response
129
130     @test_counter = 0  # Reset executed action counter
131
132     @controller = Arvados::V1::GroupsController.new
133
134     get :contents, params: {
135       format: :json,
136       count: 'none',
137       limit: 1000,
138       offset: '5',
139       last_object_class: 'PipelineInstance',
140       filters: [['any', '@@', Rails.configuration.ClusterID]],
141     }
142
143     assert_response :success
144
145     second_page = Hash.new(0)
146     json_response['items'].map{|o| o['kind']}.each{|t| second_page[t] += 1}
147
148     assert_equal false, second_page.include?('arvados#group')
149     assert_equal false, second_page.include?('arvados#job')
150     assert_equal true, second_page['arvados#pipelineInstance']>0
151     assert_equal all_objects['arvados#pipelineInstance'], second_page['arvados#pipelineInstance']+5
152     assert_equal true, second_page['arvados#pipelineTemplate']>0
153   end
154
155   [['prop1', '=', 'value1', [:collection_with_prop1_value1], [:collection_with_prop1_value2, :collection_with_prop2_1]],
156    ['prop1', '!=', 'value1', [:collection_with_prop1_value2, :collection_with_prop2_1], [:collection_with_prop1_value1]],
157    ['prop1', 'exists', true, [:collection_with_prop1_value1, :collection_with_prop1_value2, :collection_with_prop1_value3, :collection_with_prop1_other1], [:collection_with_prop2_1]],
158    ['prop1', 'exists', false, [:collection_with_prop2_1], [:collection_with_prop1_value1, :collection_with_prop1_value2, :collection_with_prop1_value3, :collection_with_prop1_other1]],
159    ['prop1', 'in', ['value1', 'value2'], [:collection_with_prop1_value1, :collection_with_prop1_value2], [:collection_with_prop1_value3, :collection_with_prop2_1]],
160    ['prop1', 'in', ['value1', 'valueX'], [:collection_with_prop1_value1], [:collection_with_prop1_value3, :collection_with_prop2_1]],
161    ['prop1', 'not in', ['value1', 'value2'], [:collection_with_prop1_value3, :collection_with_prop1_other1, :collection_with_prop2_1], [:collection_with_prop1_value1, :collection_with_prop1_value2]],
162    ['prop1', 'not in', ['value1', 'valueX'], [:collection_with_prop1_value2, :collection_with_prop1_value3, :collection_with_prop1_other1, :collection_with_prop2_1], [:collection_with_prop1_value1]],
163    ['prop1', '>', 'value2', [:collection_with_prop1_value3], [:collection_with_prop1_other1, :collection_with_prop1_value1]],
164    ['prop1', '<', 'value2', [:collection_with_prop1_other1, :collection_with_prop1_value1], [:collection_with_prop1_value2, :collection_with_prop1_value2]],
165    ['prop1', '<=', 'value2', [:collection_with_prop1_other1, :collection_with_prop1_value1, :collection_with_prop1_value2], [:collection_with_prop1_value3]],
166    ['prop1', '>=', 'value2', [:collection_with_prop1_value2, :collection_with_prop1_value3], [:collection_with_prop1_other1, :collection_with_prop1_value1]],
167    ['prop1', 'like', 'value%', [:collection_with_prop1_value1, :collection_with_prop1_value2, :collection_with_prop1_value3], [:collection_with_prop1_other1]],
168    ['prop1', 'like', '%1', [:collection_with_prop1_value1, :collection_with_prop1_other1], [:collection_with_prop1_value2, :collection_with_prop1_value3]],
169    ['prop1', 'ilike', 'VALUE%', [:collection_with_prop1_value1, :collection_with_prop1_value2, :collection_with_prop1_value3], [:collection_with_prop1_other1]],
170    ['prop2', '>',  1, [:collection_with_prop2_5], [:collection_with_prop2_1]],
171    ['prop2', '<',  5, [:collection_with_prop2_1], [:collection_with_prop2_5]],
172    ['prop2', '<=', 5, [:collection_with_prop2_1, :collection_with_prop2_5], []],
173    ['prop2', '>=', 1, [:collection_with_prop2_1, :collection_with_prop2_5], []],
174    ['<http://schema.org/example>', '=', "value1", [:collection_with_uri_prop], []],
175   ].each do |prop, op, opr, inc, ex|
176     test "jsonb filter properties.#{prop} #{op} #{opr})" do
177       @controller = Arvados::V1::CollectionsController.new
178       authorize_with :admin
179       get :index, params: {
180             filters: SafeJSON.dump([ ["properties.#{prop}", op, opr] ]),
181             limit: 1000
182           }
183       assert_response :success
184       found = assigns(:objects).collect(&:uuid)
185
186       inc.each do |i|
187         assert_includes(found, collections(i).uuid)
188       end
189
190       ex.each do |e|
191         assert_not_includes(found, collections(e).uuid)
192       end
193     end
194   end
195
196   test "jsonb hash 'exists' and '!=' filter" do
197     @controller = Arvados::V1::CollectionsController.new
198     authorize_with :admin
199     get :index, params: {
200       filters: [ ['properties.prop1', 'exists', true], ['properties.prop1', '!=', 'value1'] ]
201     }
202     assert_response :success
203     found = assigns(:objects).collect(&:uuid)
204     assert_equal found.length, 3
205     assert_not_includes(found, collections(:collection_with_prop1_value1).uuid)
206     assert_includes(found, collections(:collection_with_prop1_value2).uuid)
207     assert_includes(found, collections(:collection_with_prop1_value3).uuid)
208     assert_includes(found, collections(:collection_with_prop1_other1).uuid)
209   end
210
211   test "jsonb array 'exists'" do
212     @controller = Arvados::V1::CollectionsController.new
213     authorize_with :admin
214     get :index, params: {
215       filters: [ ['storage_classes_confirmed.default', 'exists', true] ]
216     }
217     assert_response :success
218     found = assigns(:objects).collect(&:uuid)
219     assert_equal 2, found.length
220     assert_not_includes(found,
221       collections(:storage_classes_desired_default_unconfirmed).uuid)
222     assert_includes(found,
223       collections(:storage_classes_desired_default_confirmed_default).uuid)
224     assert_includes(found,
225       collections(:storage_classes_desired_archive_confirmed_default).uuid)
226   end
227
228   test "jsonb hash alternate form 'exists' and '!=' filter" do
229     @controller = Arvados::V1::CollectionsController.new
230     authorize_with :admin
231     get :index, params: {
232       filters: [ ['properties', 'exists', 'prop1'], ['properties.prop1', '!=', 'value1'] ]
233     }
234     assert_response :success
235     found = assigns(:objects).collect(&:uuid)
236     assert_equal found.length, 3
237     assert_not_includes(found, collections(:collection_with_prop1_value1).uuid)
238     assert_includes(found, collections(:collection_with_prop1_value2).uuid)
239     assert_includes(found, collections(:collection_with_prop1_value3).uuid)
240     assert_includes(found, collections(:collection_with_prop1_other1).uuid)
241   end
242
243   test "jsonb array alternate form 'exists' filter" do
244     @controller = Arvados::V1::CollectionsController.new
245     authorize_with :admin
246     get :index, params: {
247       filters: [ ['storage_classes_confirmed', 'exists', 'default'] ]
248     }
249     assert_response :success
250     found = assigns(:objects).collect(&:uuid)
251     assert_equal 2, found.length
252     assert_not_includes(found,
253       collections(:storage_classes_desired_default_unconfirmed).uuid)
254     assert_includes(found,
255       collections(:storage_classes_desired_default_confirmed_default).uuid)
256     assert_includes(found,
257       collections(:storage_classes_desired_archive_confirmed_default).uuid)
258   end
259
260   test "jsonb 'exists' must be boolean" do
261     @controller = Arvados::V1::CollectionsController.new
262     authorize_with :admin
263     get :index, params: {
264       filters: [ ['properties.prop1', 'exists', nil] ]
265     }
266     assert_response 422
267     assert_match(/Invalid operand '' for 'exists' must be true or false/,
268                  json_response['errors'].join(' '))
269   end
270
271   test "jsonb checks column exists" do
272     @controller = Arvados::V1::CollectionsController.new
273     authorize_with :admin
274     get :index, params: {
275       filters: [ ['puppies.prop1', '=', 'value1'] ]
276     }
277     assert_response 422
278     assert_match(/Invalid attribute 'puppies' for subproperty filter/,
279                  json_response['errors'].join(' '))
280   end
281
282   test "jsonb checks column is valid" do
283     @controller = Arvados::V1::CollectionsController.new
284     authorize_with :admin
285     get :index, params: {
286       filters: [ ['name.prop1', '=', 'value1'] ]
287     }
288     assert_response 422
289     assert_match(/Invalid attribute 'name' for subproperty filter/,
290                  json_response['errors'].join(' '))
291   end
292
293   test "jsonb invalid operator" do
294     @controller = Arvados::V1::CollectionsController.new
295     authorize_with :admin
296     get :index, params: {
297       filters: [ ['properties.prop1', '###', 'value1'] ]
298     }
299     assert_response 422
300     assert_match(/Invalid operator for subproperty search '###'/,
301                  json_response['errors'].join(' '))
302   end
303
304   test "replication_desired = 2" do
305     @controller = Arvados::V1::CollectionsController.new
306     authorize_with :admin
307     get :index, params: {
308       filters: SafeJSON.dump([ ['replication_desired', '=', 2] ])
309     }
310     assert_response :success
311     found = assigns(:objects).collect(&:uuid)
312     assert_includes(found, collections(:replication_desired_2_unconfirmed).uuid)
313     assert_includes(found, collections(:replication_desired_2_confirmed_2).uuid)
314   end
315 end