erichummel-sunspot 1.2.1a

Sign up to get free protection for your applications and to get access to all the features.
Files changed (185) hide show
  1. data/Gemfile +10 -0
  2. data/Gemfile.lock +32 -0
  3. data/History.txt +222 -0
  4. data/LICENSE +18 -0
  5. data/Rakefile +11 -0
  6. data/TODO +13 -0
  7. data/VERSION.yml +4 -0
  8. data/bin/sunspot-installer +19 -0
  9. data/bin/sunspot-solr +74 -0
  10. data/installer/config/schema.yml +95 -0
  11. data/lib/light_config.rb +40 -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/adjustable.rb +47 -0
  17. data/lib/sunspot/dsl/field_query.rb +266 -0
  18. data/lib/sunspot/dsl/fields.rb +103 -0
  19. data/lib/sunspot/dsl/fulltext.rb +243 -0
  20. data/lib/sunspot/dsl/function.rb +14 -0
  21. data/lib/sunspot/dsl/functional.rb +41 -0
  22. data/lib/sunspot/dsl/more_like_this_query.rb +56 -0
  23. data/lib/sunspot/dsl/paginatable.rb +28 -0
  24. data/lib/sunspot/dsl/query_facet.rb +36 -0
  25. data/lib/sunspot/dsl/restriction.rb +25 -0
  26. data/lib/sunspot/dsl/restriction_with_near.rb +121 -0
  27. data/lib/sunspot/dsl/scope.rb +217 -0
  28. data/lib/sunspot/dsl/search.rb +30 -0
  29. data/lib/sunspot/dsl/standard_query.rb +121 -0
  30. data/lib/sunspot/dsl.rb +5 -0
  31. data/lib/sunspot/field.rb +193 -0
  32. data/lib/sunspot/field_factory.rb +129 -0
  33. data/lib/sunspot/indexer.rb +131 -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 +76 -0
  37. data/lib/sunspot/installer/task_helper.rb +18 -0
  38. data/lib/sunspot/installer.rb +31 -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 +36 -0
  43. data/lib/sunspot/query/connective.rb +206 -0
  44. data/lib/sunspot/query/date_field_facet.rb +14 -0
  45. data/lib/sunspot/query/dismax.rb +128 -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/geo.rb +53 -0
  50. data/lib/sunspot/query/highlighting.rb +55 -0
  51. data/lib/sunspot/query/more_like_this.rb +61 -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 +16 -0
  60. data/lib/sunspot/query/text_field_boost.rb +17 -0
  61. data/lib/sunspot/query.rb +11 -0
  62. data/lib/sunspot/schema.rb +151 -0
  63. data/lib/sunspot/search/abstract_search.rb +296 -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 +67 -0
  71. data/lib/sunspot/search/standard_search.rb +21 -0
  72. data/lib/sunspot/search.rb +9 -0
  73. data/lib/sunspot/server.rb +152 -0
  74. data/lib/sunspot/session.rb +260 -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 +222 -0
  80. data/lib/sunspot/session_proxy/silent_fail_session_proxy.rb +42 -0
  81. data/lib/sunspot/session_proxy/thread_local_session_proxy.rb +37 -0
  82. data/lib/sunspot/session_proxy.rb +87 -0
  83. data/lib/sunspot/setup.rb +350 -0
  84. data/lib/sunspot/text_field_setup.rb +29 -0
  85. data/lib/sunspot/type.rb +372 -0
  86. data/lib/sunspot/util.rb +243 -0
  87. data/lib/sunspot/version.rb +3 -0
  88. data/lib/sunspot.rb +569 -0
  89. data/solr/etc/jetty.xml +214 -0
  90. data/solr/etc/webdefault.xml +379 -0
  91. data/solr/lib/jetty-6.1.3.jar +0 -0
  92. data/solr/lib/jetty-util-6.1.3.jar +0 -0
  93. data/solr/lib/jsp-2.1/ant-1.6.5.jar +0 -0
  94. data/solr/lib/jsp-2.1/core-3.1.1.jar +0 -0
  95. data/solr/lib/jsp-2.1/jsp-2.1.jar +0 -0
  96. data/solr/lib/jsp-2.1/jsp-api-2.1.jar +0 -0
  97. data/solr/lib/servlet-api-2.5-6.1.3.jar +0 -0
  98. data/solr/solr/conf/admin-extra.html +31 -0
  99. data/solr/solr/conf/elevate.xml +36 -0
  100. data/solr/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
  101. data/solr/solr/conf/protwords.txt +21 -0
  102. data/solr/solr/conf/schema.xml +238 -0
  103. data/solr/solr/conf/scripts.conf +24 -0
  104. data/solr/solr/conf/solrconfig.xml +934 -0
  105. data/solr/solr/conf/spellings.txt +2 -0
  106. data/solr/solr/conf/stopwords.txt +58 -0
  107. data/solr/solr/conf/synonyms.txt +31 -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 +50 -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 +189 -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/geo_examples.rb +69 -0
  128. data/spec/api/query/highlighting_examples.rb +225 -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 +275 -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 +360 -0
  138. data/spec/api/search/highlighting_spec.rb +69 -0
  139. data/spec/api/search/hits_spec.rb +140 -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/silent_fail_session_proxy_spec.rb +24 -0
  149. data/spec/api/session_proxy/spec_helper.rb +9 -0
  150. data/spec/api/session_proxy/thread_local_session_proxy_spec.rb +50 -0
  151. data/spec/api/session_spec.rb +220 -0
  152. data/spec/api/spec_helper.rb +3 -0
  153. data/spec/api/sunspot_spec.rb +18 -0
  154. data/spec/ext.rb +11 -0
  155. data/spec/helpers/indexer_helper.rb +29 -0
  156. data/spec/helpers/query_helper.rb +38 -0
  157. data/spec/helpers/search_helper.rb +80 -0
  158. data/spec/integration/dynamic_fields_spec.rb +55 -0
  159. data/spec/integration/faceting_spec.rb +238 -0
  160. data/spec/integration/highlighting_spec.rb +22 -0
  161. data/spec/integration/indexing_spec.rb +33 -0
  162. data/spec/integration/keyword_search_spec.rb +317 -0
  163. data/spec/integration/local_search_spec.rb +64 -0
  164. data/spec/integration/more_like_this_spec.rb +43 -0
  165. data/spec/integration/scoped_search_spec.rb +354 -0
  166. data/spec/integration/spec_helper.rb +7 -0
  167. data/spec/integration/stored_fields_spec.rb +10 -0
  168. data/spec/integration/test_pagination.rb +32 -0
  169. data/spec/mocks/adapters.rb +32 -0
  170. data/spec/mocks/blog.rb +3 -0
  171. data/spec/mocks/comment.rb +21 -0
  172. data/spec/mocks/connection.rb +126 -0
  173. data/spec/mocks/mock_adapter.rb +30 -0
  174. data/spec/mocks/mock_class_sharding_session_proxy.rb +24 -0
  175. data/spec/mocks/mock_record.rb +52 -0
  176. data/spec/mocks/mock_sharding_session_proxy.rb +15 -0
  177. data/spec/mocks/photo.rb +11 -0
  178. data/spec/mocks/post.rb +85 -0
  179. data/spec/mocks/super_class.rb +2 -0
  180. data/spec/mocks/user.rb +13 -0
  181. data/spec/spec_helper.rb +42 -0
  182. data/tasks/rdoc.rake +27 -0
  183. data/tasks/schema.rake +19 -0
  184. data/tasks/todo.rake +4 -0
  185. metadata +342 -0
