nuatt_sunspot 1.1.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (187) hide show
  1. data/History.txt +198 -0
  2. data/LICENSE +18 -0
  3. data/README.rdoc +239 -0
  4. data/Rakefile +11 -0
  5. data/TODO +13 -0
  6. data/VERSION.yml +4 -0
  7. data/bin/sunspot-installer +19 -0
  8. data/bin/sunspot-solr +74 -0
  9. data/installer/config/schema.yml +95 -0
  10. data/lib/light_config.rb +40 -0
  11. data/lib/sunspot.rb +529 -0
  12. data/lib/sunspot/adapters.rb +265 -0
  13. data/lib/sunspot/composite_setup.rb +202 -0
  14. data/lib/sunspot/configuration.rb +46 -0
  15. data/lib/sunspot/data_extractor.rb +50 -0
  16. data/lib/sunspot/dsl.rb +5 -0
  17. data/lib/sunspot/dsl/adjustable.rb +47 -0
  18. data/lib/sunspot/dsl/field_query.rb +266 -0
  19. data/lib/sunspot/dsl/fields.rb +113 -0
  20. data/lib/sunspot/dsl/fulltext.rb +243 -0
  21. data/lib/sunspot/dsl/function.rb +14 -0
  22. data/lib/sunspot/dsl/functional.rb +41 -0
  23. data/lib/sunspot/dsl/more_like_this_query.rb +56 -0
  24. data/lib/sunspot/dsl/paginatable.rb +28 -0
  25. data/lib/sunspot/dsl/query_facet.rb +36 -0
  26. data/lib/sunspot/dsl/restriction.rb +25 -0
  27. data/lib/sunspot/dsl/scope.rb +229 -0
  28. data/lib/sunspot/dsl/search.rb +30 -0
  29. data/lib/sunspot/dsl/standard_query.rb +125 -0
  30. data/lib/sunspot/field.rb +192 -0
  31. data/lib/sunspot/field_factory.rb +147 -0
  32. data/lib/sunspot/indexer.rb +131 -0
  33. data/lib/sunspot/installer.rb +31 -0
  34. data/lib/sunspot/installer/library_installer.rb +45 -0
  35. data/lib/sunspot/installer/schema_builder.rb +219 -0
  36. data/lib/sunspot/installer/solrconfig_updater.rb +106 -0
  37. data/lib/sunspot/installer/task_helper.rb +18 -0
  38. data/lib/sunspot/query.rb +10 -0
  39. data/lib/sunspot/query/abstract_field_facet.rb +52 -0
  40. data/lib/sunspot/query/boost_query.rb +24 -0
  41. data/lib/sunspot/query/common_query.rb +85 -0
  42. data/lib/sunspot/query/composite_fulltext.rb +31 -0
  43. data/lib/sunspot/query/connective.rb +191 -0
  44. data/lib/sunspot/query/date_field_facet.rb +14 -0
  45. data/lib/sunspot/query/dismax.rb +127 -0
  46. data/lib/sunspot/query/field_facet.rb +41 -0
  47. data/lib/sunspot/query/filter.rb +38 -0
  48. data/lib/sunspot/query/function_query.rb +52 -0
  49. data/lib/sunspot/query/highlighting.rb +55 -0
  50. data/lib/sunspot/query/local.rb +26 -0
  51. data/lib/sunspot/query/more_like_this.rb +60 -0
  52. data/lib/sunspot/query/more_like_this_query.rb +12 -0
  53. data/lib/sunspot/query/pagination.rb +38 -0
  54. data/lib/sunspot/query/query_facet.rb +16 -0
  55. data/lib/sunspot/query/restriction.rb +262 -0
  56. data/lib/sunspot/query/scope.rb +9 -0
  57. data/lib/sunspot/query/sort.rb +95 -0
  58. data/lib/sunspot/query/sort_composite.rb +33 -0
  59. data/lib/sunspot/query/standard_query.rb +20 -0
  60. data/lib/sunspot/query/text_field_boost.rb +17 -0
  61. data/lib/sunspot/schema.rb +151 -0
  62. data/lib/sunspot/search.rb +9 -0
  63. data/lib/sunspot/search/abstract_search.rb +302 -0
  64. data/lib/sunspot/search/date_facet.rb +35 -0
  65. data/lib/sunspot/search/facet_row.rb +27 -0
  66. data/lib/sunspot/search/field_facet.rb +88 -0
  67. data/lib/sunspot/search/highlight.rb +38 -0
  68. data/lib/sunspot/search/hit.rb +136 -0
  69. data/lib/sunspot/search/more_like_this_search.rb +31 -0
  70. data/lib/sunspot/search/query_facet.rb +62 -0
  71. data/lib/sunspot/search/standard_search.rb +21 -0
  72. data/lib/sunspot/server.rb +152 -0
  73. data/lib/sunspot/session.rb +252 -0
  74. data/lib/sunspot/session_proxy.rb +71 -0
  75. data/lib/sunspot/session_proxy/abstract_session_proxy.rb +29 -0
  76. data/lib/sunspot/session_proxy/class_sharding_session_proxy.rb +66 -0
  77. data/lib/sunspot/session_proxy/id_sharding_session_proxy.rb +89 -0
  78. data/lib/sunspot/session_proxy/master_slave_session_proxy.rb +43 -0
  79. data/lib/sunspot/session_proxy/sharding_session_proxy.rb +215 -0
  80. data/lib/sunspot/session_proxy/thread_local_session_proxy.rb +37 -0
  81. data/lib/sunspot/setup.rb +366 -0
  82. data/lib/sunspot/text_field_setup.rb +29 -0
  83. data/lib/sunspot/type.rb +340 -0
  84. data/lib/sunspot/util.rb +253 -0
  85. data/lib/sunspot/version.rb +3 -0
  86. data/solr/etc/jetty.xml +214 -0
  87. data/solr/etc/webdefault.xml +379 -0
  88. data/solr/lib/jetty-6.1.3.jar +0 -0
  89. data/solr/lib/jetty-util-6.1.3.jar +0 -0
  90. data/solr/lib/jsp-2.1/ant-1.6.5.jar +0 -0
  91. data/solr/lib/jsp-2.1/core-3.1.1.jar +0 -0
  92. data/solr/lib/jsp-2.1/jsp-2.1.jar +0 -0
  93. data/solr/lib/jsp-2.1/jsp-api-2.1.jar +0 -0
  94. data/solr/lib/servlet-api-2.5-6.1.3.jar +0 -0
  95. data/solr/solr/conf/admin-extra.html +31 -0
  96. data/solr/solr/conf/elevate.xml +36 -0
  97. data/solr/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
  98. data/solr/solr/conf/protwords.txt +21 -0
  99. data/solr/solr/conf/schema.xml +240 -0
  100. data/solr/solr/conf/scripts.conf +24 -0
  101. data/solr/solr/conf/solrconfig.xml +938 -0
  102. data/solr/solr/conf/spellings.txt +2 -0
  103. data/solr/solr/conf/stopwords.es.txt +345 -0
  104. data/solr/solr/conf/stopwords.txt +58 -0
  105. data/solr/solr/conf/synonyms.txt +31 -0
  106. data/solr/solr/lib/lucene-spatial-2.9.1.jar +0 -0
  107. data/solr/solr/lib/solr-spatial-light-0.0.6.jar +0 -0
  108. data/solr/start.jar +0 -0
  109. data/solr/webapps/solr.war +0 -0
  110. data/spec/api/adapters_spec.rb +33 -0
  111. data/spec/api/binding_spec.rb +38 -0
  112. data/spec/api/indexer/attributes_spec.rb +149 -0
  113. data/spec/api/indexer/batch_spec.rb +46 -0
  114. data/spec/api/indexer/dynamic_fields_spec.rb +42 -0
  115. data/spec/api/indexer/fixed_fields_spec.rb +57 -0
  116. data/spec/api/indexer/fulltext_spec.rb +43 -0
  117. data/spec/api/indexer/removal_spec.rb +53 -0
  118. data/spec/api/indexer/spec_helper.rb +1 -0
  119. data/spec/api/indexer_spec.rb +14 -0
  120. data/spec/api/query/advanced_manipulation_examples.rb +35 -0
  121. data/spec/api/query/connectives_examples.rb +176 -0
  122. data/spec/api/query/dsl_spec.rb +18 -0
  123. data/spec/api/query/dynamic_fields_examples.rb +165 -0
  124. data/spec/api/query/faceting_examples.rb +399 -0
  125. data/spec/api/query/fulltext_examples.rb +315 -0
  126. data/spec/api/query/function_spec.rb +70 -0
  127. data/spec/api/query/highlighting_examples.rb +225 -0
  128. data/spec/api/query/local_examples.rb +38 -0
  129. data/spec/api/query/more_like_this_spec.rb +140 -0
  130. data/spec/api/query/ordering_pagination_examples.rb +97 -0
  131. data/spec/api/query/scope_examples.rb +256 -0
  132. data/spec/api/query/spec_helper.rb +1 -0
  133. data/spec/api/query/standard_spec.rb +28 -0
  134. data/spec/api/query/text_field_scoping_examples.rb +30 -0
  135. data/spec/api/query/types_spec.rb +20 -0
  136. data/spec/api/search/dynamic_fields_spec.rb +33 -0
  137. data/spec/api/search/faceting_spec.rb +356 -0
  138. data/spec/api/search/highlighting_spec.rb +69 -0
  139. data/spec/api/search/hits_spec.rb +138 -0
  140. data/spec/api/search/results_spec.rb +79 -0
  141. data/spec/api/search/search_spec.rb +23 -0
  142. data/spec/api/search/spec_helper.rb +1 -0
  143. data/spec/api/server_spec.rb +91 -0
  144. data/spec/api/session_proxy/class_sharding_session_proxy_spec.rb +85 -0
  145. data/spec/api/session_proxy/id_sharding_session_proxy_spec.rb +30 -0
  146. data/spec/api/session_proxy/master_slave_session_proxy_spec.rb +41 -0
  147. data/spec/api/session_proxy/sharding_session_proxy_spec.rb +77 -0
  148. data/spec/api/session_proxy/spec_helper.rb +9 -0
  149. data/spec/api/session_proxy/thread_local_session_proxy_spec.rb +50 -0
  150. data/spec/api/session_spec.rb +198 -0
  151. data/spec/api/spec_helper.rb +3 -0
  152. data/spec/api/sunspot_spec.rb +18 -0
  153. data/spec/ext.rb +11 -0
  154. data/spec/helpers/indexer_helper.rb +29 -0
  155. data/spec/helpers/query_helper.rb +38 -0
  156. data/spec/helpers/search_helper.rb +80 -0
  157. data/spec/integration/dynamic_fields_spec.rb +55 -0
  158. data/spec/integration/faceting_spec.rb +238 -0
  159. data/spec/integration/highlighting_spec.rb +22 -0
  160. data/spec/integration/indexing_spec.rb +33 -0
  161. data/spec/integration/keyword_search_spec.rb +317 -0
  162. data/spec/integration/local_search_spec.rb +91 -0
  163. data/spec/integration/more_like_this_spec.rb +43 -0
  164. data/spec/integration/scoped_search_spec.rb +324 -0
  165. data/spec/integration/spec_helper.rb +7 -0
  166. data/spec/integration/stored_fields_spec.rb +10 -0
  167. data/spec/integration/test_pagination.rb +32 -0
  168. data/spec/mocks/adapters.rb +32 -0
  169. data/spec/mocks/blog.rb +3 -0
  170. data/spec/mocks/comment.rb +21 -0
  171. data/spec/mocks/connection.rb +122 -0
  172. data/spec/mocks/mock_adapter.rb +30 -0
  173. data/spec/mocks/mock_class_sharding_session_proxy.rb +24 -0
  174. data/spec/mocks/mock_record.rb +52 -0
  175. data/spec/mocks/mock_sharding_session_proxy.rb +15 -0
  176. data/spec/mocks/photo.rb +12 -0
  177. data/spec/mocks/post.rb +76 -0
  178. data/spec/mocks/super_class.rb +2 -0
  179. data/spec/mocks/user.rb +8 -0
  180. data/spec/spec_helper.rb +52 -0
  181. data/tasks/gemspec.rake +33 -0
  182. data/tasks/rcov.rake +28 -0
  183. data/tasks/rdoc.rake +27 -0
  184. data/tasks/schema.rake +19 -0
  185. data/tasks/spec.rake +24 -0
  186. data/tasks/todo.rake +4 -0
  187. metadata +355 -0
