friendlyfashion-thinking-sphinx 2.0.13
Sign up to get free protection for your applications and to get access to all the features.
- data/HISTORY +244 -0
- data/LICENCE +20 -0
- data/README.textile +235 -0
- data/features/abstract_inheritance.feature +10 -0
- data/features/alternate_primary_key.feature +27 -0
- data/features/attribute_transformation.feature +22 -0
- data/features/attribute_updates.feature +77 -0
- data/features/deleting_instances.feature +67 -0
- data/features/direct_attributes.feature +11 -0
- data/features/excerpts.feature +21 -0
- data/features/extensible_delta_indexing.feature +9 -0
- data/features/facets.feature +88 -0
- data/features/facets_across_model.feature +29 -0
- data/features/field_sorting.feature +18 -0
- data/features/handling_edits.feature +94 -0
- data/features/retry_stale_indexes.feature +24 -0
- data/features/searching_across_models.feature +20 -0
- data/features/searching_by_index.feature +40 -0
- data/features/searching_by_model.feature +175 -0
- data/features/searching_with_find_arguments.feature +56 -0
- data/features/sphinx_detection.feature +25 -0
- data/features/sphinx_scopes.feature +68 -0
- data/features/step_definitions/alpha_steps.rb +16 -0
- data/features/step_definitions/beta_steps.rb +7 -0
- data/features/step_definitions/common_steps.rb +201 -0
- data/features/step_definitions/extensible_delta_indexing_steps.rb +7 -0
- data/features/step_definitions/facet_steps.rb +96 -0
- data/features/step_definitions/find_arguments_steps.rb +36 -0
- data/features/step_definitions/gamma_steps.rb +15 -0
- data/features/step_definitions/scope_steps.rb +19 -0
- data/features/step_definitions/search_steps.rb +94 -0
- data/features/step_definitions/sphinx_steps.rb +35 -0
- data/features/sti_searching.feature +19 -0
- data/features/support/env.rb +27 -0
- data/features/support/lib/generic_delta_handler.rb +8 -0
- data/features/thinking_sphinx/database.example.yml +3 -0
- data/features/thinking_sphinx/db/.gitignore +1 -0
- data/features/thinking_sphinx/db/fixtures/alphas.rb +8 -0
- data/features/thinking_sphinx/db/fixtures/authors.rb +1 -0
- data/features/thinking_sphinx/db/fixtures/betas.rb +11 -0
- data/features/thinking_sphinx/db/fixtures/boxes.rb +9 -0
- data/features/thinking_sphinx/db/fixtures/categories.rb +1 -0
- data/features/thinking_sphinx/db/fixtures/cats.rb +3 -0
- data/features/thinking_sphinx/db/fixtures/comments.rb +24 -0
- data/features/thinking_sphinx/db/fixtures/developers.rb +31 -0
- data/features/thinking_sphinx/db/fixtures/dogs.rb +3 -0
- data/features/thinking_sphinx/db/fixtures/extensible_betas.rb +10 -0
- data/features/thinking_sphinx/db/fixtures/foxes.rb +3 -0
- data/features/thinking_sphinx/db/fixtures/gammas.rb +10 -0
- data/features/thinking_sphinx/db/fixtures/music.rb +4 -0
- data/features/thinking_sphinx/db/fixtures/people.rb +1001 -0
- data/features/thinking_sphinx/db/fixtures/post_keywords.txt +1 -0
- data/features/thinking_sphinx/db/fixtures/posts.rb +10 -0
- data/features/thinking_sphinx/db/fixtures/robots.rb +8 -0
- data/features/thinking_sphinx/db/fixtures/tags.rb +27 -0
- data/features/thinking_sphinx/db/migrations/create_alphas.rb +8 -0
- data/features/thinking_sphinx/db/migrations/create_animals.rb +5 -0
- data/features/thinking_sphinx/db/migrations/create_authors.rb +3 -0
- data/features/thinking_sphinx/db/migrations/create_authors_posts.rb +6 -0
- data/features/thinking_sphinx/db/migrations/create_betas.rb +5 -0
- data/features/thinking_sphinx/db/migrations/create_boxes.rb +5 -0
- data/features/thinking_sphinx/db/migrations/create_categories.rb +3 -0
- data/features/thinking_sphinx/db/migrations/create_comments.rb +10 -0
- data/features/thinking_sphinx/db/migrations/create_developers.rb +7 -0
- data/features/thinking_sphinx/db/migrations/create_extensible_betas.rb +5 -0
- data/features/thinking_sphinx/db/migrations/create_gammas.rb +3 -0
- data/features/thinking_sphinx/db/migrations/create_genres.rb +3 -0
- data/features/thinking_sphinx/db/migrations/create_music.rb +6 -0
- data/features/thinking_sphinx/db/migrations/create_people.rb +13 -0
- data/features/thinking_sphinx/db/migrations/create_posts.rb +6 -0
- data/features/thinking_sphinx/db/migrations/create_robots.rb +4 -0
- data/features/thinking_sphinx/db/migrations/create_taggings.rb +5 -0
- data/features/thinking_sphinx/db/migrations/create_tags.rb +4 -0
- data/features/thinking_sphinx/models/alpha.rb +23 -0
- data/features/thinking_sphinx/models/andrew.rb +17 -0
- data/features/thinking_sphinx/models/animal.rb +5 -0
- data/features/thinking_sphinx/models/author.rb +3 -0
- data/features/thinking_sphinx/models/beta.rb +13 -0
- data/features/thinking_sphinx/models/box.rb +8 -0
- data/features/thinking_sphinx/models/cat.rb +3 -0
- data/features/thinking_sphinx/models/category.rb +4 -0
- data/features/thinking_sphinx/models/comment.rb +10 -0
- data/features/thinking_sphinx/models/developer.rb +21 -0
- data/features/thinking_sphinx/models/dog.rb +3 -0
- data/features/thinking_sphinx/models/extensible_beta.rb +9 -0
- data/features/thinking_sphinx/models/fox.rb +5 -0
- data/features/thinking_sphinx/models/gamma.rb +5 -0
- data/features/thinking_sphinx/models/genre.rb +3 -0
- data/features/thinking_sphinx/models/medium.rb +5 -0
- data/features/thinking_sphinx/models/music.rb +10 -0
- data/features/thinking_sphinx/models/person.rb +24 -0
- data/features/thinking_sphinx/models/post.rb +22 -0
- data/features/thinking_sphinx/models/robot.rb +12 -0
- data/features/thinking_sphinx/models/tag.rb +3 -0
- data/features/thinking_sphinx/models/tagging.rb +4 -0
- data/lib/cucumber/thinking_sphinx/external_world.rb +12 -0
- data/lib/cucumber/thinking_sphinx/internal_world.rb +137 -0
- data/lib/cucumber/thinking_sphinx/sql_logger.rb +28 -0
- data/lib/thinking-sphinx.rb +1 -0
- data/lib/thinking_sphinx/action_controller.rb +31 -0
- data/lib/thinking_sphinx/active_record/attribute_updates.rb +53 -0
- data/lib/thinking_sphinx/active_record/collection_proxy.rb +47 -0
- data/lib/thinking_sphinx/active_record/collection_proxy_with_scopes.rb +27 -0
- data/lib/thinking_sphinx/active_record/delta.rb +67 -0
- data/lib/thinking_sphinx/active_record/has_many_association.rb +44 -0
- data/lib/thinking_sphinx/active_record/has_many_association_with_scopes.rb +21 -0
- data/lib/thinking_sphinx/active_record/log_subscriber.rb +61 -0
- data/lib/thinking_sphinx/active_record/scopes.rb +110 -0
- data/lib/thinking_sphinx/active_record.rb +386 -0
- data/lib/thinking_sphinx/adapters/abstract_adapter.rb +87 -0
- data/lib/thinking_sphinx/adapters/mysql_adapter.rb +62 -0
- data/lib/thinking_sphinx/adapters/postgresql_adapter.rb +188 -0
- data/lib/thinking_sphinx/association.rb +230 -0
- data/lib/thinking_sphinx/attribute.rb +405 -0
- data/lib/thinking_sphinx/auto_version.rb +40 -0
- data/lib/thinking_sphinx/bundled_search.rb +44 -0
- data/lib/thinking_sphinx/class_facet.rb +20 -0
- data/lib/thinking_sphinx/configuration.rb +375 -0
- data/lib/thinking_sphinx/context.rb +76 -0
- data/lib/thinking_sphinx/core/string.rb +15 -0
- data/lib/thinking_sphinx/deltas/default_delta.rb +62 -0
- data/lib/thinking_sphinx/deltas.rb +28 -0
- data/lib/thinking_sphinx/deploy/capistrano.rb +99 -0
- data/lib/thinking_sphinx/excerpter.rb +23 -0
- data/lib/thinking_sphinx/facet.rb +135 -0
- data/lib/thinking_sphinx/facet_search.rb +170 -0
- data/lib/thinking_sphinx/field.rb +98 -0
- data/lib/thinking_sphinx/index/builder.rb +315 -0
- data/lib/thinking_sphinx/index/faux_column.rb +118 -0
- data/lib/thinking_sphinx/index.rb +159 -0
- data/lib/thinking_sphinx/join.rb +37 -0
- data/lib/thinking_sphinx/property.rb +187 -0
- data/lib/thinking_sphinx/railtie.rb +43 -0
- data/lib/thinking_sphinx/search.rb +1061 -0
- data/lib/thinking_sphinx/search_methods.rb +439 -0
- data/lib/thinking_sphinx/sinatra.rb +7 -0
- data/lib/thinking_sphinx/source/internal_properties.rb +51 -0
- data/lib/thinking_sphinx/source/sql.rb +174 -0
- data/lib/thinking_sphinx/source.rb +194 -0
- data/lib/thinking_sphinx/tasks.rb +142 -0
- data/lib/thinking_sphinx/test.rb +55 -0
- data/lib/thinking_sphinx/version.rb +3 -0
- data/lib/thinking_sphinx.rb +297 -0
- data/spec/fixtures/data.sql +32 -0
- data/spec/fixtures/database.yml.default +3 -0
- data/spec/fixtures/models.rb +164 -0
- data/spec/fixtures/structure.sql +146 -0
- data/spec/spec_helper.rb +61 -0
- data/spec/sphinx_helper.rb +60 -0
- data/spec/support/rails.rb +25 -0
- data/spec/thinking_sphinx/active_record/delta_spec.rb +122 -0
- data/spec/thinking_sphinx/active_record/has_many_association_spec.rb +173 -0
- data/spec/thinking_sphinx/active_record/scopes_spec.rb +176 -0
- data/spec/thinking_sphinx/active_record_spec.rb +573 -0
- data/spec/thinking_sphinx/adapters/abstract_adapter_spec.rb +145 -0
- data/spec/thinking_sphinx/association_spec.rb +250 -0
- data/spec/thinking_sphinx/attribute_spec.rb +552 -0
- data/spec/thinking_sphinx/auto_version_spec.rb +103 -0
- data/spec/thinking_sphinx/configuration_spec.rb +326 -0
- data/spec/thinking_sphinx/context_spec.rb +126 -0
- data/spec/thinking_sphinx/core/array_spec.rb +9 -0
- data/spec/thinking_sphinx/core/string_spec.rb +9 -0
- data/spec/thinking_sphinx/excerpter_spec.rb +49 -0
- data/spec/thinking_sphinx/facet_search_spec.rb +176 -0
- data/spec/thinking_sphinx/facet_spec.rb +359 -0
- data/spec/thinking_sphinx/field_spec.rb +127 -0
- data/spec/thinking_sphinx/index/builder_spec.rb +532 -0
- data/spec/thinking_sphinx/index/faux_column_spec.rb +36 -0
- data/spec/thinking_sphinx/index_spec.rb +189 -0
- data/spec/thinking_sphinx/search_methods_spec.rb +156 -0
- data/spec/thinking_sphinx/search_spec.rb +1455 -0
- data/spec/thinking_sphinx/source_spec.rb +267 -0
- data/spec/thinking_sphinx/test_spec.rb +20 -0
- data/spec/thinking_sphinx_spec.rb +204 -0
- metadata +524 -0
@@ -0,0 +1,532 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe ThinkingSphinx::Index::Builder do
|
4
|
+
let(:internal_attribute_count) {
|
5
|
+
Riddle.loaded_version.to_i < 2 ? 3 : 4
|
6
|
+
}
|
7
|
+
describe ".generate without source scope" do
|
8
|
+
before :each do
|
9
|
+
@index = ThinkingSphinx::Index::Builder.generate(Person) do
|
10
|
+
indexes first_name, last_name
|
11
|
+
has birthday
|
12
|
+
has id, :as => :internal_id
|
13
|
+
|
14
|
+
set_property :sql_range_step => 1000
|
15
|
+
|
16
|
+
where "birthday <= NOW()"
|
17
|
+
group_by "first_name"
|
18
|
+
end
|
19
|
+
|
20
|
+
@source = @index.sources.first
|
21
|
+
end
|
22
|
+
|
23
|
+
it "should return an index" do
|
24
|
+
@index.should be_a_kind_of(ThinkingSphinx::Index)
|
25
|
+
end
|
26
|
+
|
27
|
+
it "should have one source for the index" do
|
28
|
+
@index.sources.length.should == 1
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should have two fields" do
|
32
|
+
@source.fields.length.should == 2
|
33
|
+
@source.fields[0].unique_name.should == :first_name
|
34
|
+
@source.fields[1].unique_name.should == :last_name
|
35
|
+
end
|
36
|
+
|
37
|
+
it "should have two attributes alongside the internal ones" do
|
38
|
+
@source.attributes.length.should == 2 + internal_attribute_count
|
39
|
+
@source.attributes[internal_attribute_count].unique_name.should == :birthday
|
40
|
+
@source.attributes[1 + internal_attribute_count].unique_name.should == :internal_id
|
41
|
+
end
|
42
|
+
|
43
|
+
it "should have one condition" do
|
44
|
+
@source.conditions.length.should == 1
|
45
|
+
@source.conditions.first.should == "birthday <= NOW()"
|
46
|
+
end
|
47
|
+
|
48
|
+
it "should have one grouping" do
|
49
|
+
@source.groupings.length.should == 1
|
50
|
+
@source.groupings.first.should == "first_name"
|
51
|
+
end
|
52
|
+
|
53
|
+
it "should have one option" do
|
54
|
+
@source.options.length.should == 1
|
55
|
+
@source.options[:sql_range_step].should == 1000
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe 'aliased field' do
|
60
|
+
before :each do
|
61
|
+
@index = ThinkingSphinx::Index::Builder.generate(Person) do
|
62
|
+
indexes first_name, :as => 'name'
|
63
|
+
end
|
64
|
+
|
65
|
+
@source = @index.sources.first
|
66
|
+
end
|
67
|
+
|
68
|
+
it "should store the alias as a symbol for consistency" do
|
69
|
+
@source.fields.last.unique_name.should == :name
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
describe 'aliased attribute' do
|
74
|
+
before :each do
|
75
|
+
@index = ThinkingSphinx::Index::Builder.generate(Person) do
|
76
|
+
indexes first_name
|
77
|
+
has :id, :as => 'real_id'
|
78
|
+
end
|
79
|
+
|
80
|
+
@source = @index.sources.first
|
81
|
+
end
|
82
|
+
|
83
|
+
it "should store the alias as a symbol for consistency" do
|
84
|
+
@source.attributes.last.unique_name.should == :real_id
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
describe "sortable field" do
|
89
|
+
before :each do
|
90
|
+
@index = ThinkingSphinx::Index::Builder.generate(Person) do
|
91
|
+
indexes first_name, :sortable => true
|
92
|
+
end
|
93
|
+
|
94
|
+
@source = @index.sources.first
|
95
|
+
end
|
96
|
+
|
97
|
+
it "should have one field" do
|
98
|
+
@source.fields.length.should == 1
|
99
|
+
end
|
100
|
+
|
101
|
+
it "should have one attribute alongside the internal ones" do
|
102
|
+
@source.attributes.length.should == 1 + internal_attribute_count
|
103
|
+
end
|
104
|
+
|
105
|
+
it "should set the attribute name to have the _sort suffix" do
|
106
|
+
@source.attributes.last.unique_name.should == :first_name_sort
|
107
|
+
end
|
108
|
+
|
109
|
+
it "should set the attribute column to be the same as the field" do
|
110
|
+
@source.attributes.last.columns.length.should == 1
|
111
|
+
@source.attributes.last.columns.first.__name.should == :first_name
|
112
|
+
end
|
113
|
+
end
|
114
|
+
|
115
|
+
describe '#join' do
|
116
|
+
before :each do
|
117
|
+
@index = ThinkingSphinx::Index::Builder.generate(Person) do
|
118
|
+
indexes first_name
|
119
|
+
|
120
|
+
join contacts
|
121
|
+
end
|
122
|
+
|
123
|
+
@source = @index.sources.first
|
124
|
+
end
|
125
|
+
|
126
|
+
it "should include the explicit join" do
|
127
|
+
@source.joins.length.should == 1
|
128
|
+
end
|
129
|
+
end
|
130
|
+
|
131
|
+
describe "faceted field" do
|
132
|
+
before :each do
|
133
|
+
@index = ThinkingSphinx::Index::Builder.generate(Person) do
|
134
|
+
indexes first_name, :facet => true
|
135
|
+
end
|
136
|
+
|
137
|
+
@source = @index.sources.first
|
138
|
+
end
|
139
|
+
|
140
|
+
after :each do
|
141
|
+
Person.sphinx_facets.delete_at(-1)
|
142
|
+
end
|
143
|
+
|
144
|
+
it "should have one field" do
|
145
|
+
@source.fields.length.should == 1
|
146
|
+
end
|
147
|
+
|
148
|
+
it "should have one attribute alongside the internal ones" do
|
149
|
+
@source.attributes.length.should == 1 + internal_attribute_count
|
150
|
+
end
|
151
|
+
|
152
|
+
it "should set the attribute name to have the _facet suffix" do
|
153
|
+
@source.attributes.last.unique_name.should == :first_name_facet
|
154
|
+
end
|
155
|
+
|
156
|
+
it "should set the attribute type to integer" do
|
157
|
+
@source.attributes.last.type.should == :integer
|
158
|
+
end
|
159
|
+
|
160
|
+
it "should set the attribute column to be the same as the field" do
|
161
|
+
@source.attributes.last.columns.length.should == 1
|
162
|
+
@source.attributes.last.columns.first.__name.should == :first_name
|
163
|
+
end
|
164
|
+
end
|
165
|
+
|
166
|
+
describe "faceted integer attribute" do
|
167
|
+
before :each do
|
168
|
+
@index = ThinkingSphinx::Index::Builder.generate(Alpha) do
|
169
|
+
indexes :name
|
170
|
+
has value, :facet => true
|
171
|
+
end
|
172
|
+
|
173
|
+
@source = @index.sources.first
|
174
|
+
end
|
175
|
+
|
176
|
+
after :each do
|
177
|
+
Alpha.sphinx_facets.delete_at(-1)
|
178
|
+
end
|
179
|
+
|
180
|
+
it "should have just one attribute alongside the internal ones" do
|
181
|
+
@source.attributes.length.should == 1 + internal_attribute_count
|
182
|
+
end
|
183
|
+
end
|
184
|
+
|
185
|
+
describe "faceted timestamp attribute" do
|
186
|
+
before :each do
|
187
|
+
@index = ThinkingSphinx::Index::Builder.generate(Person) do
|
188
|
+
indexes first_name
|
189
|
+
has birthday, :facet => true
|
190
|
+
end
|
191
|
+
|
192
|
+
@source = @index.sources.first
|
193
|
+
end
|
194
|
+
|
195
|
+
after :each do
|
196
|
+
Person.sphinx_facets.delete_at(-1)
|
197
|
+
end
|
198
|
+
|
199
|
+
it "should have just one attribute alongside the internal ones" do
|
200
|
+
@source.attributes.length.should == 1 + internal_attribute_count
|
201
|
+
end
|
202
|
+
end
|
203
|
+
|
204
|
+
describe "faceted boolean attribute" do
|
205
|
+
before :each do
|
206
|
+
@index = ThinkingSphinx::Index::Builder.generate(Beta) do
|
207
|
+
indexes :name
|
208
|
+
has delta, :facet => true
|
209
|
+
end
|
210
|
+
|
211
|
+
@source = @index.sources.first
|
212
|
+
end
|
213
|
+
|
214
|
+
after :each do
|
215
|
+
Beta.sphinx_facets.delete_at(-1)
|
216
|
+
end
|
217
|
+
|
218
|
+
it "should have just one attribute alongside the internal ones" do
|
219
|
+
@source.attributes.length.should == 1 + internal_attribute_count
|
220
|
+
end
|
221
|
+
end
|
222
|
+
|
223
|
+
describe "faceted float attribute" do
|
224
|
+
before :each do
|
225
|
+
@index = ThinkingSphinx::Index::Builder.generate(Alpha) do
|
226
|
+
indexes :name
|
227
|
+
has cost, :facet => true
|
228
|
+
end
|
229
|
+
|
230
|
+
@source = @index.sources.first
|
231
|
+
end
|
232
|
+
|
233
|
+
after :each do
|
234
|
+
Alpha.sphinx_facets.delete_at(-1)
|
235
|
+
end
|
236
|
+
|
237
|
+
it "should have just one attribute alongside the internal ones" do
|
238
|
+
@source.attributes.length.should == 1 + internal_attribute_count
|
239
|
+
end
|
240
|
+
end
|
241
|
+
|
242
|
+
describe "faceted string attribute" do
|
243
|
+
before :each do
|
244
|
+
@index = ThinkingSphinx::Index::Builder.generate(Person) do
|
245
|
+
indexes first_name
|
246
|
+
has last_name, :facet => true
|
247
|
+
end
|
248
|
+
|
249
|
+
@source = @index.sources.first
|
250
|
+
end
|
251
|
+
|
252
|
+
after :each do
|
253
|
+
Person.sphinx_facets.delete_at(-1)
|
254
|
+
end
|
255
|
+
|
256
|
+
it "should have two attributes alongside the internal ones" do
|
257
|
+
@source.attributes.length.should == 2 + internal_attribute_count
|
258
|
+
end
|
259
|
+
|
260
|
+
it "should set the facet attribute name to have the _facet suffix" do
|
261
|
+
@source.attributes.last.unique_name.should == :last_name_facet
|
262
|
+
end
|
263
|
+
|
264
|
+
it "should set the attribute type to integer" do
|
265
|
+
@source.attributes.last.type.should == :integer
|
266
|
+
end
|
267
|
+
|
268
|
+
it "should set the attribute column to be the same as the field" do
|
269
|
+
@source.attributes.last.columns.length.should == 1
|
270
|
+
@source.attributes.last.columns.first.__name.should == :last_name
|
271
|
+
end
|
272
|
+
end
|
273
|
+
|
274
|
+
describe 'faceted manual MVA' do
|
275
|
+
before :each do
|
276
|
+
@index = ThinkingSphinx::Index::Builder.generate(Person) do
|
277
|
+
indexes first_name
|
278
|
+
has 'SQL STATEMENT', :type => :multi, :as => :sql, :facet => true
|
279
|
+
end
|
280
|
+
|
281
|
+
@source = @index.sources.first
|
282
|
+
end
|
283
|
+
|
284
|
+
after :each do
|
285
|
+
Person.sphinx_facets.delete_at(-1)
|
286
|
+
end
|
287
|
+
|
288
|
+
it "should have two attributes alongside the internal ones" do
|
289
|
+
@source.attributes.length.should == 2 + internal_attribute_count
|
290
|
+
end
|
291
|
+
|
292
|
+
it "should set the facet attribute name to have the _facet suffix" do
|
293
|
+
@source.attributes.last.unique_name.should == :sql_facet
|
294
|
+
end
|
295
|
+
|
296
|
+
it "should keep the original attribute's name set as requested" do
|
297
|
+
@source.attributes[-2].unique_name.should == :sql
|
298
|
+
end
|
299
|
+
|
300
|
+
it "should set the attribute type to multi" do
|
301
|
+
@source.attributes.last.type.should == :multi
|
302
|
+
end
|
303
|
+
|
304
|
+
it "should set the attribute column to be the same as the field" do
|
305
|
+
@source.attributes.last.columns.length.should == 1
|
306
|
+
@source.attributes.last.columns.first.__name.should == 'SQL STATEMENT'
|
307
|
+
end
|
308
|
+
end
|
309
|
+
|
310
|
+
describe 'faceted MVA field' do
|
311
|
+
before :each do
|
312
|
+
@index = ThinkingSphinx::Index::Builder.generate(Person) do
|
313
|
+
indexes tags(:name), :as => :tags, :facet => true
|
314
|
+
end
|
315
|
+
|
316
|
+
@source = @index.sources.first
|
317
|
+
end
|
318
|
+
|
319
|
+
after :each do
|
320
|
+
Person.sphinx_facets.delete_at(-1)
|
321
|
+
end
|
322
|
+
|
323
|
+
it "should have one field" do
|
324
|
+
@source.fields.length.should == 1
|
325
|
+
end
|
326
|
+
|
327
|
+
it "should have one attribute alongside the internal ones" do
|
328
|
+
@source.attributes.length.should == 1 + internal_attribute_count
|
329
|
+
end
|
330
|
+
|
331
|
+
it "should set the attribute name to have the _facet suffix" do
|
332
|
+
@source.attributes.last.unique_name.should == :tags_facet
|
333
|
+
end
|
334
|
+
|
335
|
+
it "should set the attribute type to multi" do
|
336
|
+
@source.attributes.last.type.should == :multi
|
337
|
+
end
|
338
|
+
|
339
|
+
it "should set the attribute column to be the same as the field" do
|
340
|
+
@source.attributes.last.columns.length.should == 1
|
341
|
+
@source.attributes.last.columns.first.__name.should == :name
|
342
|
+
end
|
343
|
+
end
|
344
|
+
|
345
|
+
describe "no fields" do
|
346
|
+
it "should raise an exception" do
|
347
|
+
lambda {
|
348
|
+
ThinkingSphinx::Index::Builder.generate(Person) do
|
349
|
+
#
|
350
|
+
end
|
351
|
+
}.should raise_error
|
352
|
+
end
|
353
|
+
end
|
354
|
+
|
355
|
+
describe "explicit source" do
|
356
|
+
before :each do
|
357
|
+
@index = ThinkingSphinx::Index::Builder.generate(Person) do
|
358
|
+
define_source do
|
359
|
+
indexes first_name, last_name
|
360
|
+
has birthday
|
361
|
+
has id, :as => :internal_id
|
362
|
+
|
363
|
+
set_property :delta => true
|
364
|
+
|
365
|
+
where "birthday <= NOW()"
|
366
|
+
group_by "first_name"
|
367
|
+
end
|
368
|
+
end
|
369
|
+
|
370
|
+
@source = @index.sources.first
|
371
|
+
end
|
372
|
+
|
373
|
+
it "should return an index" do
|
374
|
+
@index.should be_a_kind_of(ThinkingSphinx::Index)
|
375
|
+
end
|
376
|
+
|
377
|
+
it "should have one source for the index" do
|
378
|
+
@index.sources.length.should == 1
|
379
|
+
end
|
380
|
+
|
381
|
+
it "should have two fields" do
|
382
|
+
@source.fields.length.should == 2
|
383
|
+
@source.fields[0].unique_name.should == :first_name
|
384
|
+
@source.fields[1].unique_name.should == :last_name
|
385
|
+
end
|
386
|
+
|
387
|
+
it "should have two attributes alongside the internal ones" do
|
388
|
+
@source.attributes.length.should == 2 + internal_attribute_count
|
389
|
+
@source.attributes[internal_attribute_count].unique_name.should == :birthday
|
390
|
+
@source.attributes[1 + internal_attribute_count].unique_name.should == :internal_id
|
391
|
+
end
|
392
|
+
end
|
393
|
+
|
394
|
+
describe "multiple sources" do
|
395
|
+
before :each do
|
396
|
+
@index = ThinkingSphinx::Index::Builder.generate(Person) do
|
397
|
+
define_source do
|
398
|
+
indexes first_name
|
399
|
+
has birthday
|
400
|
+
end
|
401
|
+
|
402
|
+
define_source do
|
403
|
+
indexes last_name
|
404
|
+
has :id, :as => :internal_id
|
405
|
+
end
|
406
|
+
end
|
407
|
+
end
|
408
|
+
|
409
|
+
it "should have two sources" do
|
410
|
+
@index.sources.length.should == 2
|
411
|
+
end
|
412
|
+
|
413
|
+
it "should have two fields" do
|
414
|
+
@index.fields.length.should == 2
|
415
|
+
end
|
416
|
+
|
417
|
+
it "should have one field in each source" do
|
418
|
+
@index.sources.each do |source|
|
419
|
+
source.fields.length.should == 1
|
420
|
+
end
|
421
|
+
end
|
422
|
+
|
423
|
+
it "should have two attributes alongside the six internal ones" do
|
424
|
+
@index.attributes.length.should == 2 + (internal_attribute_count * 2)
|
425
|
+
end
|
426
|
+
|
427
|
+
it "should have one attribute in each source alongside the internal ones" do
|
428
|
+
@index.sources.each do |source|
|
429
|
+
source.attributes.length.should == 1 + internal_attribute_count
|
430
|
+
end
|
431
|
+
end
|
432
|
+
end
|
433
|
+
|
434
|
+
describe "multiple local indexes" do
|
435
|
+
before :each do
|
436
|
+
@index = ThinkingSphinx::Index::Builder.generate(Person) do
|
437
|
+
indexes first_name
|
438
|
+
|
439
|
+
use_local_index :other_local_index_1
|
440
|
+
use_local_indices "other_local_index_2", "other_local_index_3"
|
441
|
+
end
|
442
|
+
end
|
443
|
+
|
444
|
+
it "should have three additional indexes" do
|
445
|
+
@index.additional_indices.length.should == 3
|
446
|
+
end
|
447
|
+
|
448
|
+
it "should append _core to the name of each local index" do
|
449
|
+
@index.additional_indices[0].should eql("other_local_index_1_core")
|
450
|
+
@index.additional_indices[1].should eql("other_local_index_2_core")
|
451
|
+
@index.additional_indices[2].should eql("other_local_index_3_core")
|
452
|
+
end
|
453
|
+
end
|
454
|
+
|
455
|
+
describe "index options" do
|
456
|
+
before :each do
|
457
|
+
@index = ThinkingSphinx::Index::Builder.generate(Person) do
|
458
|
+
indexes first_name
|
459
|
+
|
460
|
+
set_property :charset_type => "utf16"
|
461
|
+
set_property :group_concat_max_len => 1024
|
462
|
+
end
|
463
|
+
end
|
464
|
+
|
465
|
+
it "should store the index setting for the index" do
|
466
|
+
@index.local_options[:charset_type].should == "utf16"
|
467
|
+
end
|
468
|
+
|
469
|
+
it "should store non-Sphinx settings for the index" do
|
470
|
+
@index.local_options[:group_concat_max_len].should == 1024
|
471
|
+
end
|
472
|
+
end
|
473
|
+
|
474
|
+
describe "delta options" do
|
475
|
+
before :each do
|
476
|
+
@index = ThinkingSphinx::Index::Builder.generate(Person) do
|
477
|
+
indexes first_name
|
478
|
+
|
479
|
+
set_property :delta => true
|
480
|
+
end
|
481
|
+
end
|
482
|
+
|
483
|
+
it "should not keep the delta setting in source options" do
|
484
|
+
@index.sources.first.options.should be_empty
|
485
|
+
end
|
486
|
+
|
487
|
+
it "should not keep the delta setting in index options" do
|
488
|
+
@index.local_options.should be_empty
|
489
|
+
end
|
490
|
+
|
491
|
+
it "should set the index delta object set" do
|
492
|
+
@index.delta_object.should be_a_kind_of(ThinkingSphinx::Deltas::DefaultDelta)
|
493
|
+
end
|
494
|
+
end
|
495
|
+
|
496
|
+
context 'index options' do
|
497
|
+
before :each do
|
498
|
+
@index = ThinkingSphinx::Index::Builder.generate(Person) do
|
499
|
+
indexes first_name
|
500
|
+
|
501
|
+
set_property :index_exact_words => true
|
502
|
+
end
|
503
|
+
end
|
504
|
+
|
505
|
+
it "should track the index_exact_words option to the index" do
|
506
|
+
@index.local_options[:index_exact_words].should be_true
|
507
|
+
end
|
508
|
+
end
|
509
|
+
|
510
|
+
context 'with an explicit name' do
|
511
|
+
it "should set the index's name using the provided value" do
|
512
|
+
index = ThinkingSphinx::Index::Builder.generate(Person, 'custom') do
|
513
|
+
indexes first_name
|
514
|
+
end
|
515
|
+
|
516
|
+
index.name.should == 'custom'
|
517
|
+
end
|
518
|
+
end
|
519
|
+
|
520
|
+
describe "sanitize_sql" do
|
521
|
+
def index
|
522
|
+
@index ||= ThinkingSphinx::Index::Builder.generate(Person) do
|
523
|
+
indexes first_name, last_name
|
524
|
+
where sanitize_sql(["gender = ?", "female"])
|
525
|
+
end
|
526
|
+
end
|
527
|
+
|
528
|
+
it "should be aliased to ActiveRecord::Base.sanitize_sql" do
|
529
|
+
index.sources.first.conditions.first.should == index.model.send(:sanitize_sql, ["gender = ?", "female"])
|
530
|
+
end
|
531
|
+
end
|
532
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe ThinkingSphinx::Index::FauxColumn do
|
4
|
+
describe "coerce class method" do
|
5
|
+
before :each do
|
6
|
+
@column = stub('column')
|
7
|
+
ThinkingSphinx::Index::FauxColumn.stub!(:new => @column)
|
8
|
+
end
|
9
|
+
|
10
|
+
it "should return a single faux column if passed a string" do
|
11
|
+
ThinkingSphinx::Index::FauxColumn.coerce("string").should == @column
|
12
|
+
end
|
13
|
+
|
14
|
+
it "should return a single faux column if passed a symbol" do
|
15
|
+
ThinkingSphinx::Index::FauxColumn.coerce(:string).should == @column
|
16
|
+
end
|
17
|
+
|
18
|
+
it "should return an array of faux columns if passed an array of strings" do
|
19
|
+
ThinkingSphinx::Index::FauxColumn.coerce(["one", "two"]).should == [
|
20
|
+
@column, @column
|
21
|
+
]
|
22
|
+
end
|
23
|
+
|
24
|
+
it "should return an array of faux columns if passed an array of symbols" do
|
25
|
+
ThinkingSphinx::Index::FauxColumn.coerce([:one, :two]).should == [
|
26
|
+
@column, @column
|
27
|
+
]
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
describe '#to_ary' do
|
32
|
+
it "should return an array with the instance inside it" do
|
33
|
+
subject.to_ary.should == [subject]
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|