@@ -0,0 +1,399 @@
1
+ require File.join(File.dirname(__FILE__), 'spec_helper')
2
+
3
+ shared_examples_for "facetable query" do
4
+ describe 'on fields' do
5
+ it 'does not turn faceting on if no facet requested' do
6
+ search
7
+ connection.should_not have_last_search_with('facet')
8
+ end
9
+
10
+ it 'turns faceting on if facet is requested' do
11
+ search do
12
+ facet :category_ids
13
+ end
14
+ connection.should have_last_search_with(:facet => 'true')
15
+ end
16
+
17
+ it 'requests single field facet' do
18
+ search do
19
+ facet :category_ids
20
+ end
21
+ connection.should have_last_search_with(:"facet.field" => %w(category_ids_im))
22
+ end
23
+
24
+ it 'requests multiple field facets' do
25
+ search do
26
+ facet :category_ids, :blog_id
27
+ end
28
+ connection.should have_last_search_with(:"facet.field" => %w(category_ids_im blog_id_i))
29
+ end
30
+
31
+ it 'sets facet sort by count' do
32
+ search do
33
+ facet :category_ids, :sort => :count
34
+ end
35
+ connection.should have_last_search_with(:"f.category_ids_im.facet.sort" => 'true')
36
+ end
37
+
38
+ it 'sets facet sort by index' do
39
+ search do
40
+ facet :category_ids, :sort => :index
41
+ end
42
+ connection.should have_last_search_with(:"f.category_ids_im.facet.sort" => 'false')
43
+ end
44
+
45
+ it 'raises ArgumentError if bogus facet sort provided' do
46
+ lambda do
47
+ search do
48
+ facet :category_ids, :sort => :sideways
49
+ end
50
+ end.should raise_error(ArgumentError)
51
+ end
52
+
53
+ it 'sets the facet limit' do
54
+ search do
55
+ facet :category_ids, :limit => 10
56
+ end
57
+ connection.should have_last_search_with(:"f.category_ids_im.facet.limit" => 10)
58
+ end
59
+
60
+ it 'sets the facet minimum count' do
61
+ search do
62
+ facet :category_ids, :minimum_count => 5
63
+ end
64
+ connection.should have_last_search_with(:"f.category_ids_im.facet.mincount" => 5)
65
+ end
66
+
67
+ it 'sets the facet minimum count to zero if zeros are allowed' do
68
+ search do
69
+ facet :category_ids, :zeros => true
70
+ end
71
+ connection.should have_last_search_with(:"f.category_ids_im.facet.mincount" => 0)
72
+ end
73
+
74
+ it 'sets the facet minimum count to one by default' do
75
+ search do
76
+ facet :category_ids
77
+ end
78
+ connection.should have_last_search_with(:"f.category_ids_im.facet.mincount" => 1)
79
+ end
80
+
81
+ it 'sets the facet prefix' do
82
+ search do
83
+ facet :title, :prefix => 'Test'
84
+ end
85
+ connection.should have_last_search_with(:"f.title_ss.facet.prefix" => 'Test')
86
+ end
87
+
88
+ it 'escapes the facet prefix' do
89
+ search do
90
+ facet :title, :prefix => 'Test Title'
91
+ end
92
+ connection.should have_last_search_with(:"f.title_ss.facet.prefix" => 'Test\ Title')
93
+ end
94
+
95
+ it 'sends a query facet for :any extra' do
96
+ search do
97
+ facet :category_ids, :extra => :any
98
+ end
99
+ connection.should have_last_search_with(:"facet.query" => "category_ids_im:[* TO *]")
100
+ end
101
+
102
+ it 'sends a query facet for :none extra' do
103
+ search do
104
+ facet :category_ids, :extra => :none
105
+ end
106
+ connection.should have_last_search_with(:"facet.query" => "-category_ids_im:[* TO *]")
107
+ end
108
+
109
+ it 'raises an ArgumentError if bogus extra is passed' do
110
+ lambda do
111
+ search do
112
+ facet :category_ids, :extra => :bogus
113
+ end
114
+ end.should raise_error(ArgumentError)
115
+ end
116
+
117
+ it 'tags and excludes a scope filter in a field facet' do
118
+ search do
119
+ blog_filter = with(:blog_id, 1)
120
+ facet(:blog_id, :exclude => blog_filter)
121
+ end
122
+ filter_tag = get_filter_tag('blog_id_i:1')
123
+ connection.should have_last_search_with(
124
+ :"facet.field" => %W({!ex=#{filter_tag}}blog_id_i)
125
+ )
126
+ end
127
+
128
+ it 'tags and excludes a disjunction filter in a field facet' do
129
+ search do
130
+ blog_filter = any_of do
131
+ with(:blog_id, 1)
132
+ with(:blog_id, 2)
133
+ end
134
+ facet(:blog_id, :exclude => blog_filter)
135
+ end
136
+ filter_tag = get_filter_tag('(blog_id_i:1 OR blog_id_i:2)')
137
+ connection.should have_last_search_with(
138
+ :"facet.field" => %W({!ex=#{filter_tag}}blog_id_i)
139
+ )
140
+ end
141
+
142
+ it 'tags and excludes multiple filters in a field facet' do
143
+ search do
144
+ blog_filter = with(:blog_id, 1)
145
+ category_filter = with(:category_ids, 2)
146
+ facet(:blog_id, :exclude => [blog_filter, category_filter])
147
+ end
148
+ filter_tags = %w(blog_id_i:1 category_ids_im:2).map do |phrase|
149
+ get_filter_tag(phrase)
150
+ end.join(',')
151
+ connection.should have_last_search_with(
152
+ :"facet.field" => %W({!ex=#{filter_tags}}blog_id_i)
153
+ )
154
+ end
155
+
156
+ it 'does not tag a filter if it is not excluded' do
157
+ search do
158
+ with(:blog_id, 1)
159
+ end
160
+ connection.should have_last_search_including(:fq, "blog_id_i:1")
161
+ end
162
+
163
+ it 'names a field facet' do
164
+ search do
165
+ facet(:blog_id, :name => :blog)
166
+ end
167
+ connection.should have_last_search_including(:"facet.field", "{!key=blog}blog_id_i")
168
+ end
169
+
170
+ it 'uses the custom field facet name in facet option parameters' do
171
+ search do
172
+ facet(:blog_id, :name => :blog, :sort => :count)
173
+ end
174
+ connection.should have_last_search_with(:"f.blog.facet.sort" => 'true')
175
+ end
176
+
177
+ it 'raises an ArgumentError if exclusion attempted on a query facet' do
178
+ lambda do
179
+ search do
180
+ blog_filter = with(:blog_id, 1)
181
+ facet(:bad, :exclude => blog_filter) do
182
+ row(:bogus) { with(:blog_id, 1) }
183
+ end
184
+ end
185
+ end.should raise_error(ArgumentError)
186
+ end
187
+
188
+ it 'raises an ArgumentError if exclusion attempted on a restricted field facet' do
189
+ lambda do
190
+ search do
191
+ blog_filter = with(:blog_id, 1)
192
+ facet(:blog_id, :only => 1, :exclude => blog_filter)
193
+ end
194
+ end.should raise_error(ArgumentError)
195
+ end
196
+
197
+ it 'raises an ArgumentError if exclusion attempted on a facet with :extra' do
198
+ lambda do
199
+ search do
200
+ blog_filter = with(:blog_id, 1)
201
+ facet(:blog_id, :extra => :all, :exclude => blog_filter)
202
+ end
203
+ end.should raise_error(ArgumentError)
204
+ end
205
+ end
206
+
207
+ describe 'on time ranges' do
208
+ before :each do
209
+ @time_range = (Time.parse('2009-06-01 00:00:00 -0400')..
210
+ Time.parse('2009-07-01 00:00:00 -0400'))
211
+ end
212
+
213
+ it 'does not send date facet parameters if time range is not specified' do
214
+ search do |query|
215
+ query.facet :published_at
216
+ end
217
+ connection.should_not have_last_search_with(:"facet.date")
218
+ end
219
+
220
+ it 'sets the facet to a date facet if time range is specified' do
221
+ search do |query|
222
+ query.facet :published_at, :time_range => @time_range
223
+ end
224
+ connection.should have_last_search_with(:"facet.date" => ['published_at_dt'])
225
+ end
226
+
227
+ it 'sets the facet start and end' do
228
+ search do |query|
229
+ query.facet :published_at, :time_range => @time_range
230
+ end
231
+ connection.should have_last_search_with(
232
+ :"f.published_at_dt.facet.date.start" => '2009-06-01T04:00:00Z',
233
+ :"f.published_at_dt.facet.date.end" => '2009-07-01T04:00:00Z'
234
+ )
235
+ end
236
+
237
+ it 'defaults the time interval to 1 day' do
238
+ search do |query|
239
+ query.facet :published_at, :time_range => @time_range
240
+ end
241
+ connection.should have_last_search_with(:"f.published_at_dt.facet.date.gap" => "+86400SECONDS")
242
+ end
243
+
244
+ it 'uses custom time interval' do
245
+ search do |query|
246
+ query.facet :published_at, :time_range => @time_range, :time_interval => 3600
247
+ end
248
+ connection.should have_last_search_with(:"f.published_at_dt.facet.date.gap" => "+3600SECONDS")
249
+ end
250
+
251
+ it 'does not allow date faceting on a non-date field' do
252
+ lambda do
253
+ search do |query|
254
+ query.facet :blog_id, :time_range => @time_range
255
+ end
256
+ end.should raise_error(ArgumentError)
257
+ end
258
+ end
259
+
260
+ describe 'using queries' do
261
+ it 'turns faceting on' do
262
+ search do
263
+ facet :foo do
264
+ row :bar do
265
+ with(:average_rating).between(4.0..5.0)
266
+ end
267
+ end
268
+ end
269
+ connection.should have_last_search_with(:facet => 'true')
270
+ end
271
+
272
+ it 'facets by query' do
273
+ search do
274
+ facet :foo do
275
+ row :bar do
276
+ with(:average_rating).between(4.0..5.0)
277
+ end
278
+ end
279
+ end
280
+ connection.should have_last_search_with(:"facet.query" => 'average_rating_ft:[4\.0 TO 5\.0]')
281
+ end
282
+
283
+ it 'requests multiple query facets' do
284
+ search do
285
+ facet :foo do
286
+ row :bar do
287
+ with(:average_rating).between(3.0..4.0)
288
+ end
289
+ row :baz do
290
+ with(:average_rating).between(4.0..5.0)
291
+ end
292
+ end
293
+ end
294
+ connection.should have_last_search_with(
295
+ :"facet.query" => [
296
+ 'average_rating_ft:[3\.0 TO 4\.0]',
297
+ 'average_rating_ft:[4\.0 TO 5\.0]'
298
+ ]
299
+ )
300
+ end
301
+
302
+ it 'requests query facet with multiple conditions' do
303
+ search do
304
+ facet :foo do
305
+ row :bar do
306
+ with(:category_ids, 1)
307
+ with(:blog_id, 2)
308
+ end
309
+ end
310
+ end
311
+ connection.should have_last_search_with(
312
+ :"facet.query" => '(category_ids_im:1 AND blog_id_i:2)'
313
+ )
314
+ end
315
+
316
+ it 'requests query facet with disjunction' do
317
+ search do
318
+ facet :foo do
319
+ row :bar do
320
+ any_of do
321
+ with(:category_ids, 1)
322
+ with(:blog_id, 2)
323
+ end
324
+ end
325
+ end
326
+ end
327
+ connection.should have_last_search_with(
328
+ :"facet.query" => '(category_ids_im:1 OR blog_id_i:2)'
329
+ )
330
+ end
331
+
332
+ it 'builds query facets when passed :only argument to field facet declaration' do
333
+ search do
334
+ facet :category_ids, :only => [1, 3]
335
+ end
336
+ connection.should have_last_search_with(
337
+ :"facet.query" => ['category_ids_im:1', 'category_ids_im:3']
338
+ )
339
+ end
340
+
341
+ it 'converts limited query facet values to the correct type' do
342
+ search do
343
+ facet :published_at, :only => [Time.utc(2009, 8, 28, 15, 33), Time.utc(2008,8, 28, 15, 33)]
344
+ end
345
+ connection.should have_last_search_with(
346
+ :"facet.query" => [
347
+ 'published_at_dt:2009\-08\-28T15\:33\:00Z',
348
+ 'published_at_dt:2008\-08\-28T15\:33\:00Z'
349
+ ]
350
+ )
351
+ end
352
+
353
+ it 'ignores facet query with no rows' do
354
+ search do
355
+ facet(:foo) {}
356
+ end
357
+ connection.should_not have_last_search_with(:"facet.query")
358
+ end
359
+
360
+ it 'ignores facet query row with no restrictions' do
361
+ search do
362
+ facet :foo do
363
+ row(:bar) do
364
+ with(:blog_id, 1)
365
+ end
366
+ row(:baz) {}
367
+ end
368
+ end
369
+ connection.searches.last[:"facet.query"].should be_a(String)
370
+ end
371
+
372
+ it 'ignores facet query with only empty rows' do
373
+ search do
374
+ facet :foo do
375
+ row(:bar) {}
376
+ end
377
+ end
378
+ connection.should_not have_last_search_with(:"facet.query")
379
+ end
380
+
381
+ it 'does not allow 0 arguments to facet method with block' do
382
+ lambda do
383
+ search do
384
+ facet do
385
+ end
386
+ end
387
+ end.should raise_error(ArgumentError)
388
+ end
389
+
390
+ it 'does not allow more than 1 argument to facet method with block' do
391
+ lambda do
392
+ search do
393
+ facet :foo, :bar do
394
+ end
395
+ end
396
+ end.should raise_error(ArgumentError)
397
+ end
398
+ end
399
+ end
@@ -0,0 +1,315 @@
1
+ require File.join(File.dirname(__FILE__), 'spec_helper')
2
+
3
+ shared_examples_for 'fulltext query' do
4
+ it 'searches by keywords' do
5
+ search do
6
+ keywords 'keyword search'
7
+ end
8
+ connection.should have_last_search_with(:q => 'keyword search')
9
+ end
10
+
11
+ it 'ignores keywords if empty' do
12
+ search do
13
+ keywords ''
14
+ end
15
+ connection.should_not have_last_search_with(:defType => 'dismax')
16
+ end
17
+
18
+ it 'ignores keywords if nil' do
19
+ search do
20
+ keywords nil
21
+ end
22
+ connection.should_not have_last_search_with(:defType => 'dismax')
23
+ end
24
+
25
+ it 'ignores keywords with only whitespace' do
26
+ search do
27
+ keywords " \t"
28
+ end
29
+ connection.should_not have_last_search_with(:defType => 'dismax')
30
+ end
31
+
32
+ it 'gracefully ignores keywords block if keywords ignored' do
33
+ search do
34
+ keywords(nil) { fields(:title) }
35
+ end
36
+ end
37
+
38
+ it 'sets default query parser to dismax when keywords used' do
39
+ search do
40
+ keywords 'keyword search'
41
+ end
42
+ connection.should have_last_search_with(:defType => 'dismax')
43
+ end
44
+
45
+ it 'searches types in filter query if keywords used' do
46
+ search do
47
+ keywords 'keyword search'
48
+ end
49
+ connection.should have_last_search_with(:fq => ['type:Post'])
50
+ end
51
+
52
+ describe 'with multiple keyword components' do
53
+ before :each do
54
+ session.search Post do
55
+ keywords 'first search', :fields => :title
56
+ keywords 'second search'
57
+ end
58
+ end
59
+
60
+ it 'puts specified keywords in subquery' do
61
+ subqueries(:q).map { |subquery| subquery[:v] }.should ==
62
+ ['first search', 'second search']
63
+ end
64
+
65
+ it 'puts specified dismax parameters in subquery' do
66
+ subqueries(:q).first[:qf].should == 'title_text'
67
+ end
68
+
69
+ it 'puts default dismax parameters in subquery' do
70
+ subqueries(:q).last[:qf].split(' ').sort.should == %w(backwards_title_text body_textsv tags_textv title_text)
71
+ end
72
+
73
+ it 'puts field list in main query' do
74
+ connection.should have_last_search_with(:fl => '* score')
75
+ end
76
+ end
77
+
78
+ it 'searches all text fields for searched class' do
79
+ search = search do
80
+ keywords 'keyword search'
81
+ end
82
+ connection.searches.last[:qf].split(' ').sort.should == %w(backwards_title_text body_textsv tags_textv title_text)
83
+ end
84
+
85
+ it 'searches both stored and unstored text fields' do
86
+ search Post, Namespaced::Comment do
87
+ keywords 'keyword search'
88
+ end
89
+ connection.searches.last[:qf].split(' ').sort.should == %w(author_name_text backwards_title_text body_text body_textsv tags_textv title_text)
90
+ end
91
+
92
+ it 'searches only specified text fields when specified' do
93
+ search do
94
+ keywords 'keyword search', :fields => [:title, :body]
95
+ end
96
+ connection.searches.last[:qf].split(' ').sort.should == %w(body_textsv title_text)
97
+ end
98
+
99
+ it 'excludes text fields when instructed' do
100
+ search do
101
+ keywords 'keyword search' do
102
+ exclude_fields :backwards_title, :body_mlt
103
+ end
104
+ end
105
+ connection.searches.last[:qf].split(' ').sort.should == %w(body_textsv tags_textv title_text)
106
+ end
107
+
108
+ it 'assigns boost to fields when specified' do
109
+ search do
110
+ keywords 'keyword search' do
111
+ fields :title => 2.0, :body => 0.75
112
+ end
113
+ end
114
+ connection.searches.last[:qf].split(' ').sort.should == %w(body_textsv^0.75 title_text^2.0)
115
+ end
116
+
117
+ it 'allows assignment of boosted and unboosted fields' do
118
+ search do
119
+ keywords 'keyword search' do
120
+ fields :body, :title => 2.0
121
+ end
122
+ end
123
+ end
124
+
125
+ it 'searches both unstored and stored text field with same name when specified' do
126
+ search Post, Namespaced::Comment do
127
+ keywords 'keyword search', :fields => [:body]
128
+ end
129
+ connection.searches.last[:qf].split(' ').sort.should == %w(body_text body_textsv)
130
+ end
131
+
132
+ it 'requests score when keywords used' do
133
+ search do
134
+ keywords 'keyword search'
135
+ end
136
+ connection.should have_last_search_with(:fl => '* score')
137
+ end
138
+
139
+ it 'does not request score when keywords not used' do
140
+ search Post
141
+ connection.should_not have_last_search_with(:fl)
142
+ end
143
+
144
+ it 'sets phrase fields' do
145
+ search do
146
+ keywords 'great pizza' do
147
+ phrase_fields :title => 2.0
148
+ end
149
+ end
150
+ connection.should have_last_search_with(:pf => 'title_text^2.0')
151
+ end
152
+
153
+ it 'sets phrase fields with boost' do
154
+ search do
155
+ keywords 'great pizza' do
156
+ phrase_fields :title => 1.5
157
+ end
158
+ end
159
+ connection.should have_last_search_with(:pf => 'title_text^1.5')
160
+ end
161
+
162
+ it 'sets phrase slop from DSL' do
163
+ search do
164
+ keywords 'great pizza' do
165
+ phrase_slop 2
166
+ end
167
+ end
168
+ connection.should have_last_search_with(:ps => 2)
169
+ end
170
+
171
+ it 'sets boost for certain fields without restricting fields' do
172
+ search do
173
+ keywords 'great pizza' do
174
+ boost_fields :title => 1.5
175
+ end
176
+ end
177
+ connection.searches.last[:qf].split(' ').sort.should == %w(backwards_title_text body_textsv tags_textv title_text^1.5)
178
+ end
179
+
180
+ it 'ignores boost fields that do not apply' do
181
+ search do
182
+ keywords 'great pizza' do
183
+ boost_fields :bogus => 1.2, :title => 1.5
184
+ end
185
+ end
186
+ connection.searches.last[:qf].split(' ').sort.should == %w(backwards_title_text body_textsv tags_textv title_text^1.5)
187
+ end
188
+
189
+ it 'sets default boost with default fields' do
190
+ search Photo do
191
+ keywords 'great pizza'
192
+ end
193
+ connection.should have_last_search_with(:qf => 'caption_text^1.5')
194
+ end
195
+
196
+ it 'sets default boost with fields specified in options' do
197
+ search Photo do
198
+ keywords 'great pizza', :fields => [:caption]
199
+ end
200
+ connection.should have_last_search_with(:qf => 'caption_text^1.5')
201
+ end
202
+
203
+ it 'sets default boost with fields specified in DSL' do
204
+ search Photo do
205
+ keywords 'great pizza' do
206
+ fields :caption
207
+ end
208
+ end
209
+ connection.should have_last_search_with(:qf => 'caption_text^1.5')
210
+ end
211
+
212
+ it 'overrides default boost when specified in DSL' do
213
+ search Photo do
214
+ keywords 'great pizza' do
215
+ fields :caption => 2.0
216
+ end
217
+ end
218
+ connection.should have_last_search_with(:qf => 'caption_text^2.0')
219
+ end
220
+
221
+ it 'creates boost query' do
222
+ search do
223
+ keywords 'great pizza' do
224
+ boost 2.0 do
225
+ with(:average_rating).greater_than(2.0)
226
+ end
227
+ end
228
+ end
229
+ connection.should have_last_search_with(:bq => ['average_rating_ft:[2\.0 TO *]^2.0'])
230
+ end
231
+
232
+ it 'creates multiple boost queries' do
233
+ search do
234
+ keywords 'great pizza' do
235
+ boost(2.0) do
236
+ with(:average_rating).greater_than(2.0)
237
+ end
238
+ boost(1.5) do
239
+ with(:featured, true)
240
+ end
241
+ end
242
+ end
243
+ connection.should have_last_search_with(
244
+ :bq => [
245
+ 'average_rating_ft:[2\.0 TO *]^2.0',
246
+ 'featured_bs:true^1.5'
247
+ ]
248
+ )
249
+ end
250
+
251
+ it 'sends minimum match parameter from options' do
252
+ search do
253
+ keywords 'great pizza', :minimum_match => 2
254
+ end
255
+ connection.should have_last_search_with(:mm => 2)
256
+ end
257
+
258
+ it 'sends minimum match parameter from DSL' do
259
+ search do
260
+ keywords('great pizza') { minimum_match(2) }
261
+ end
262
+ connection.should have_last_search_with(:mm => 2)
263
+ end
264
+
265
+ it 'sends tiebreaker parameter from options' do
266
+ search do
267
+ keywords 'great pizza', :tie => 0.1
268
+ end
269
+ connection.should have_last_search_with(:tie => 0.1)
270
+ end
271
+
272
+ it 'sends tiebreaker parameter from DSL' do
273
+ search do
274
+ keywords('great pizza') { tie(0.1) }
275
+ end
276
+ connection.should have_last_search_with(:tie => 0.1)
277
+ end
278
+
279
+ it 'sends query phrase slop from options' do
280
+ search do
281
+ keywords 'great pizza', :query_phrase_slop => 2
282
+ end
283
+ connection.should have_last_search_with(:qs => 2)
284
+ end
285
+
286
+ it 'sends query phrase slop from DSL' do
287
+ search do
288
+ keywords('great pizza') { query_phrase_slop(2) }
289
+ end
290
+ connection.should have_last_search_with(:qs => 2)
291
+ end
292
+
293
+ it 'allows specification of a text field that only exists in one type' do
294
+ search Post, Namespaced::Comment do
295
+ keywords 'keywords', :fields => :author_name
296
+ end
297
+ connection.searches.last[:qf].should == 'author_name_text'
298
+ end
299
+
300
+ it 'raises Sunspot::UnrecognizedFieldError for nonexistant fields in keywords' do
301
+ lambda do
302
+ search do
303
+ keywords :text, :fields => :bogus
304
+ end
305
+ end.should raise_error(Sunspot::UnrecognizedFieldError)
306
+ end
307
+
308
+ it 'raises Sunspot::UnrecognizedFieldError if a text field that does not exist for any type is specified' do
309
+ lambda do
310
+ search Post, Namespaced::Comment do
311
+ keywords 'fulltext', :fields => :bogus
312
+ end
313
+ end.should raise_error(Sunspot::UnrecognizedFieldError)
314
+ end
315
+ end