@@ -0,0 +1,38 @@
1
+ require File.join(File.dirname(__FILE__), 'spec_helper')
2
+
3
+ shared_examples_for "spatial query" do
4
+ it 'sends lat and lng, and distance when geo search is performed' do
5
+ search do
6
+ near [40.7, -73.5], :distance => 5
7
+ end
8
+ connection.should have_last_search_with(:spatial => "{!radius=5}40.7,-73.5")
9
+ end
10
+
11
+ it 'sets lat, lng, and sort flag when sorted geo search is performed' do
12
+ search do
13
+ near [40.7, -73.5], :sort => true
14
+ end
15
+ connection.should have_last_search_with(:spatial => "{!sort=true}40.7,-73.5")
16
+ end
17
+
18
+ it 'sets radius and sort when both are specified' do
19
+ search do
20
+ near [40.7, -73.5], :distance => 5, :sort => true
21
+ end
22
+ connection.should have_last_search_with(:spatial => "{!radius=5 sort=true}40.7,-73.5")
23
+ end
24
+
25
+ [
26
+ [:lat, :lng],
27
+ [:lat, :lon],
28
+ [:lat, :long],
29
+ [:latitude, :longitude]
30
+ ].each do |lat_attr, lng_attr|
31
+ it "sets coordinates using #{lat_attr.inspect}, #{lng_attr.inspect}" do
32
+ search do
33
+ near OpenStruct.new(lat_attr => 40.7, lng_attr => -73.5), :distance => 5
34
+ end
35
+ connection.should have_last_search_with(:spatial => "{!radius=5}40.7,-73.5")
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,140 @@
1
+ require File.join(File.dirname(__FILE__), 'spec_helper')
2
+
3
+ describe 'more_like_this' do
4
+ before :each do
5
+ connection.expected_handler = :mlt
6
+ end
7
+
8
+ it_should_behave_like "scoped query"
9
+ it_should_behave_like "facetable query"
10
+ it_should_behave_like "query with advanced manipulation"
11
+ it_should_behave_like "query with connective scope"
12
+ it_should_behave_like "query with dynamic field support"
13
+ it_should_behave_like "sortable query"
14
+ it_should_behave_like "query with text field scoping"
15
+
16
+ it 'should query passed in object' do
17
+ p = Post.new
18
+ session.more_like_this(p)
19
+ connection.should have_last_search_with(:q => "id:Post\\ #{p.id}")
20
+ end
21
+
22
+ it 'should use more_like_this fields if no fields specified' do
23
+ session.more_like_this(Post.new)
24
+ connection.searches.last[:"mlt.fl"].split(',').sort.should == %w(body_textsv tags_textv)
25
+ end
26
+
27
+ it 'should use more_like_this fields if specified' do
28
+ session.more_like_this(Post.new) do
29
+ fields :body
30
+ end
31
+ connection.should have_last_search_with(:"mlt.fl" => "body_textsv")
32
+ end
33
+
34
+ it 'assigns boosts to fields when specified' do
35
+ session.more_like_this(Post.new) do
36
+ fields :body, :tags => 8
37
+ end
38
+ connection.searches.last[:"mlt.fl"].split(',').sort.should == %w(body_textsv tags_textv)
39
+ connection.should have_last_search_with(:qf => "tags_textv^8")
40
+ end
41
+
42
+ it 'doesn\'t assign boosts to fields when not specified' do
43
+ session.more_like_this(Post.new) do
44
+ fields :body
45
+ end
46
+ connection.should_not have_last_search_with(:qf)
47
+ end
48
+
49
+ it 'should raise ArgumentError if a field is not setup for more_like_this' do
50
+ lambda do
51
+ session.more_like_this(Post.new) do
52
+ fields :title
53
+ end
54
+ end.should raise_error(ArgumentError)
55
+ end
56
+
57
+ it 'should accept options' do
58
+ session.more_like_this(Post.new) do
59
+ minimum_term_frequency 1
60
+ minimum_document_frequency 2
61
+ minimum_word_length 3
62
+ maximum_word_length 4
63
+ maximum_query_terms 5
64
+ boost_by_relevance false
65
+ end
66
+ connection.should have_last_search_with(:"mlt.mintf" => 1)
67
+ connection.should have_last_search_with(:"mlt.mindf" => 2)
68
+ connection.should have_last_search_with(:"mlt.minwl" => 3)
69
+ connection.should have_last_search_with(:"mlt.maxwl" => 4)
70
+ connection.should have_last_search_with(:"mlt.maxqt" => 5)
71
+ connection.should have_last_search_with(:"mlt.boost" => false)
72
+ end
73
+
74
+ it 'should accept short options' do
75
+ session.more_like_this(Post.new) do
76
+ mintf 1
77
+ mindf 2
78
+ minwl 3
79
+ maxwl 4
80
+ maxqt 5
81
+ boost true
82
+ end
83
+ connection.should have_last_search_with(:"mlt.mintf" => 1)
84
+ connection.should have_last_search_with(:"mlt.mindf" => 2)
85
+ connection.should have_last_search_with(:"mlt.minwl" => 3)
86
+ connection.should have_last_search_with(:"mlt.maxwl" => 4)
87
+ connection.should have_last_search_with(:"mlt.maxqt" => 5)
88
+ connection.should have_last_search_with(:"mlt.boost" => true)
89
+ end
90
+
91
+ it 'paginates using default per_page when page not provided' do
92
+ session.more_like_this(Post.new)
93
+ connection.should have_last_search_with(:rows => 30)
94
+ end
95
+
96
+ it 'paginates using default per_page when page provided' do
97
+ session.more_like_this(Post.new) do
98
+ paginate :page => 2
99
+ end
100
+ connection.should have_last_search_with(:rows => 30, :start => 30)
101
+ end
102
+
103
+ it 'paginates using provided per_page' do
104
+ session.more_like_this(Post.new) do
105
+ paginate :page => 4, :per_page => 15
106
+ end
107
+ connection.should have_last_search_with(:rows => 15, :start => 45)
108
+ end
109
+
110
+ it 'defaults to page 1 if no :page argument given' do
111
+ session.more_like_this(Post.new) do
112
+ paginate :per_page => 15
113
+ end
114
+ connection.should have_last_search_with(:rows => 15, :start => 0)
115
+ end
116
+
117
+ it 'paginates from string argument' do
118
+ session.more_like_this(Post.new) do
119
+ paginate :page => '3', :per_page => '15'
120
+ end
121
+ connection.should have_last_search_with(:rows => 15, :start => 30)
122
+ end
123
+
124
+ it "should send query to solr with adjusted parameters (keyword example)" do
125
+ session.more_like_this(Post.new) do
126
+ adjust_solr_params do |params|
127
+ params[:q] = 'new search'
128
+ params[:some] = 'param'
129
+ end
130
+ end
131
+ connection.should have_last_search_with(:q => 'new search')
132
+ connection.should have_last_search_with(:some => 'param')
133
+ end
134
+
135
+ private
136
+
137
+ def search(*args, &block)
138
+ session.more_like_this(Post.new, *args, &block)
139
+ end
140
+ end
@@ -0,0 +1,97 @@
1
+ require File.join(File.dirname(__FILE__), 'spec_helper')
2
+
3
+ shared_examples_for 'sortable query' do
4
+ it 'paginates using default per_page when page not provided' do
5
+ search
6
+ connection.should have_last_search_with(:rows => 30)
7
+ end
8
+
9
+ it 'paginates using default per_page when page provided' do
10
+ search do
11
+ paginate :page => 2
12
+ end
13
+ connection.should have_last_search_with(:rows => 30, :start => 30)
14
+ end
15
+
16
+ it 'paginates using provided per_page' do
17
+ search do
18
+ paginate :page => 4, :per_page => 15
19
+ end
20
+ connection.should have_last_search_with(:rows => 15, :start => 45)
21
+ end
22
+
23
+ it 'defaults to page 1 if no :page argument given' do
24
+ search do
25
+ paginate :per_page => 15
26
+ end
27
+ connection.should have_last_search_with(:rows => 15, :start => 0)
28
+ end
29
+
30
+ it 'paginates from string argument' do
31
+ search do
32
+ paginate :page => '3', :per_page => '15'
33
+ end
34
+ connection.should have_last_search_with(:rows => 15, :start => 30)
35
+ end
36
+
37
+ it 'orders by a single field' do
38
+ search do
39
+ order_by :average_rating, :desc
40
+ end
41
+ connection.should have_last_search_with(:sort => 'average_rating_ft desc')
42
+ end
43
+
44
+ it 'orders by multiple fields' do
45
+ search do
46
+ order_by :average_rating, :desc
47
+ order_by :sort_title, :asc
48
+ end
49
+ connection.should have_last_search_with(:sort => 'average_rating_ft desc, sort_title_s asc')
50
+ end
51
+
52
+ it 'orders by random' do
53
+ search do
54
+ order_by :random
55
+ end
56
+ connection.searches.last[:sort].should =~ /^random_\d+ asc$/
57
+ end
58
+
59
+ it 'orders by score' do
60
+ search do
61
+ order_by :score, :desc
62
+ end
63
+ connection.should have_last_search_with(:sort => 'score desc')
64
+ end
65
+
66
+ it 'throws an ArgumentError if a bogus order direction is given' do
67
+ lambda do
68
+ search do
69
+ order_by :sort_title, :sideways
70
+ end
71
+ end.should raise_error(ArgumentError)
72
+ end
73
+
74
+ it 'throws an UnrecognizedFieldError if :distance is given for sort' do
75
+ lambda do
76
+ search do
77
+ order_by :distance, :asc
78
+ end
79
+ end.should raise_error(Sunspot::UnrecognizedFieldError)
80
+ end
81
+
82
+ it 'does not allow ordering by multiple-value fields' do
83
+ lambda do
84
+ search do
85
+ order_by :category_ids
86
+ end
87
+ end.should raise_error(ArgumentError)
88
+ end
89
+
90
+ it 'raises ArgumentError if bogus argument given to paginate' do
91
+ lambda do
92
+ search do
93
+ paginate :page => 4, :ugly => :puppy
94
+ end
95
+ end.should raise_error(ArgumentError)
96
+ end
97
+ end
@@ -0,0 +1,256 @@
1
+ shared_examples_for "scoped query" do
2
+ it 'scopes by exact match with a string' do
3
+ search do
4
+ with :title, 'My Pet Post'
5
+ end
6
+ connection.should have_last_search_including(:fq, 'title_ss:My\ Pet\ Post')
7
+ end
8
+
9
+ it 'scopes by exact match with a special string' do
10
+ search do
11
+ with :title, 'OR'
12
+ end
13
+ connection.should have_last_search_including(:fq, 'title_ss:"OR"')
14
+ end
15
+
16
+ it 'scopes by exact match with time' do
17
+ time = Time.parse('1983-07-08 05:00:00 -0400')
18
+ search do
19
+ with :published_at, time
20
+ end
21
+ connection.should have_last_search_including(
22
+ :fq,
23
+ 'published_at_dt:1983\-07\-08T09\:00\:00Z'
24
+ )
25
+ end
26
+
27
+ it 'scopes by exact match with date' do
28
+ date = Date.new(1983, 7, 8)
29
+ search do
30
+ with :expire_date, date
31
+ end
32
+ connection.should have_last_search_including(
33
+ :fq,
34
+ 'expire_date_d:1983\-07\-08T00\:00\:00Z'
35
+ )
36
+ end
37
+
38
+ it 'scopes by exact match with boolean' do
39
+ search do
40
+ with :featured, false
41
+ end
42
+ connection.should have_last_search_including(:fq, 'featured_b:false')
43
+ end
44
+
45
+ it 'scopes by less than match with float' do
46
+ search do
47
+ with(:average_rating).less_than 3.0
48
+ end
49
+ connection.should have_last_search_including(:fq, 'average_rating_ft:[* TO 3\.0]')
50
+ end
51
+
52
+ it 'should quote string with space in a less than match' do
53
+ search do
54
+ with(:title).less_than('test value')
55
+ end
56
+ connection.should have_last_search_including(:fq, 'title_ss:[* TO "test\ value"]')
57
+ end
58
+
59
+ it 'scopes by greater than match with float' do
60
+ search do
61
+ with(:average_rating).greater_than 3.0
62
+ end
63
+ connection.should have_last_search_including(:fq, 'average_rating_ft:[3\.0 TO *]')
64
+ end
65
+
66
+ it 'scopes by short-form between match with integers' do
67
+ search do
68
+ with :blog_id, 2..4
69
+ end
70
+ connection.should have_last_search_including(:fq, 'blog_id_i:[2 TO 4]')
71
+ end
72
+
73
+ it 'scopes by between match with float' do
74
+ search do
75
+ with(:average_rating).between 2.0..4.0
76
+ end
77
+ connection.should have_last_search_including(:fq, 'average_rating_ft:[2\.0 TO 4\.0]')
78
+ end
79
+
80
+ it 'automatically sorts ranges in between matches' do
81
+ search do
82
+ with(:blog_id).between(4..2)
83
+ end
84
+ connection.should have_last_search_including(:fq, 'blog_id_i:[2 TO 4]')
85
+ end
86
+
87
+ it 'scopes by any match with integer' do
88
+ search do
89
+ with(:category_ids).any_of [2, 7, 12]
90
+ end
91
+ connection.should have_last_search_including(:fq, 'category_ids_im:(2 OR 7 OR 12)')
92
+ end
93
+
94
+ it 'scopes by short-form any-of match with integers' do
95
+ search do
96
+ with :category_ids, [2, 7, 12]
97
+ end
98
+ connection.should have_last_search_including(:fq, 'category_ids_im:(2 OR 7 OR 12)')
99
+ end
100
+
101
+ it 'scopes by all match with integer' do
102
+ search do
103
+ with(:category_ids).all_of [2, 7, 12]
104
+ end
105
+ connection.should have_last_search_including(:fq, 'category_ids_im:(2 AND 7 AND 12)')
106
+ end
107
+
108
+ it 'scopes by prefix match with string' do
109
+ search do
110
+ with(:title).starting_with('tes')
111
+ end
112
+ connection.should have_last_search_including(:fq, 'title_ss:tes*')
113
+ end
114
+
115
+ it 'scopes by not equal match with string' do
116
+ search do
117
+ without :title, 'Bad Post'
118
+ end
119
+ connection.should have_last_search_including(:fq, '-title_ss:Bad\ Post')
120
+ end
121
+
122
+ it 'scopes by not less than match with float' do
123
+ search do
124
+ without(:average_rating).less_than 3.0
125
+ end
126
+ connection.should have_last_search_including(:fq, '-average_rating_ft:[* TO 3\.0]')
127
+ end
128
+
129
+ it 'scopes by not greater than match with float' do
130
+ search do
131
+ without(:average_rating).greater_than 3.0
132
+ end
133
+ connection.should have_last_search_including(:fq, '-average_rating_ft:[3\.0 TO *]')
134
+ end
135
+
136
+ it 'scopes by not between match with shorthand' do
137
+ search do
138
+ without(:blog_id, 2..4)
139
+ end
140
+ connection.should have_last_search_including(:fq, '-blog_id_i:[2 TO 4]')
141
+ end
142
+
143
+ it 'scopes by not between match with float' do
144
+ search do
145
+ without(:average_rating).between 2.0..4.0
146
+ end
147
+ connection.should have_last_search_including(:fq, '-average_rating_ft:[2\.0 TO 4\.0]')
148
+ end
149
+
150
+ it 'scopes by not any match with integer' do
151
+ search do
152
+ without(:category_ids).any_of [2, 7, 12]
153
+ end
154
+ connection.should have_last_search_including(:fq, '-category_ids_im:(2 OR 7 OR 12)')
155
+ end
156
+
157
+ it 'scopes by not all match with integer' do
158
+ search do
159
+ without(:category_ids).all_of [2, 7, 12]
160
+ end
161
+ connection.should have_last_search_including(:fq, '-category_ids_im:(2 AND 7 AND 12)')
162
+ end
163
+
164
+ it 'scopes by empty field' do
165
+ search do
166
+ with :average_rating, nil
167
+ end
168
+ connection.should have_last_search_including(:fq, '-average_rating_ft:[* TO *]')
169
+ end
170
+
171
+ it 'scopes by non-empty field' do
172
+ search do
173
+ without :average_rating, nil
174
+ end
175
+ connection.should have_last_search_including(:fq, 'average_rating_ft:[* TO *]')
176
+ end
177
+
178
+ it 'excludes by object identity' do
179
+ post = Post.new
180
+ search do
181
+ without post
182
+ end
183
+ connection.should have_last_search_including(:fq, "-id:Post\\ #{post.id}")
184
+ end
185
+
186
+ it 'excludes multiple objects passed as varargs by object identity' do
187
+ post1, post2 = Post.new, Post.new
188
+ search do
189
+ without post1, post2
190
+ end
191
+ connection.should have_last_search_including(
192
+ :fq,
193
+ "-id:Post\\ #{post1.id}",
194
+ "-id:Post\\ #{post2.id}"
195
+ )
196
+ end
197
+
198
+ it 'excludes multiple objects passed as array by object identity' do
199
+ posts = [Post.new, Post.new]
200
+ search do
201
+ without posts
202
+ end
203
+ connection.should have_last_search_including(
204
+ :fq,
205
+ "-id:Post\\ #{posts.first.id}",
206
+ "-id:Post\\ #{posts.last.id}"
207
+ )
208
+ end
209
+
210
+ it 'allows scoping on fields common to all types' do
211
+ time = Time.parse('1983-07-08 05:00:00 -0400')
212
+ search Post, Namespaced::Comment do
213
+ with :published_at, time
214
+ end
215
+ connection.should have_last_search_including(:fq, 'published_at_dt:1983\-07\-08T09\:00\:00Z')
216
+ end
217
+
218
+ it 'allows scoping on field not common to all types' do
219
+ search Post, Namespaced::Comment do
220
+ with :blog_id, 1
221
+ end
222
+ connection.should have_last_search_including(:fq, 'blog_id_i:1')
223
+ end
224
+
225
+ it 'raises Sunspot::UnrecognizedFieldError if search scoped to field configured differently between types' do
226
+ lambda do
227
+ search Post, Namespaced::Comment do
228
+ with :average_rating, 2.2 # this is a float in Post but an integer in Comment
229
+ end
230
+ end.should raise_error(Sunspot::UnrecognizedFieldError)
231
+ end
232
+
233
+ it 'raises Sunspot::UnrecognizedFieldError for nonexistant fields in block scope' do
234
+ lambda do
235
+ search do
236
+ with :bogus, 'Field'
237
+ end
238
+ end.should raise_error(Sunspot::UnrecognizedFieldError)
239
+ end
240
+
241
+ it 'raises NoMethodError if bogus operator referenced' do
242
+ lambda do
243
+ search do
244
+ with(:category_ids).resembling :bogus_condition
245
+ end
246
+ end.should raise_error(NoMethodError)
247
+ end
248
+
249
+ it 'should raise ArgumentError if more than two arguments passed to scope method' do
250
+ lambda do
251
+ search do
252
+ with(:category_ids, 4, 5)
253
+ end
254
+ end.should raise_error(ArgumentError)
255
+ end
256
+ end