search_controller_test.rb
33.7 KB
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
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
require File.dirname(__FILE__) + '/../test_helper'
require 'search_controller'
# Re-raise errors caught by the controller.
class SearchController; def rescue_action(e) raise e end; end
class SearchControllerTest < Test::Unit::TestCase
def setup
@controller = SearchController.new
@request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new
@category = Category.create!(:name => 'my category', :environment => Environment.default)
end
def test_local_files_reference
assert_local_files_reference
end
def test_valid_xhtml
assert_valid_xhtml
end
should 'filter stop words' do
@controller.expects(:locale).returns('pt_BR').at_least_once
get 'index', :query => 'a carne da vaca'
assert_response :success
assert_template 'index'
assert_equal 'carne vaca', assigns('filtered_query')
end
should 'search with filtered query' do
@controller.expects(:locale).returns('pt_BR').at_least_once
get 'index', :query => 'a carne da vaca'
assert_equal 'carne vaca', assigns('filtered_query')
end
should 'search only in specified types of content' do
get :index, :query => 'something not important', :find_in => [ 'articles' ]
assert_equal [:articles], assigns(:results).keys
end
should 'search in more than one specified types of content' do
get :index, :query => 'something not important', :find_in => [ 'articles', 'people' ]
assert_equivalent [:articles, :people ], assigns(:results).keys
end
should 'render success in search' do
get :index, :query => 'something not important'
assert_response :success
end
should 'search for articles' do
person = create_user('teste').person
art = person.articles.build(:name => 'an article to be found'); art.save!
get 'index', :query => 'article found', :find_in => [ 'articles' ]
assert_includes assigns(:results)[:articles], art
end
should 'search for articles in a specific category' do
person = create_user('teste').person
# in category
art1 = person.articles.build(:name => 'an article to be found')
art1.categories << @category
art1.save!
# not in category
art2 = person.articles.build(:name => 'another article to be found')
art2.save!
get :index, :category_path => [ 'my-category' ], :query => 'article found', :find_in => [ 'articles' ]
assert_includes assigns(:results)[:articles], art1
assert_not_includes assigns(:results)[:articles], art2
end
# 'assets' outside any category
should 'list articles in general' do
person = create_user('testuser').person
person2 = create_user('anotheruser').person
art1 = person.articles.create!(:name => 'one article', :categories => [@category])
art2 = person2.articles.create!(:name => 'two article', :categories => [@category])
get :assets, :asset => 'articles'
assert_includes assigns(:results)[:articles], art1
assert_includes assigns(:results)[:articles], art2
end
# 'assets' inside a category
should 'list articles in a specific category' do
person = create_user('testuser').person
# in category
art1 = person.articles.create!(:name => 'one article', :categories => [@category])
art2 = person.articles.create!(:name => 'other article', :categories => [@category])
# not in category
art3 = person.articles.create!(:name => 'another article')
get :assets, :asset => 'articles', :category_path => ['my-category']
assert_includes assigns(:results)[:articles], art1
assert_includes assigns(:results)[:articles], art2
assert_not_includes assigns(:results)[:articles], art3
end
should 'find enterprises' do
ent = Enterprise.create!(:name => 'teste', :identifier => 'teste')
get 'index', :query => 'teste', :find_in => [ 'enterprises' ]
assert_includes assigns(:results)[:enterprises], ent
end
should 'find enterprises in a specified category' do
# in category
ent1 = Enterprise.create!(:name => 'testing enterprise 1', :identifier => 'test1', :categories => [@category])
# not in category
ent2 = Enterprise.create!(:name => 'testing enterprise 2', :identifier => 'test2')
get :index, :category_path => [ 'my-category' ], :query => 'testing', :find_in => [ 'enterprises' ]
assert_includes assigns(:results)[:enterprises], ent1
assert_not_includes assigns(:results)[:enterprises], ent2
end
should 'list enterprises in general' do
ent1 = Enterprise.create!(:name => 'teste 1', :identifier => 'teste1')
ent2 = Enterprise.create!(:name => 'teste 2', :identifier => 'teste2')
get :assets, :asset => 'enterprises'
assert_includes assigns(:results)[:enterprises], ent1
assert_includes assigns(:results)[:enterprises], ent2
end
# 'assets' menu inside a category
should 'list enterprises in a specified category' do
# in category
ent1 = Enterprise.create!(:name => 'teste 1', :identifier => 'teste1', :categories => [@category])
# not in category
ent2 = Enterprise.create!(:name => 'teste 2', :identifier => 'teste2')
get :assets, :asset => 'enterprises', :category_path => [ 'my-category' ]
assert_includes assigns(:results)[:enterprises], ent1
assert_not_includes assigns(:results)[:enterprises], ent2
end
should 'find people' do
p1 = create_user('people_1').person; p1.name = 'a beautiful person'; p1.save!
get :index, :query => 'beautiful', :find_in => [ 'people' ]
assert_includes assigns(:results)[:people], p1
end
should 'find people in a specific category' do
p1 = create_user('people_1').person; p1.name = 'a beautiful person'; p1.categories << @category; p1.save!
p2 = create_user('people_2').person; p2.name = 'another beautiful person'; p2.save!
get :index, :category_path => [ 'my-category' ], :query => 'beautiful', :find_in => [ 'people' ]
assert_includes assigns(:results)[:people], p1
assert_not_includes assigns(:results)[:people], p2
end
# 'assets' menu outside any category
should 'list people in general' do
Profile.delete_all
p1 = create_user('test1').person
p2 = create_user('test2').person
get :assets, :asset => 'people'
assert_equivalent [p2,p1], assigns(:results)[:people]
end
# 'assets' menu inside a category
should 'list people in a specified category' do
Profile.delete_all
# in category
p1 = create_user('test1').person; p1.categories << @category
# not in category
p2 = create_user('test2').person
get :assets, :asset => 'people', :category_path => [ 'my-category' ]
assert_equal [p1], assigns(:results)[:people]
end
should 'find communities' do
c1 = Community.create!(:name => 'a beautiful community', :identifier => 'bea_comm', :environment => Environment.default)
get :index, :query => 'beautiful', :find_in => [ 'communities' ]
assert_includes assigns(:results)[:communities], c1
end
should 'find communities in a specified category' do
c1 = Community.create!(:name => 'a beautiful community', :identifier => 'bea_comm', :environment => Environment.default)
c2 = Community.create!(:name => 'another beautiful community', :identifier => 'an_bea_comm', :environment => Environment.default)
c1.categories << @category; c1.save!
get :index, :category_path => [ 'my-category' ], :query => 'beautiful', :find_in => [ 'communities' ]
assert_includes assigns(:results)[:communities], c1
assert_not_includes assigns(:results)[:communities], c2
end
# 'assets' menu outside any category
should 'list communities in general' do
c1 = Community.create!(:name => 'a beautiful community', :identifier => 'bea_comm', :environment => Environment.default)
c2 = Community.create!(:name => 'another beautiful community', :identifier => 'an_bea_comm', :environment => Environment.default)
get :assets, :asset => 'communities'
assert_equivalent [c2, c1], assigns(:results)[:communities]
end
# 'assets' menu
should 'list communities in a specified category' do
# in category
c1 = Community.create!(:name => 'a beautiful community', :identifier => 'bea_comm', :environment => Environment.default)
c1.categories << @category
# not in category
c2 = Community.create!(:name => 'another beautiful community', :identifier => 'an_bea_comm', :environment => Environment.default)
# in category
c3 = Community.create!(:name => 'yet another beautiful community', :identifier => 'yet_an_bea_comm', :environment => Environment.default)
c3.categories << @category
get :assets, :asset => 'communities', :category_path => [ 'my-category' ]
assert_equal [c3, c1], assigns(:results)[:communities]
end
should 'find products' do
ent = Enterprise.create!(:name => 'teste', :identifier => 'teste')
prod = ent.products.create!(:name => 'a beautiful product')
get 'index', :query => 'beautiful', :find_in => ['products']
assert_includes assigns(:results)[:products], prod
end
should 'find products in a specific category' do
ent1 = Enterprise.create!(:name => 'teste1', :identifier => 'teste1'); ent1.categories << @category
ent2 = Enterprise.create!(:name => 'teste2', :identifier => 'teste2')
prod1 = ent1.products.create!(:name => 'a beautiful product')
prod2 = ent2.products.create!(:name => 'another beautiful product')
get :index, :category_path => ['my-category'], :query => 'beautiful', :find_in => ['products']
assert_includes assigns(:results)[:products], prod1
assert_not_includes assigns(:results)[:products], prod2
end
# 'assets' menu outside any category
should 'list products in general' do
Profile.delete_all
ent1 = Enterprise.create!(:name => 'teste1', :identifier => 'teste1')
ent2 = Enterprise.create!(:name => 'teste2', :identifier => 'teste2')
prod1 = ent1.products.create!(:name => 'a beautiful product')
prod2 = ent2.products.create!(:name => 'another beautiful product')
get :assets, :asset => 'products'
assert_equivalent [prod2, prod1], assigns(:results)[:products]
end
# 'assets' menu inside a category
should 'list products in a specific category' do
Profile.delete_all
# in category
ent1 = Enterprise.create!(:name => 'teste1', :identifier => 'teste1'); ent1.categories << @category
prod1 = ent1.products.create!(:name => 'a beautiful product')
# not in category
ent2 = Enterprise.create!(:name => 'teste2', :identifier => 'teste2')
prod2 = ent2.products.create!(:name => 'another beautiful product')
get :assets, :asset => 'products', :category_path => [ 'my-category' ]
assert_equal [prod1], assigns(:results)[:products]
end
should 'display search results' do
ent = Enterprise.create!(:name => 'display enterprise', :identifier => 'teste1')
product = ent.products.create!(:name => 'display product')
person = create_user('displayperson').person; person.name = 'display person'; person.save!
article = person.articles.create!(:name => 'display article')
event = Event.new(:name => 'display event', :start_date => Date.today); event.profile = person; event.save!
comment = article.comments.create!(:title => 'display comment', :body => '...', :author => person)
community = Community.create!(:name => 'display community', :identifier => 'an_bea_comm')
get :index, :query => 'display'
names = {
:articles => 'Articles',
:people => 'People',
:enterprises => 'Enterprises',
:communities => 'Communities',
:products => 'Products',
:events => 'Events',
}
names.each do |thing, description|
assert_tag :tag => 'div', :attributes => { :class => /search-results-#{thing}/ }, :descendant => { :tag => 'h3', :content => Regexp.new(description) }
assert_tag :tag => 'a', :content => "display #{thing.to_s.singularize}"
end
end
should 'present options of where to search' do
get :popup
names = {
:articles => 'Articles',
:people => 'People',
:enterprises => 'Enterprises',
:communities => 'Communities',
:products => 'Products',
:events => 'Events',
}
names.each do |thing,description|
assert_tag :tag => 'input', :attributes => { :type => 'checkbox', :name => "find_in[]", :value => thing.to_s, :checked => 'checked' }
assert_tag :tag => 'label', :content => description
end
end
should 'not display option to choose where to search when not inside filter' do
get :popup
assert_no_tag :tag => 'input', :attributes => { :type => 'radio', :name => 'search_whole_site', :value => 'yes' }
end
should 'display option to choose searching in whole site or in current category' do
parent = Category.create!(:name => 'cat', :environment => Environment.default)
Category.create!(:name => 'sub', :environment => Environment.default, :parent => parent)
get :popup, :category_path => [ 'cat', 'sub']
assert_tag :tag => 'input', :attributes => { :type => 'submit', :name => 'search_whole_site_yes' }
assert_tag :tag => 'input', :attributes => { :type => 'submit', :name => 'search_whole_site_no' }
end
should 'display option to search within a given point and distance' do
get :popup
assert_tag :tag => 'input', :attributes => {:type => 'text', :name => 'radius'}
assert_tag :tag => 'input', :attributes => {:type => 'text', :name => 'region[name]'}
end
should 'search in whole site when told so' do
parent = Category.create!(:name => 'randomcat', :environment => Environment.default)
Category.create!(:name => 'randomchild', :environment => Environment.default, :parent => parent)
get :index, :category_path => [ 'randomcat', 'randomchild' ], :query => 'some random query', :search_whole_site => 'yes'
# search_whole_site must be removed to precent a infinite redirect loop
assert_redirected_to :action => 'index', :category_path => [], :query => 'some random query', :search_whole_site => nil
end
should 'submit form to root when not inside a filter' do
get :popup
assert_tag :tag => 'form', :attributes => { :action => '/search' }
end
should 'submit form to category path when inside a filter' do
get :popup, :category_path => Category.create!(:name => 'mycat', :environment => Environment.default).explode_path
assert_tag :tag => 'form', :attributes => { :action => '/search/index/mycat' }
end
should 'use GET method to search' do
get :popup
assert_tag :tag => 'form' , :attributes => { :method => 'get' }
end
should 'display a given category' do
get :category_index, :category_path => [ 'my-category' ]
assert_equal @category, assigns(:category)
end
should 'expose category in a method' do
get :category_index, :category_path => [ 'my-category' ]
assert_same assigns(:category), @controller.category
end
should 'list recent articles in the category' do
recent = []
finger = CategoryFinder.new(@category)
finger.expects(:recent).with(anything).at_least_once
finger.expects(:recent).with('articles').returns(recent)
CategoryFinder.expects(:new).with(@category).returns(finger)
get :category_index, :category_path => [ 'my-category' ]
assert_same recent, assigns(:results)[:articles]
end
should 'list most commented articles in the category' do
most_commented = []
finger = CategoryFinder.new(@category)
finger.expects(:most_commented_articles).returns(most_commented)
CategoryFinder.expects(:new).with(@category).returns(finger)
get :category_index, :category_path => [ 'my-category' ]
assert_same most_commented, assigns(:results)[:most_commented_articles]
end
should 'list recently registered people in the category' do
recent_people = []
finger = CategoryFinder.new(@category)
finger.expects(:recent).with(anything).at_least_once
finger.expects(:recent).with('people').returns(recent_people)
CategoryFinder.expects(:new).with(@category).returns(finger)
get :category_index, :category_path => [ 'my-category' ]
assert_same recent_people, assigns(:results)[:people]
end
should 'list recently registered communities in the category' do
recent_communities = []
finger = CategoryFinder.new(@category)
finger.expects(:recent).with(anything).at_least_once
finger.expects(:recent).with('communities').returns(recent_communities)
CategoryFinder.expects(:new).with(@category).returns(finger)
get :category_index, :category_path => [ 'my-category' ]
assert_same recent_communities, assigns(:results)[:communities]
end
should 'list recently registered enterprises in the category' do
recent_enterptises = []
finger = CategoryFinder.new(@category)
finger.expects(:recent).with(anything).at_least_once
finger.expects(:recent).with('enterprises').returns(recent_enterptises)
CategoryFinder.expects(:new).with(@category).returns(finger)
get :category_index, :category_path => [ 'my-category' ]
assert_same recent_enterptises, assigns(:results)[:enterprises]
end
should 'not list "Search for ..." in category_index' do
get :category_index, :category_path => [ 'my-category' ]
assert_no_tag :content => /Search for ".*" in the whole site/
end
# SECURITY
should 'not allow unrecognized assets' do
get :assets, :asset => 'unexisting_asset'
assert_response 403
end
should 'not use design blocks' do
get :index
assert_no_tag :tag => 'div', :attributes => { :id => 'boxes', :class => 'boxes' }
end
should 'offer text box to enter a new search in general context' do
get :index, :query => 'a sample search'
assert_tag :tag => 'form', :attributes => { :action => '/search' }, :descendant => {
:tag => 'input',
:attributes => { :name => 'query', :value => 'a sample search' }
}
end
should 'offer text box to enter a new seach in specific context' do
get :index, :category_path => [ 'my-category'], :query => 'a sample search'
assert_tag :tag => 'form', :attributes => { :action => '/search/index/my-category' }, :descendant => {
:tag => 'input',
:attributes => { :name => 'query', :value => 'a sample search' }
}
end
should 'offer button search in the whole site' do
get :index, :category_path => [ 'my-category' ], :query => 'a sample search'
assert_tag :tag => 'input', :attributes => { :type => 'submit', :name => 'search_whole_site_yes' }
end
should 'display only category name in "search results for ..." title' do
parent = Category.create!(:name => 'Parent Category', :environment => Environment.default)
child = Category.create!(:name => "Child Category", :environment => Environment.default, :parent => parent)
get :index, :category_path => [ 'parent-category', 'child-category' ], :query => 'a sample search'
assert_tag :tag => 'h1', :content => /Search results for "a sample search" in "Child Category"/
end
should 'search in category hierachy' do
parent = Category.create!(:name => 'Parent Category', :environment => Environment.default)
child = Category.create!(:name => 'Child Category', :environment => Environment.default, :parent => parent)
p = create_user('test_profile').person
p.categories << child
p.save!
Profile.rebuild_index
get :index, :category_path => ['parent-category'], :query => 'test_profile', :find_in => ['people']
assert_includes assigns(:results)[:people], p
end
# FIXME how do test link_to_remote?
should 'keep asset selection for new searches' do
get :index, :query => 'a sample query', :find_in => [ 'people', 'communities' ]
assert_tag :tag => 'input', :attributes => { :name => 'find_in[]', :value => 'people', :checked => 'checked' }
assert_tag :tag => 'input', :attributes => { :name => 'find_in[]', :value => 'communities', :checked => 'checked' }
assert_no_tag :tag => 'input', :attributes => { :name => 'find_in[]', :value => 'enterprises', :checked => 'checked' }
assert_no_tag :tag => 'input', :attributes => { :name => 'find_in[]', :value => 'products', :checked => 'checked' }
end
############## directory ####################
should 'link to people directory in index' do
get :assets, :asset => 'people'
assert_tag :tag => 'a', :attributes => { :href => '/directory/people/a'}, :content => 'A'
assert_tag :tag => 'a', :attributes => { :href => '/directory/people/b'}, :content => 'B'
end
should 'display link in people directory to other initials but not to the same' do
get :directory, :asset => 'people', :initial => 'r'
assert_tag :tag => 'a', :attributes => { :href => '/directory/people/a' }
assert_no_tag :tag => 'a', :attributes => { :href => '/directory/people/r' }
end
should 'display link to recent people while in directory' do
get :directory, :asset => 'people', :initial => 'a'
assert_tag :tag => 'a', :attributes => { :href => '/assets/people' }, :content => 'Recent'
end
############### directory for every kind of asset #################
should 'display people with a given initial' do
included = create_user('fergunson').person
not_included = create_user('yanerson').person
get :directory, :asset => 'people', :initial => 'f'
assert_includes assigns(:results)[:people], included
assert_not_includes assigns(:results)[:people], not_included
end
should 'display communities with a given initial' do
c1 = Community.create!(:name => 'a beautiful community', :identifier => 'bea_comm', :environment => Environment.default)
c2 = Community.create!(:name => 'beautiful community (another)', :identifier => 'an_bea_comm', :environment => Environment.default)
get :directory, :asset => 'communities', :initial => 'a'
assert_includes assigns(:results)[:communities], c1
assert_not_includes assigns(:results)[:communities], c2
end
should 'display enterprises with a given initial' do
ent1 = Enterprise.create!(:name => 'aaaaa', :identifier => 'teste1')
ent2 = Enterprise.create!(:name => 'bbbbb', :identifier => 'teste2')
get :directory, :asset => 'enterprises', :initial => 'a'
assert_includes assigns(:results)[:enterprises], ent1
assert_not_includes assigns(:results)[:enterprises], ent2
end
should 'display articles with a given initial' do
person = create_user('teste').person
art1 = person.articles.build(:name => 'an article to be found'); art1.save!
art2 = person.articles.build(:name => 'better article'); art2.save!
get :directory, :asset => 'articles', :initial => 'a'
assert_includes assigns(:results)[:articles], art1
assert_not_includes assigns(:results)[:articles], art2
end
should 'display people with a given initial, under a specific category' do
in_category_and_with_initial = create_user('fergunson').person
in_category_and_with_initial.categories << @category
in_category_but_without_initial = create_user('yanerson').person
in_category_but_without_initial.categories << @category
not_in_category_but_with_initial = create_user('fergy').person
not_in_category_and_without_initial = create_user('xalanxalan').person
get :directory, :asset => 'people', :initial => 'f', :category_path => [ 'my-category' ]
assert_includes assigns(:results)[:people], in_category_and_with_initial
assert_not_includes assigns(:results)[:people], in_category_but_without_initial
assert_not_includes assigns(:results)[:people], not_in_category_but_with_initial
assert_not_includes assigns(:results)[:people], not_in_category_and_without_initial
end
should 'display communities with a given initial, under a specific category' do
c1 = Community.create!(:name => 'a beautiful community', :identifier => 'bea_comm', :environment => Environment.default); c1.categories << @category
c2 = Community.create!(:name => 'beautiful community (another)', :identifier => 'an_bea_comm', :environment => Environment.default); c2.categories << @category
c3 = Community.create!(:name => 'another beautiful community', :identifier => 'lalala', :environment => Environment.default);
c4 = Community.create!(:name => 'damn beautiful community (another)', :identifier => 'lelele', :environment => Environment.default)
get :directory, :asset => 'communities', :initial => 'a', :category_path => [ 'my-category' ]
assert_includes assigns(:results)[:communities], c1
assert_not_includes assigns(:results)[:communities], c2
assert_not_includes assigns(:results)[:communities], c3
assert_not_includes assigns(:results)[:communities], c4
end
should 'display enterprises with a given initial, under a specific category' do
ent1 = Enterprise.create!(:name => 'aaaaa', :identifier => 'teste1'); ent1.categories << @category
ent2 = Enterprise.create!(:name => 'bbbbb', :identifier => 'teste2'); ent1.categories << @category
ent3 = Enterprise.create!(:name => 'aaaa1111', :identifier => 'teste1111')
ent4 = Enterprise.create!(:name => 'ddddd', :identifier => 'teste2222')
get :directory, :asset => 'enterprises', :initial => 'a', :category_path => [ 'my-category' ]
assert_includes assigns(:results)[:enterprises], ent1
assert_not_includes assigns(:results)[:enterprises], ent2
assert_not_includes assigns(:results)[:enterprises], ent3
assert_not_includes assigns(:results)[:enterprises], ent4
end
should 'display articles with a given initial, under a specific category' do
person = create_user('teste').person
art1 = person.articles.build(:name => 'an article to be found'); art1.save!
art1.categories << @category
art2 = person.articles.build(:name => 'better article'); art2.save!
art2.categories << @category
art3 = person.articles.build(:name => 'another article to be found'); art3.save!
art4 = person.articles.build(:name => 'damn article'); art4.save!
get :directory, :asset => 'articles', :initial => 'a', :category_path => [ 'my-category' ]
assert_includes assigns(:results)[:articles], art1
assert_not_includes assigns(:results)[:articles], art2
assert_not_includes assigns(:results)[:articles], art3
assert_not_includes assigns(:results)[:articles], art4
end
should 'find enterprise by product category' do
ent1 = Enterprise.create!(:name => 'test1', :identifier => 'test1')
prod_cat = ProductCategory.create!(:name => 'pctest', :environment => Environment.default)
prod = ent1.products.create!(:name => 'teste', :product_category => prod_cat)
ent2 = Enterprise.create!(:name => 'test2', :identifier => 'test2')
get :index, :query => prod_cat.name
assert_includes assigns('results')[:enterprises], ent1
assert_not_includes assigns('results')[:enterprises], ent2
end
should 'find profiles by radius and region' do
region = Region.create!(:name => 'r-test', :environment => Environment.default, :lat => 45.0, :lng => 45.0)
ent1 = Enterprise.create!(:name => 'test 1', :identifier => 'test1', :lat => 45.0, :lng => 45.0)
p1 = create_user('test2').person
p1.name = 'test 2'; p1.lat = 45.0; p1.lng = 45.0; p1.save!
ent2 = Enterprise.create!(:name => 'test 3', :identifier => 'test3', :lat => 30.0, :lng => 30.0)
p2 = create_user('test4').person
p2.name = 'test 4'; p2.lat = 30.0; p2.lng = 30.0; p2.save!
get :index, :region => { :name => region.name }, :radius => 10, :query => 'test'
assert_includes assigns('results')[:enterprises], ent1
assert_not_includes assigns('results')[:enterprises], ent2
assert_includes assigns('results')[:people], p1
assert_not_includes assigns('results')[:people], p2
end
should 'not show term "Category:" before product category' do
Profile.delete_all
ent = Enterprise.create!(:name => 'teste1', :identifier => 'teste1')
prod1 = ent.products.create!(:name => 'a beautiful product')
prod2 = ent.products.create!(:name => 'another beautiful product')
get :assets, :asset => 'products'
assert_no_match /Category:/, @response.body
end
should 'display category image while in directory' do
parent = Category.create!(:name => 'category1', :environment => Environment.default)
cat = Category.create!(:name => 'category2', :environment => Environment.default, :parent => parent,
:image_builder => {:uploaded_data => fixture_file_upload('/files/rails.png', 'image/png')}
)
get :category_index, :category_path => [ 'category1', 'category2' ], :query => 'teste'
assert_tag :tag => 'img', :attributes => { :src => /rails_thumb\.png/ }
end
should 'complete region name' do
r1 = Region.create!(:name => 'One region', :environment => Environment.default, :lat => 111.07, :lng => '88.9')
r2 = Region.create!(:name => 'Another region', :environment => Environment.default, :lat => 111.07, :lng => '88.9')
get :complete_region, :region => { :name => 'one' }
assert_includes assigns(:regions), r1
assert_tag :tag => 'ul', :descendant => { :tag => 'li', :content => 'One region' }
end
should 'render completion results without layout' do
get :complete_region, :region => { :name => 'test' }
assert_no_tag :tag => 'body'
end
should 'complete only georeferenced regions' do
r1 = Region.create!(:name => 'One region', :environment => Environment.default, :lat => 111.07, :lng => '88.9')
r2 = Region.create!(:name => 'Another region', :environment => Environment.default)
get :complete_region, :region => { :name => 'region' }
assert_includes assigns(:regions), r1
assert_tag :tag => 'ul', :descendant => { :tag => 'li', :content => r1.name }
assert_not_includes assigns(:regions), r2
assert_no_tag :tag => 'ul', :descendant => { :tag => 'li', :content => r2.name }
end
should 'search for events' do
person = create_user('teste').person
ev = create_event(person, :name => 'an event to be found')
get 'index', :query => 'event found', :find_in => [ 'events' ]
assert_includes assigns(:results)[:events], ev
end
should 'search for events in a specific category' do
person = create_user('teste').person
# in category
ev1 = create_event(person, :name => 'an event to be found')
ev1.categories << @category
ev1.save!
# not in category
ev2 = create_event(person, :name => 'another event to be found')
ev2.save!
get :index, :category_path => [ 'my-category' ], :query => 'event found', :find_in => [ 'events' ]
assert_includes assigns(:results)[:events], ev1
assert_not_includes assigns(:results)[:events], ev2
end
# 'assets' outside any category
should 'list events in general' do
person = create_user('testuser').person
person2 = create_user('anotheruser').person
ev1 = create_event(person, :name => 'one event', :categories => [@category])
ev2 = create_event(person2, :name => 'two event', :categories => [@category])
get :assets, :asset => 'events'
assert_includes assigns(:results)[:events], ev1
assert_includes assigns(:results)[:events], ev2
end
# 'assets' inside a category
should 'list events in a specific category' do
person = create_user('testuser').person
# in category
ev1 = create_event(person, :name => 'one event', :categories => [@category])
ev2 = create_event(person, :name => 'other event', :categories => [@category])
# not in category
ev3 = create_event(person, :name => 'another event')
get :assets, :asset => 'events', :category_path => ['my-category']
assert_includes assigns(:results)[:events], ev1
assert_includes assigns(:results)[:events], ev2
assert_not_includes assigns(:results)[:events], ev3
end
%w[ people enterprises articles events communities products ].each do |asset|
should "render asset-specific template when searching for #{asset}" do
get :index, :find_in => [ asset ]
assert_template asset
end
end
should 'list only categories with products' do
cat1 = ProductCategory.create!(:name => 'pc test 1', :environment => Environment.default)
cat2 = ProductCategory.create!(:name => 'pc test 2', :environment => Environment.default)
ent = Enterprise.create!(:name => 'test ent', :identifier => 'test_ent')
cat1.products.create!(:name => 'prod test 1', :enterprise => ent)
get :index, :find_in => 'products', :query => 'test'
assert_equal 1, assigns(:counts)[cat1.id][1]
assert_equal nil, assigns(:counts)[cat2.id]
end
should 'not list ancestor if no product in it' do
cat1 = ProductCategory.create!(:name => 'pc test 1', :environment => Environment.default)
cat2 = ProductCategory.create!(:name => 'pc test 2', :environment => Environment.default, :parent => cat1)
ent = Enterprise.create!(:name => 'test ent', :identifier => 'test_ent')
cat1.products.create!(:name => 'prod test 1', :enterprise => ent)
get :index, :find_in => 'products', :query => 'test'
assert_equal 1, assigns(:counts)[cat1.id][1]
assert_equal nil, assigns(:counts)[cat2.id]
end
should 'add hits of children in ancestor when it has products on results' do
cat1 = ProductCategory.create!(:name => 'pc test 1', :environment => Environment.default)
cat2 = ProductCategory.create!(:name => 'pc test 2', :environment => Environment.default, :parent => cat1)
ent = Enterprise.create!(:name => 'test ent', :identifier => 'test_ent')
cat1.products.create!(:name => 'prod test 1', :enterprise => ent)
cat2.products.create!(:name => 'prod test 2', :enterprise => ent)
get :index, :find_in => 'products', :query => 'test'
assert_equal 2, assigns(:counts)[cat1.id][1]
assert_equal 1, assigns(:counts)[cat2.id][1]
end
should 'provide calendar for events' do
get :index, :find_in => [ 'events' ]
assert_equal 0, assigns(:calendar).size % 7
end
should 'submit search form to /search when viewing asset' do
get :index, :asset => 'people'
assert_tag :tag => "form", :attributes => { :class => 'search_form', :action => '/search' }
end
##################################################################
##################################################################
def create_event(profile, options)
ev = Event.new({ :name => 'some event', :start_date => Date.new(2008,1,1) }.merge(options))
ev.profile = profile
ev.save!
ev
end
end