-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathhas_scope_test.rb
525 lines (396 loc) · 16.5 KB
/
has_scope_test.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
require 'test_helper'
HasScope::ALLOWED_TYPES[:date] = [[String], -> v { Date.parse(v) rescue nil }]
class Tree; end
class TreesController < ApplicationController
has_scope :color, unless: :show_all_colors?
has_scope :only_tall, type: :boolean, only: :index, if: :restrict_to_only_tall_trees?
has_scope :shadown_range, default: 10, except: [ :index, :show, :new ]
has_scope :root_type, as: :root, allow_blank: true
has_scope :planted_before, default: proc { Date.today }
has_scope :planted_after, type: :date
has_scope :calculate_height, default: proc { |c| c.session[:height] || 20 }, only: :new
has_scope :paginate, type: :hash
has_scope :paginate_blank, type: :hash, allow_blank: true
has_scope :paginate_default, type: :hash, default: { page: 1, per_page: 10 }, only: :edit
has_scope :args_paginate, type: :hash, using: [:page, :per_page]
has_scope :args_paginate_blank, using: [:page, :per_page], allow_blank: true
has_scope :args_paginate_default, using: [:page, :per_page], default: { page: 1, per_page: 10 }, only: :edit
has_scope :categories, type: :array
has_scope :title, in: :q
has_scope :content, in: :q
has_scope :metadata, in: :q
has_scope :metadata_blank, in: :q, allow_blank: true
has_scope :metadata_default, in: :q, default: "default", only: :edit
has_scope :conifer, type: :boolean, allow_blank: true
has_scope :eval_plant, if: "params[:eval_plant].present?", unless: "params[:skip_eval_plant].present?"
has_scope :proc_plant, if: -> c { c.params[:proc_plant].present? }, unless: -> c { c.params[:skip_proc_plant].present? }
has_scope :only_short, type: :boolean do |controller, scope|
scope.only_really_short!(controller.object_id)
end
has_scope :by_category do |controller, scope, value|
scope.by_given_category(controller.object_id, value + "_id")
end
def index
@trees = apply_scopes(Tree).all
end
def new
@tree = apply_scopes(Tree).new
end
def show
@tree = apply_scopes(Tree).find(params[:id])
end
alias :edit :show
protected
# Silence deprecations in the test suite, except for the actual deprecated String if/unless options.
# TODO: remove with the deprecation.
def apply_scopes(*)
if params[:eval_plant]
super
else
HasScope.deprecator.silence { super }
end
end
def restrict_to_only_tall_trees?
true
end
def show_all_colors?
false
end
def default_render
render body: action_name
end
end
class BonsaisController < TreesController
has_scope :categories, if: :categories?
has_scope :content do |controller, scope|
scope.by_content('some other content')
end
protected
def categories?
false
end
end
class HasScopeTest < ActionController::TestCase
tests TreesController
def test_boolean_scope_is_called_when_boolean_param_is_true
tree_sequence = sequence('tree')
Tree.expects(:only_tall).with().returns(Tree).in_sequence(tree_sequence)
Tree.expects(:all).returns([mock_tree]).in_sequence(tree_sequence)
get :index, params: { only_tall: 'true' }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ only_tall: true }, current_scopes)
end
def test_boolean_scope_is_not_called_when_boolean_param_is_false
Tree.expects(:only_tall).never
Tree.expects(:all).returns([mock_tree])
get :index, params: { only_tall: 'false' }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ }, current_scopes)
end
def test_boolean_scope_with_allow_blank_is_called_when_boolean_param_is_true
tree_sequence = sequence('tree')
Tree.expects(:conifer).with(true).returns(Tree).in_sequence(tree_sequence)
Tree.expects(:all).returns([mock_tree]).in_sequence(tree_sequence)
get :index, params: { conifer: 'true' }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ conifer: true }, current_scopes)
end
def test_boolean_scope_with_allow_blank_is_called_when_boolean_param_is_false
tree_sequence = sequence('tree')
Tree.expects(:conifer).with(false).returns(Tree).in_sequence(tree_sequence)
Tree.expects(:all).returns([mock_tree]).in_sequence(tree_sequence)
get :index, params: { conifer: 'not_true' }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ conifer: false }, current_scopes)
end
def test_boolean_scope_with_allow_blank_is_not_called_when_boolean_param_is_not_present
Tree.expects(:conifer).never
Tree.expects(:all).returns([mock_tree])
get :index
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ }, current_scopes)
end
def test_scope_is_called_only_on_index
Tree.expects(:only_tall).never
Tree.expects(:find).with('42').returns(mock_tree)
get :show, params: { only_tall: 'true', id: '42' }
assert_equal(mock_tree, assigns(:@tree))
assert_equal({ }, current_scopes)
end
def test_scope_is_skipped_when_if_option_is_false
@controller.stubs(:restrict_to_only_tall_trees?).returns(false)
Tree.expects(:only_tall).never
Tree.expects(:all).returns([mock_tree])
get :index, params: { only_tall: 'true' }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ }, current_scopes)
end
def test_scope_is_skipped_when_unless_option_is_true
@controller.stubs(:show_all_colors?).returns(true)
Tree.expects(:color).never
Tree.expects(:all).returns([mock_tree])
get :index, params: { color: 'blue' }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ }, current_scopes)
end
def test_scope_with_eval_string_if_and_unless_options_is_deprecated
Tree.expects(:eval_plant).with('value').returns(Tree)
Tree.expects(:all).returns([mock_tree])
assert_deprecated(/Passing a string to determine if the scope should be applied is deprecated/, HasScope.deprecator) do
get :index, params: { eval_plant: 'value', skip_eval_plant: nil }
end
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ eval_plant: 'value' }, current_scopes)
end
def test_scope_with_proc_if_and_unless_options
Tree.expects(:proc_plant).with('value').returns(Tree)
Tree.expects(:all).returns([mock_tree])
get :index, params: { proc_plant: 'value', skip_proc_plant: nil }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ proc_plant: 'value' }, current_scopes)
end
def test_scope_is_called_except_on_index
Tree.expects(:shadown_range).never
Tree.expects(:all).returns([mock_tree])
get :index, params: { shadown_range: 20 }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ }, current_scopes)
end
def test_scope_is_called_with_arguments
tree_sequence = sequence('tree')
Tree.expects(:color).with('blue').returns(Tree).in_sequence(tree_sequence)
Tree.expects(:all).returns([mock_tree]).in_sequence(tree_sequence)
get :index, params: { color: 'blue' }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ color: 'blue' }, current_scopes)
end
def test_scope_is_not_called_if_blank
tree_sequence = sequence('tree')
Tree.expects(:color).never
Tree.expects(:all).returns([mock_tree]).in_sequence(tree_sequence)
get :index, params: { color: '' }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ }, current_scopes)
end
def test_scope_is_called_when_blank_if_allow_blank_is_given
tree_sequence = sequence('tree')
Tree.expects(:root_type).with('').returns(Tree)
Tree.expects(:all).returns([mock_tree]).in_sequence(tree_sequence)
get :index, params: { root: '' }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ root: '' }, current_scopes)
end
def test_multiple_scopes_are_called
Tree.expects(:only_tall).with().returns(Tree)
Tree.expects(:color).with('blue').returns(Tree)
Tree.expects(:all).returns([mock_tree])
get :index, params: { color: 'blue', only_tall: 'true' }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ color: 'blue', only_tall: true }, current_scopes)
end
def test_scope_of_type_hash
hash = { "page" => "1", "per_page" => "10" }
Tree.expects(:paginate).with(hash).returns(Tree)
Tree.expects(:all).returns([mock_tree])
get :index, params: { paginate: hash }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ paginate: hash }, current_scopes)
end
def test_scope_of_type_hash_with_using
hash = { "page" => "1", "per_page" => "10" }
Tree.expects(:args_paginate).with("1", "10").returns(Tree)
Tree.expects(:all).returns([mock_tree])
get :index, params: { args_paginate: hash }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ args_paginate: hash }, current_scopes)
end
def test_hash_with_blank_values_is_ignored
hash = { "page" => "", "per_page" => "" }
Tree.expects(:paginate).never
Tree.expects(:all).returns([mock_tree])
get :index, params: { paginate: hash }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ }, current_scopes)
end
def test_hash_with_blank_values_and_allow_blank_is_called
hash = { "page" => "", "per_page" => "" }
Tree.expects(:paginate_blank).with({}).returns(Tree)
Tree.expects(:all).returns([mock_tree])
get :index, params: { paginate_blank: hash }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ paginate_blank: {} }, current_scopes)
end
def test_hash_with_using_and_blank_values_and_allow_blank_is_called
hash = { "page" => "", "per_page" => "" }
Tree.expects(:args_paginate_blank).with(nil, nil).returns(Tree)
Tree.expects(:all).returns([mock_tree])
get :index, params: { args_paginate_blank: hash }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ args_paginate_blank: {} }, current_scopes)
end
def test_nested_hash_with_blank_values_is_ignored
hash = { "parent" => { "children" => "" } }
Tree.expects(:paginate).never
Tree.expects(:all).returns([mock_tree])
get :index, params: { paginate: hash }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ }, current_scopes)
end
def test_nested_blank_array_param_is_ignored
hash = { "parent" => [""] }
Tree.expects(:paginate).never
Tree.expects(:all).returns([mock_tree])
get :index, params: { paginate: hash }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ }, current_scopes)
end
def test_scope_of_type_array
array = %w(book kitchen sport)
Tree.expects(:categories).with(array).returns(Tree)
Tree.expects(:all).returns([mock_tree])
get :index, params: { categories: array }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ categories: array }, current_scopes)
end
def test_array_of_blank_values_is_ignored
Tree.expects(:categories).never
Tree.expects(:all).returns([mock_tree])
get :index, params: { categories: [""] }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ }, current_scopes)
end
def test_scope_of_invalid_type_silently_fails
Tree.expects(:all).returns([mock_tree])
get :index, params: { paginate: "1" }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ }, current_scopes)
end
def test_scope_is_called_with_default_value
tree_sequence = sequence('tree')
Tree.expects(:shadown_range).with(10).returns(Tree).in_sequence(tree_sequence)
Tree.expects(:paginate_default).with({ 'page' => 1, 'per_page' => 10 }).returns(Tree).in_sequence(tree_sequence)
Tree.expects(:args_paginate_default).with(1, 10).returns(Tree).in_sequence(tree_sequence)
Tree.expects(:metadata_default).with('default').returns(Tree).in_sequence(tree_sequence)
Tree.expects(:find).with('42').returns(mock_tree).in_sequence(tree_sequence)
get :edit, params: { id: '42' }
assert_equal(mock_tree, assigns(:@tree))
assert_equal({
shadown_range: 10,
paginate_default: { 'page' => 1, 'per_page' => 10 },
args_paginate_default: { 'page' => 1, 'per_page' => 10 },
q: { 'metadata_default' => 'default' }
}, current_scopes)
end
def test_default_scope_value_can_be_overwritten
tree_sequence = sequence('tree')
Tree.expects(:shadown_range).with('20').returns(Tree).in_sequence(tree_sequence)
Tree.expects(:paginate_default).with({ 'page' => '2', 'per_page' => '20' }).returns(Tree).in_sequence(tree_sequence)
Tree.expects(:args_paginate_default).with('3', '15').returns(Tree).in_sequence(tree_sequence)
Tree.expects(:metadata_blank).with(nil).returns(Tree).in_sequence(tree_sequence)
Tree.expects(:metadata_default).with('other').returns(Tree).in_sequence(tree_sequence)
Tree.expects(:find).with('42').returns(mock_tree).in_sequence(tree_sequence)
get :edit, params: {
id: '42',
shadown_range: '20',
paginate_default: { page: 2, per_page: 20 },
args_paginate_default: { page: 3, per_page: 15},
q: { metadata_default: 'other' }
}
assert_equal(mock_tree, assigns(:@tree))
assert_equal({
shadown_range: '20',
paginate_default: { 'page' => '2', 'per_page' => '20' },
args_paginate_default: { 'page' => '3', 'per_page' => '15' },
q: { 'metadata_default' => 'other' }
}, current_scopes)
end
def test_scope_with_different_key
tree_sequence = sequence('tree')
Tree.expects(:root_type).with('outside').returns(Tree).in_sequence(tree_sequence)
Tree.expects(:find).with('42').returns(mock_tree).in_sequence(tree_sequence)
get :show, params: { id: '42', root: 'outside' }
assert_equal(mock_tree, assigns(:@tree))
assert_equal({ root: 'outside' }, current_scopes)
end
def test_scope_with_default_value_as_a_proc_without_argument
Date.expects(:today).returns("today")
Tree.expects(:planted_before).with("today").returns(Tree)
Tree.expects(:all).returns([mock_tree])
get :index
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ planted_before: "today" }, current_scopes)
end
def test_scope_with_default_value_as_proc_with_argument
session[:height] = 100
tree_sequence = sequence('tree')
Tree.expects(:calculate_height).with(100).returns(Tree).in_sequence(tree_sequence)
Tree.expects(:new).returns(mock_tree).in_sequence(tree_sequence)
get :new
assert_equal(mock_tree, assigns(:@tree))
assert_equal({ calculate_height: 100 }, current_scopes)
end
def test_scope_with_custom_type
parsed = Date.civil(2014,11,11)
Tree.expects(:planted_after).with(parsed).returns(Tree)
Tree.expects(:all).returns([mock_tree])
get :index, params: { planted_after: "2014-11-11" }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ planted_after: parsed }, current_scopes)
end
def test_scope_with_boolean_block
Tree.expects(:only_really_short!).with(@controller.object_id).returns(Tree)
Tree.expects(:all).returns([mock_tree])
get :index, params: { only_short: 'true' }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ only_short: true }, current_scopes)
end
def test_scope_with_other_block_types
Tree.expects(:by_given_category).with(@controller.object_id, 'for_id').returns(Tree)
Tree.expects(:all).returns([mock_tree])
get :index, params: { by_category: 'for' }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ by_category: 'for' }, current_scopes)
end
def test_scope_with_nested_hash_and_in_option
hash = { 'title' => 'the-title', 'content' => 'the-content' }
Tree.expects(:title).with('the-title').returns(Tree)
Tree.expects(:content).with('the-content').returns(Tree)
Tree.expects(:metadata).never
Tree.expects(:metadata_blank).with(nil).returns(Tree)
Tree.expects(:all).returns([mock_tree])
get :index, params: { q: hash }
assert_equal([mock_tree], assigns(:@trees))
assert_equal({ q: hash }, current_scopes)
end
def test_overwritten_scope
assert_nil(TreesController.scopes_configuration[:categories][:if])
assert_equal(:categories?, BonsaisController.scopes_configuration[:categories][:if])
end
def test_overwritten_scope_with_block
assert_nil(TreesController.scopes_configuration[:content][:block])
assert(BonsaisController.scopes_configuration[:content][:block])
end
protected
def mock_tree(stubs = {})
@mock_tree ||= mock(stubs)
end
def current_scopes
@controller.send :current_scopes
end
def assigns(ivar)
@controller.instance_variable_get(ivar)
end
end
class TreeHugger
include HasScope
has_scope :color
def by_color
apply_scopes(Tree, color: 'blue')
end
end
class HasScopeOutsideControllerTest < ActiveSupport::TestCase
def test_has_scope_usable_outside_controller
Tree.expects(:color).with('blue')
TreeHugger.new.by_color
end
end