thinking-sphinx 2.1.0 → 3.0.0.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (352) hide show
  1. data/.gitignore +8 -0
  2. data/.travis.yml +13 -0
  3. data/Appraisals +7 -0
  4. data/Gemfile +10 -0
  5. data/HISTORY +2 -267
  6. data/LICENCE +1 -1
  7. data/README.textile +194 -226
  8. data/Rakefile +24 -0
  9. data/gemfiles/.gitignore +1 -0
  10. data/gemfiles/rails_3_1.gemfile +11 -0
  11. data/gemfiles/rails_3_2.gemfile +11 -0
  12. data/lib/thinking-sphinx.rb +1 -1
  13. data/lib/thinking_sphinx.rb +34 -292
  14. data/lib/thinking_sphinx/active_record.rb +22 -383
  15. data/lib/thinking_sphinx/active_record/association.rb +9 -0
  16. data/lib/thinking_sphinx/active_record/association_proxy.rb +68 -0
  17. data/lib/thinking_sphinx/active_record/associations.rb +68 -0
  18. data/lib/thinking_sphinx/active_record/attribute.rb +20 -0
  19. data/lib/thinking_sphinx/active_record/attribute/sphinx_presenter.rb +32 -0
  20. data/lib/thinking_sphinx/active_record/attribute/type.rb +79 -0
  21. data/lib/thinking_sphinx/active_record/attribute/values.rb +18 -0
  22. data/lib/thinking_sphinx/active_record/base.rb +36 -0
  23. data/lib/thinking_sphinx/active_record/callbacks/delete_callbacks.rb +31 -0
  24. data/lib/thinking_sphinx/active_record/callbacks/delta_callbacks.rb +55 -0
  25. data/lib/thinking_sphinx/active_record/callbacks/update_callbacks.rb +59 -0
  26. data/lib/thinking_sphinx/active_record/column.rb +30 -0
  27. data/lib/thinking_sphinx/active_record/database_adapters.rb +51 -0
  28. data/lib/thinking_sphinx/active_record/database_adapters/abstract_adapter.rb +13 -0
  29. data/lib/thinking_sphinx/active_record/database_adapters/mysql_adapter.rb +23 -0
  30. data/lib/thinking_sphinx/active_record/database_adapters/postgresql_adapter.rb +25 -0
  31. data/lib/thinking_sphinx/active_record/field.rb +11 -0
  32. data/lib/thinking_sphinx/active_record/index.rb +55 -0
  33. data/lib/thinking_sphinx/active_record/interpreter.rb +47 -0
  34. data/lib/thinking_sphinx/active_record/log_subscriber.rb +10 -58
  35. data/lib/thinking_sphinx/active_record/property.rb +28 -0
  36. data/lib/thinking_sphinx/active_record/property_sql_presenter.rb +60 -0
  37. data/lib/thinking_sphinx/active_record/sql_builder.rb +159 -0
  38. data/lib/thinking_sphinx/active_record/sql_source.rb +138 -0
  39. data/lib/thinking_sphinx/active_record/sql_source/template.rb +46 -0
  40. data/lib/thinking_sphinx/batched_search.rb +26 -0
  41. data/lib/thinking_sphinx/callbacks.rb +15 -0
  42. data/lib/thinking_sphinx/configuration.rb +80 -331
  43. data/lib/thinking_sphinx/configuration/consistent_ids.rb +31 -0
  44. data/lib/thinking_sphinx/configuration/defaults.rb +5 -0
  45. data/lib/thinking_sphinx/core.rb +6 -0
  46. data/lib/thinking_sphinx/core/index.rb +68 -0
  47. data/lib/thinking_sphinx/core/interpreter.rb +19 -0
  48. data/lib/thinking_sphinx/deltas.rb +35 -26
  49. data/lib/thinking_sphinx/deltas/default_delta.rb +56 -56
  50. data/lib/thinking_sphinx/excerpter.rb +23 -21
  51. data/lib/thinking_sphinx/facet.rb +22 -127
  52. data/lib/thinking_sphinx/facet_search.rb +95 -162
  53. data/lib/thinking_sphinx/index.rb +39 -143
  54. data/lib/thinking_sphinx/index_set.rb +51 -0
  55. data/lib/thinking_sphinx/masks.rb +8 -0
  56. data/lib/thinking_sphinx/masks/group_enumerators_mask.rb +23 -0
  57. data/lib/thinking_sphinx/masks/pagination_mask.rb +60 -0
  58. data/lib/thinking_sphinx/masks/scopes_mask.rb +35 -0
  59. data/lib/thinking_sphinx/masks/weight_enumerator_mask.rb +11 -0
  60. data/lib/thinking_sphinx/middlewares.rb +36 -0
  61. data/lib/thinking_sphinx/middlewares/active_record_translator.rb +73 -0
  62. data/lib/thinking_sphinx/middlewares/geographer.rb +53 -0
  63. data/lib/thinking_sphinx/middlewares/glazier.rb +39 -0
  64. data/lib/thinking_sphinx/middlewares/ids_only.rb +13 -0
  65. data/lib/thinking_sphinx/middlewares/inquirer.rb +62 -0
  66. data/lib/thinking_sphinx/middlewares/middleware.rb +9 -0
  67. data/lib/thinking_sphinx/middlewares/sphinxql.rb +149 -0
  68. data/lib/thinking_sphinx/middlewares/stale_id_checker.rb +45 -0
  69. data/lib/thinking_sphinx/middlewares/stale_id_filter.rb +46 -0
  70. data/lib/thinking_sphinx/panes.rb +8 -0
  71. data/lib/thinking_sphinx/panes/attributes_pane.rb +9 -0
  72. data/lib/thinking_sphinx/panes/distance_pane.rb +13 -0
  73. data/lib/thinking_sphinx/panes/excerpts_pane.rb +37 -0
  74. data/lib/thinking_sphinx/panes/weight_pane.rb +9 -0
  75. data/lib/thinking_sphinx/railtie.rb +6 -40
  76. data/lib/thinking_sphinx/rake_interface.rb +47 -0
  77. data/lib/thinking_sphinx/real_time.rb +11 -0
  78. data/lib/thinking_sphinx/real_time/attribute.rb +5 -0
  79. data/lib/thinking_sphinx/real_time/callbacks/real_time_callbacks.rb +48 -0
  80. data/lib/thinking_sphinx/real_time/field.rb +3 -0
  81. data/lib/thinking_sphinx/real_time/index.rb +47 -0
  82. data/lib/thinking_sphinx/real_time/index/template.rb +33 -0
  83. data/lib/thinking_sphinx/real_time/interpreter.rb +23 -0
  84. data/lib/thinking_sphinx/real_time/property.rb +16 -0
  85. data/lib/thinking_sphinx/scopes.rb +22 -0
  86. data/lib/thinking_sphinx/search.rb +90 -1028
  87. data/lib/thinking_sphinx/search/batch_inquirer.rb +27 -0
  88. data/lib/thinking_sphinx/search/context.rb +26 -0
  89. data/lib/thinking_sphinx/search/glaze.rb +32 -0
  90. data/lib/thinking_sphinx/search/merger.rb +24 -0
  91. data/lib/thinking_sphinx/search/query.rb +43 -0
  92. data/lib/thinking_sphinx/search/stale_ids_exception.rb +11 -0
  93. data/lib/thinking_sphinx/search/translator.rb +50 -0
  94. data/lib/thinking_sphinx/tasks.rb +22 -125
  95. data/lib/thinking_sphinx/test.rb +9 -19
  96. data/sketchpad.rb +58 -0
  97. data/spec/acceptance/association_scoping_spec.rb +23 -0
  98. data/spec/acceptance/attribute_access_spec.rb +39 -0
  99. data/spec/acceptance/attribute_updates_spec.rb +16 -0
  100. data/spec/acceptance/batch_searching_spec.rb +21 -0
  101. data/spec/acceptance/big_integers_spec.rb +27 -0
  102. data/spec/acceptance/excerpts_spec.rb +14 -0
  103. data/spec/acceptance/facets_spec.rb +122 -0
  104. data/spec/acceptance/geosearching_spec.rb +39 -0
  105. data/spec/acceptance/grouping_by_attributes_spec.rb +77 -0
  106. data/spec/acceptance/paginating_search_results_spec.rb +24 -0
  107. data/spec/acceptance/remove_deleted_records_spec.rb +23 -0
  108. data/spec/acceptance/search_counts_spec.rb +18 -0
  109. data/spec/acceptance/search_for_just_ids_spec.rb +19 -0
  110. data/spec/acceptance/searching_across_models_spec.rb +28 -0
  111. data/spec/acceptance/searching_on_fields_spec.rb +56 -0
  112. data/spec/acceptance/searching_with_filters_spec.rb +109 -0
  113. data/spec/acceptance/searching_with_sti_spec.rb +55 -0
  114. data/spec/acceptance/searching_within_a_model_spec.rb +52 -0
  115. data/spec/acceptance/sorting_search_results_spec.rb +41 -0
  116. data/spec/acceptance/spec_helper.rb +4 -0
  117. data/spec/acceptance/specifying_sql_spec.rb +62 -0
  118. data/spec/acceptance/sphinx_scopes_spec.rb +49 -0
  119. data/spec/acceptance/sql_deltas_spec.rb +43 -0
  120. data/spec/acceptance/support/database_cleaner.rb +11 -0
  121. data/spec/acceptance/support/sphinx_controller.rb +39 -0
  122. data/spec/acceptance/support/sphinx_helpers.rb +24 -0
  123. data/spec/acceptance/suspended_deltas_spec.rb +20 -0
  124. data/spec/internal/.gitignore +1 -0
  125. data/spec/internal/app/indices/animal_index.rb +3 -0
  126. data/spec/internal/app/indices/article_index.rb +24 -0
  127. data/spec/internal/app/indices/book_index.rb +8 -0
  128. data/spec/internal/app/indices/city_index.rb +6 -0
  129. data/spec/internal/app/indices/product_index.rb +3 -0
  130. data/spec/internal/app/indices/tee_index.rb +4 -0
  131. data/spec/internal/app/indices/user_index.rb +5 -0
  132. data/spec/internal/app/models/animal.rb +2 -0
  133. data/spec/internal/app/models/article.rb +5 -0
  134. data/spec/internal/app/models/bird.rb +2 -0
  135. data/spec/internal/app/models/book.rb +11 -0
  136. data/spec/internal/app/models/city.rb +2 -0
  137. data/spec/internal/app/models/colour.rb +3 -0
  138. data/spec/internal/app/models/flightless_bird.rb +2 -0
  139. data/spec/internal/app/models/mammal.rb +2 -0
  140. data/spec/internal/app/models/product.rb +3 -0
  141. data/spec/internal/app/models/tag.rb +4 -0
  142. data/{features/thinking_sphinx → spec/internal/app}/models/tagging.rb +1 -1
  143. data/spec/internal/app/models/tee.rb +3 -0
  144. data/spec/internal/app/models/tweet.rb +3 -0
  145. data/spec/internal/app/models/user.rb +3 -0
  146. data/spec/internal/config/database.yml +5 -0
  147. data/spec/internal/db/schema.rb +65 -0
  148. data/spec/internal/log/.gitignore +1 -0
  149. data/spec/spec_helper.rb +8 -49
  150. data/spec/support/sphinx_yaml_helpers.rb +9 -0
  151. data/spec/thinking_sphinx/active_record/association_spec.rb +12 -0
  152. data/spec/thinking_sphinx/active_record/associations_spec.rb +184 -0
  153. data/spec/thinking_sphinx/active_record/attribute/type_spec.rb +147 -0
  154. data/spec/thinking_sphinx/active_record/base_spec.rb +61 -0
  155. data/spec/thinking_sphinx/active_record/callbacks/delete_callbacks_spec.rb +80 -0
  156. data/spec/thinking_sphinx/active_record/callbacks/delta_callbacks_spec.rb +147 -0
  157. data/spec/thinking_sphinx/active_record/callbacks/update_callbacks_spec.rb +69 -0
  158. data/spec/thinking_sphinx/active_record/column_spec.rb +47 -0
  159. data/spec/thinking_sphinx/active_record/database_adapters/abstract_adapter_spec.rb +31 -0
  160. data/spec/thinking_sphinx/active_record/database_adapters/mysql_adapter_spec.rb +43 -0
  161. data/spec/thinking_sphinx/active_record/database_adapters/postgresql_adapter_spec.rb +45 -0
  162. data/spec/thinking_sphinx/active_record/database_adapters_spec.rb +108 -0
  163. data/spec/thinking_sphinx/active_record/field_spec.rb +36 -0
  164. data/spec/thinking_sphinx/active_record/index_spec.rb +208 -0
  165. data/spec/thinking_sphinx/active_record/interpreter_spec.rb +293 -0
  166. data/spec/thinking_sphinx/active_record/property_sql_presenter_spec.rb +162 -0
  167. data/spec/thinking_sphinx/active_record/sql_builder_spec.rb +666 -0
  168. data/spec/thinking_sphinx/active_record/sql_source_spec.rb +401 -0
  169. data/spec/thinking_sphinx/configuration_spec.rb +264 -171
  170. data/spec/thinking_sphinx/deltas/default_delta_spec.rb +116 -0
  171. data/spec/thinking_sphinx/deltas_spec.rb +58 -0
  172. data/spec/thinking_sphinx/excerpter_spec.rb +40 -38
  173. data/spec/thinking_sphinx/facet_search_spec.rb +49 -151
  174. data/spec/thinking_sphinx/index_set_spec.rb +68 -0
  175. data/spec/thinking_sphinx/index_spec.rb +91 -155
  176. data/spec/thinking_sphinx/masks/pagination_mask_spec.rb +121 -0
  177. data/spec/thinking_sphinx/masks/scopes_mask_spec.rb +68 -0
  178. data/spec/thinking_sphinx/middlewares/active_record_translator_spec.rb +132 -0
  179. data/spec/thinking_sphinx/middlewares/geographer_spec.rb +89 -0
  180. data/spec/thinking_sphinx/middlewares/glazier_spec.rb +62 -0
  181. data/spec/thinking_sphinx/middlewares/inquirer_spec.rb +55 -0
  182. data/spec/thinking_sphinx/middlewares/sphinxql_spec.rb +271 -0
  183. data/spec/thinking_sphinx/middlewares/stale_id_checker_spec.rb +47 -0
  184. data/spec/thinking_sphinx/middlewares/stale_id_filter_spec.rb +91 -0
  185. data/spec/thinking_sphinx/panes/attributes_pane_spec.rb +21 -0
  186. data/spec/thinking_sphinx/panes/distance_pane_spec.rb +41 -0
  187. data/spec/thinking_sphinx/panes/excerpts_pane_spec.rb +53 -0
  188. data/spec/thinking_sphinx/panes/weight_pane_spec.rb +20 -0
  189. data/spec/thinking_sphinx/rake_interface_spec.rb +147 -0
  190. data/spec/thinking_sphinx/real_time/attribute_spec.rb +62 -0
  191. data/spec/thinking_sphinx/real_time/callbacks/real_time_callbacks_spec.rb +76 -0
  192. data/spec/thinking_sphinx/real_time/field_spec.rb +54 -0
  193. data/spec/thinking_sphinx/real_time/index_spec.rb +154 -0
  194. data/spec/thinking_sphinx/real_time/interpreter_spec.rb +147 -0
  195. data/spec/thinking_sphinx/scopes_spec.rb +38 -0
  196. data/spec/thinking_sphinx/search/glaze_spec.rb +55 -0
  197. data/spec/thinking_sphinx/search/query_spec.rb +46 -0
  198. data/spec/thinking_sphinx/search_spec.rb +65 -1357
  199. data/spec/thinking_sphinx_spec.rb +19 -182
  200. data/thinking-sphinx.gemspec +33 -0
  201. metadata +318 -431
  202. data/features/abstract_inheritance.feature +0 -10
  203. data/features/alternate_primary_key.feature +0 -27
  204. data/features/attribute_transformation.feature +0 -22
  205. data/features/attribute_updates.feature +0 -79
  206. data/features/deleting_instances.feature +0 -70
  207. data/features/direct_attributes.feature +0 -11
  208. data/features/excerpts.feature +0 -21
  209. data/features/extensible_delta_indexing.feature +0 -9
  210. data/features/facets.feature +0 -88
  211. data/features/facets_across_model.feature +0 -29
  212. data/features/field_sorting.feature +0 -18
  213. data/features/handling_edits.feature +0 -97
  214. data/features/retry_stale_indexes.feature +0 -24
  215. data/features/searching_across_models.feature +0 -20
  216. data/features/searching_by_index.feature +0 -41
  217. data/features/searching_by_model.feature +0 -175
  218. data/features/searching_with_find_arguments.feature +0 -56
  219. data/features/sphinx_detection.feature +0 -25
  220. data/features/sphinx_scopes.feature +0 -68
  221. data/features/step_definitions/alpha_steps.rb +0 -16
  222. data/features/step_definitions/beta_steps.rb +0 -7
  223. data/features/step_definitions/common_steps.rb +0 -205
  224. data/features/step_definitions/extensible_delta_indexing_steps.rb +0 -7
  225. data/features/step_definitions/facet_steps.rb +0 -96
  226. data/features/step_definitions/find_arguments_steps.rb +0 -36
  227. data/features/step_definitions/gamma_steps.rb +0 -15
  228. data/features/step_definitions/scope_steps.rb +0 -19
  229. data/features/step_definitions/search_steps.rb +0 -94
  230. data/features/step_definitions/sphinx_steps.rb +0 -35
  231. data/features/sti_searching.feature +0 -19
  232. data/features/support/env.rb +0 -24
  233. data/features/support/lib/generic_delta_handler.rb +0 -8
  234. data/features/thinking_sphinx/database.example.yml +0 -3
  235. data/features/thinking_sphinx/db/.gitignore +0 -1
  236. data/features/thinking_sphinx/db/fixtures/alphas.rb +0 -8
  237. data/features/thinking_sphinx/db/fixtures/authors.rb +0 -1
  238. data/features/thinking_sphinx/db/fixtures/betas.rb +0 -11
  239. data/features/thinking_sphinx/db/fixtures/boxes.rb +0 -9
  240. data/features/thinking_sphinx/db/fixtures/categories.rb +0 -1
  241. data/features/thinking_sphinx/db/fixtures/cats.rb +0 -3
  242. data/features/thinking_sphinx/db/fixtures/comments.rb +0 -24
  243. data/features/thinking_sphinx/db/fixtures/developers.rb +0 -31
  244. data/features/thinking_sphinx/db/fixtures/dogs.rb +0 -3
  245. data/features/thinking_sphinx/db/fixtures/extensible_betas.rb +0 -10
  246. data/features/thinking_sphinx/db/fixtures/foxes.rb +0 -3
  247. data/features/thinking_sphinx/db/fixtures/gammas.rb +0 -10
  248. data/features/thinking_sphinx/db/fixtures/music.rb +0 -4
  249. data/features/thinking_sphinx/db/fixtures/people.rb +0 -1001
  250. data/features/thinking_sphinx/db/fixtures/post_keywords.txt +0 -1
  251. data/features/thinking_sphinx/db/fixtures/posts.rb +0 -10
  252. data/features/thinking_sphinx/db/fixtures/robots.rb +0 -8
  253. data/features/thinking_sphinx/db/fixtures/tags.rb +0 -27
  254. data/features/thinking_sphinx/db/migrations/create_alphas.rb +0 -8
  255. data/features/thinking_sphinx/db/migrations/create_animals.rb +0 -5
  256. data/features/thinking_sphinx/db/migrations/create_authors.rb +0 -3
  257. data/features/thinking_sphinx/db/migrations/create_authors_posts.rb +0 -6
  258. data/features/thinking_sphinx/db/migrations/create_betas.rb +0 -5
  259. data/features/thinking_sphinx/db/migrations/create_boxes.rb +0 -5
  260. data/features/thinking_sphinx/db/migrations/create_categories.rb +0 -3
  261. data/features/thinking_sphinx/db/migrations/create_comments.rb +0 -10
  262. data/features/thinking_sphinx/db/migrations/create_developers.rb +0 -7
  263. data/features/thinking_sphinx/db/migrations/create_extensible_betas.rb +0 -5
  264. data/features/thinking_sphinx/db/migrations/create_gammas.rb +0 -3
  265. data/features/thinking_sphinx/db/migrations/create_genres.rb +0 -3
  266. data/features/thinking_sphinx/db/migrations/create_music.rb +0 -6
  267. data/features/thinking_sphinx/db/migrations/create_people.rb +0 -13
  268. data/features/thinking_sphinx/db/migrations/create_posts.rb +0 -6
  269. data/features/thinking_sphinx/db/migrations/create_robots.rb +0 -4
  270. data/features/thinking_sphinx/db/migrations/create_taggings.rb +0 -5
  271. data/features/thinking_sphinx/db/migrations/create_tags.rb +0 -4
  272. data/features/thinking_sphinx/models/alpha.rb +0 -23
  273. data/features/thinking_sphinx/models/andrew.rb +0 -17
  274. data/features/thinking_sphinx/models/animal.rb +0 -5
  275. data/features/thinking_sphinx/models/author.rb +0 -3
  276. data/features/thinking_sphinx/models/beta.rb +0 -13
  277. data/features/thinking_sphinx/models/box.rb +0 -8
  278. data/features/thinking_sphinx/models/cat.rb +0 -3
  279. data/features/thinking_sphinx/models/category.rb +0 -4
  280. data/features/thinking_sphinx/models/comment.rb +0 -10
  281. data/features/thinking_sphinx/models/developer.rb +0 -21
  282. data/features/thinking_sphinx/models/dog.rb +0 -3
  283. data/features/thinking_sphinx/models/extensible_beta.rb +0 -9
  284. data/features/thinking_sphinx/models/fox.rb +0 -5
  285. data/features/thinking_sphinx/models/gamma.rb +0 -5
  286. data/features/thinking_sphinx/models/genre.rb +0 -3
  287. data/features/thinking_sphinx/models/medium.rb +0 -5
  288. data/features/thinking_sphinx/models/music.rb +0 -10
  289. data/features/thinking_sphinx/models/person.rb +0 -24
  290. data/features/thinking_sphinx/models/post.rb +0 -22
  291. data/features/thinking_sphinx/models/robot.rb +0 -12
  292. data/features/thinking_sphinx/models/tag.rb +0 -3
  293. data/lib/cucumber/thinking_sphinx/external_world.rb +0 -12
  294. data/lib/cucumber/thinking_sphinx/internal_world.rb +0 -137
  295. data/lib/cucumber/thinking_sphinx/sql_logger.rb +0 -28
  296. data/lib/thinking_sphinx/action_controller.rb +0 -31
  297. data/lib/thinking_sphinx/active_record/attribute_updates.rb +0 -54
  298. data/lib/thinking_sphinx/active_record/collection_proxy.rb +0 -47
  299. data/lib/thinking_sphinx/active_record/collection_proxy_with_scopes.rb +0 -27
  300. data/lib/thinking_sphinx/active_record/delta.rb +0 -67
  301. data/lib/thinking_sphinx/active_record/has_many_association.rb +0 -44
  302. data/lib/thinking_sphinx/active_record/has_many_association_with_scopes.rb +0 -21
  303. data/lib/thinking_sphinx/active_record/scopes.rb +0 -110
  304. data/lib/thinking_sphinx/adapters/abstract_adapter.rb +0 -94
  305. data/lib/thinking_sphinx/adapters/mysql_adapter.rb +0 -62
  306. data/lib/thinking_sphinx/adapters/postgresql_adapter.rb +0 -188
  307. data/lib/thinking_sphinx/association.rb +0 -230
  308. data/lib/thinking_sphinx/attribute.rb +0 -405
  309. data/lib/thinking_sphinx/auto_version.rb +0 -40
  310. data/lib/thinking_sphinx/bundled_search.rb +0 -40
  311. data/lib/thinking_sphinx/class_facet.rb +0 -20
  312. data/lib/thinking_sphinx/connection.rb +0 -71
  313. data/lib/thinking_sphinx/context.rb +0 -81
  314. data/lib/thinking_sphinx/core/string.rb +0 -15
  315. data/lib/thinking_sphinx/deltas/delete_job.rb +0 -16
  316. data/lib/thinking_sphinx/deltas/index_job.rb +0 -17
  317. data/lib/thinking_sphinx/deploy/capistrano.rb +0 -99
  318. data/lib/thinking_sphinx/field.rb +0 -98
  319. data/lib/thinking_sphinx/index/builder.rb +0 -315
  320. data/lib/thinking_sphinx/index/faux_column.rb +0 -118
  321. data/lib/thinking_sphinx/join.rb +0 -37
  322. data/lib/thinking_sphinx/property.rb +0 -187
  323. data/lib/thinking_sphinx/search_methods.rb +0 -439
  324. data/lib/thinking_sphinx/sinatra.rb +0 -7
  325. data/lib/thinking_sphinx/source.rb +0 -194
  326. data/lib/thinking_sphinx/source/internal_properties.rb +0 -51
  327. data/lib/thinking_sphinx/source/sql.rb +0 -174
  328. data/spec/fixtures/data.sql +0 -32
  329. data/spec/fixtures/database.yml.default +0 -3
  330. data/spec/fixtures/models.rb +0 -164
  331. data/spec/fixtures/structure.sql +0 -146
  332. data/spec/sphinx_helper.rb +0 -60
  333. data/spec/support/rails.rb +0 -25
  334. data/spec/thinking_sphinx/active_record/delta_spec.rb +0 -123
  335. data/spec/thinking_sphinx/active_record/has_many_association_spec.rb +0 -173
  336. data/spec/thinking_sphinx/active_record/scopes_spec.rb +0 -177
  337. data/spec/thinking_sphinx/active_record_spec.rb +0 -573
  338. data/spec/thinking_sphinx/adapters/abstract_adapter_spec.rb +0 -163
  339. data/spec/thinking_sphinx/association_spec.rb +0 -250
  340. data/spec/thinking_sphinx/attribute_spec.rb +0 -552
  341. data/spec/thinking_sphinx/auto_version_spec.rb +0 -103
  342. data/spec/thinking_sphinx/connection_spec.rb +0 -77
  343. data/spec/thinking_sphinx/context_spec.rb +0 -127
  344. data/spec/thinking_sphinx/core/array_spec.rb +0 -9
  345. data/spec/thinking_sphinx/core/string_spec.rb +0 -9
  346. data/spec/thinking_sphinx/facet_spec.rb +0 -359
  347. data/spec/thinking_sphinx/field_spec.rb +0 -127
  348. data/spec/thinking_sphinx/index/builder_spec.rb +0 -532
  349. data/spec/thinking_sphinx/index/faux_column_spec.rb +0 -36
  350. data/spec/thinking_sphinx/search_methods_spec.rb +0 -156
  351. data/spec/thinking_sphinx/source_spec.rb +0 -267
  352. data/spec/thinking_sphinx/test_spec.rb +0 -20
@@ -1,24 +0,0 @@
1
- Feature: Manually updating Sphinx indexes to handle uncaught deletions
2
- In order to keep indexes as up to date as possible
3
- Thinking Sphinx
4
- Should automatically update the indexes and retry the search if it gets a nil result
5
-
6
- Scenario: Changing retry_stale settings
7
- Given Sphinx is running
8
- And I am searching on gammas
9
- Then I should not get 0 results
10
-
11
- When I set retry stale to false
12
- And I set per page to 1
13
- And I order by "sphinx_internal_id ASC"
14
- And I destroy gamma one without callbacks
15
- Then I should get a single result of nil
16
-
17
- When I set retry stale to 1
18
- Then I should get a single gamma result with a name of two
19
-
20
- When I destroy gamma two without callbacks
21
- Then I should get a single result of nil
22
-
23
- When I set retry stale to true
24
- Then I should get a single gamma result with a name of three
@@ -1,20 +0,0 @@
1
- Feature: Searching across multiple model
2
- In order to use Thinking Sphinx's core functionality
3
- A developer
4
- Should be able to search on multiple models
5
-
6
- Scenario: Retrieving total result count
7
- Given Sphinx is running
8
- When I search for James
9
- And I am retrieving the result count
10
- Then I should get a value of 6
11
-
12
- Scenario: Confirming existance of a document id in a given index
13
- Given Sphinx is running
14
- When I search for the document id of alpha one in the alpha_core index
15
- Then it should exist
16
-
17
- Scenario: Retrieving results from multiple models
18
- Given Sphinx is running
19
- When I search for ten
20
- Then I should get 4 results
@@ -1,41 +0,0 @@
1
- Feature: Searching within a single index
2
- In order to use Thinking Sphinx's core functionality
3
- A developer
4
- Should be able to search on a single index
5
-
6
- Scenario: Searching with alternative index
7
- Given Sphinx is running
8
- And I am searching on alphas
9
- When I order by value
10
- And I use index alternative_core
11
- Then I should get 7 results
12
-
13
- Scenario: Searching with default index
14
- Given Sphinx is running
15
- And I am searching on alphas
16
- When I order by value
17
- And I use index alpha_core
18
- Then I should get 10 results
19
-
20
- Scenario: Searching without specified index
21
- Given Sphinx is running
22
- And I am searching on alphas
23
- When I order by value
24
- Then I should get 10 results
25
-
26
- Scenario: Deleting instances from the core index
27
- Given Sphinx is running
28
- And I am searching on alphas
29
-
30
- When I create a new alpha named eleven
31
- And I process the alpha_core index
32
- And I process the alternative_core index
33
- And I wait for Sphinx to catch up
34
- And I clear the connection pool
35
- And I search for eleven
36
- Then I should get 1 result
37
-
38
- When I destroy alpha eleven
39
- And I wait for Sphinx to catch up
40
- And I search for eleven
41
- Then I should get 0 results
@@ -1,175 +0,0 @@
1
- Feature: Searching on a single model
2
- In order to use Thinking Sphinx's core functionality
3
- A developer
4
- Should be able to search on a single model
5
-
6
- Scenario: Searching using a basic query
7
- Given Sphinx is running
8
- And I am searching on people
9
- When I search for James
10
- Then I should get 3 results
11
-
12
- Scenario: Searching on a specific field
13
- Given Sphinx is running
14
- And I am searching on people
15
- When I search for James on first_name
16
- Then I should get 2 results
17
-
18
- Scenario: Searching on multiple fields
19
- Given Sphinx is running
20
- And I am searching on people
21
- When I search for James on first_name
22
- And I search for Chamberlain on last_name
23
- Then I should get 1 result
24
-
25
- Scenario: Searching on association content
26
- Given Sphinx is running
27
- And I am searching on posts
28
-
29
- When I search for "Waffles"
30
- Then I should get 1 result
31
-
32
- When I search for "Turtle"
33
- Then I should get 1 result
34
-
35
- Scenario: Searching with a filter
36
- Given Sphinx is running
37
- And I am searching on alphas
38
- When I filter by 1 on value
39
- Then I should get 1 result
40
-
41
- Scenario: Searching with multiple filters
42
- Given Sphinx is running
43
- And I am searching on boxes
44
- When I filter by 2 on width
45
- And I filter by 2 on length
46
- Then I should get 1 result
47
-
48
- Scenario: Searching with a ranged time filter
49
- Given Sphinx is running
50
- And I am searching on people
51
- When I filter by birthday between 1975 and 1976
52
- Then I should get 16 results
53
-
54
- Scenario: Searching to filter multiple values on an MVA
55
- Given Sphinx is running
56
- And I am searching on boxes
57
- When I filter by 11 and 12 on dimensions
58
- Then I should get 2 results
59
- When I clear existing filters
60
- And I filter by both 11 and 12 on dimensions
61
- Then I should get 1 result
62
-
63
- Scenario: Filtering on timestamp MVAs
64
- Given Sphinx is running
65
- And I am searching on posts
66
- When I filter by 2001-01-01 on comments_created_at
67
- Then I should get 1 result
68
-
69
- Scenario: Searching by NULL/0 values in MVAs
70
- Given Sphinx is running
71
- And I am searching on boxes
72
- When I filter by 0 on dimensions
73
- Then I should get 1 result
74
-
75
- Given Sphinx is running
76
- And I am searching on developers
77
- When I clear existing filters
78
- And I filter by 0 on tag_ids
79
- Then I should get 1 result
80
-
81
- Scenario: Searching on a MVA configured as ranged_query
82
- Given Sphinx is running
83
- And I am searching on posts
84
- When I filter by 1 on comment_ids
85
- Then I should get 1 result
86
- When I clear existing filters
87
- And I filter by both 1 and 2 on comment_ids
88
- Then I should get 1 results
89
- When I clear existing filters
90
- And I filter by 10 on comment_ids
91
- Then I should get 0 results
92
-
93
- Scenario: Searching with ordering by attribute
94
- Given Sphinx is running
95
- And I am searching on alphas
96
- When I order by value
97
- Then I should get 10 results
98
- And the value of each result should indicate order
99
-
100
- Scenario: Intepreting Sphinx Internal Identifiers
101
- Given Sphinx is running
102
- And I am searching on people
103
- Then I should get 20 results
104
- And each result id should match the corresponding sphinx internal id
105
-
106
- Scenario: Retrieving weightings
107
- Given Sphinx is running
108
- And I am searching on people
109
- When I search for "Ellie Ford"
110
- And I set match mode to any
111
- Then I can iterate by result and weighting
112
-
113
- Scenario: Retrieving group counts
114
- Given Sphinx is running
115
- And I am searching on people
116
- When I group results by the birthday attribute
117
- Then I can iterate by result and count
118
-
119
- Scenario: Retrieving group values
120
- Given Sphinx is running
121
- And I am searching on people
122
- When I group results by the birthday attribute
123
- Then I can iterate by result and group
124
-
125
- Scenario: Retrieving both group values and counts
126
- Given Sphinx is running
127
- And I am searching on people
128
- When I group results by the birthday attribute
129
- Then I can iterate by result and group and count
130
-
131
- Scenario: Searching for ids
132
- Given Sphinx is running
133
- And I am searching on people
134
- When I search for Ellie
135
- And I am searching for ids
136
- Then I should have an array of integers
137
-
138
- Scenario: Search results should match Sphinx's order
139
- Given Sphinx is running
140
- And I am searching on people
141
- When I search for Ellie
142
- And I order by "sphinx_internal_id DESC"
143
- Then searching for ids should match the record ids of the normal search results
144
-
145
- Scenario: Retrieving total result count when total is less than a page
146
- Given Sphinx is running
147
- And I am searching on people
148
- When I search for James
149
- And I am retrieving the result count
150
- Then I should get a value of 3
151
-
152
- Scenario: Retrieving total result count for more than a page
153
- Given Sphinx is running
154
- And I am searching on people
155
- When I am retrieving the result count
156
- Then I should get a value of 1000
157
-
158
- Scenario: Searching with Unicode Characters
159
- Given Sphinx is running
160
- And I am searching on people
161
- When I search for "José* "
162
- Then I should get 1 result
163
-
164
- Scenario: Searching by fields from HABTM joins
165
- Given Sphinx is running
166
- And I am searching on posts
167
- When I search for "Shakespeare"
168
- Then I should get 1 result
169
-
170
- Scenario: Searching on content from file field
171
- Given Sphinx is running
172
- And I am searching on posts
173
- When I search for "foo bar baz"
174
- Then I should get 1 result
175
-
@@ -1,56 +0,0 @@
1
- Feature: Keeping AR::Base.find arguments in search calls
2
- To keep things as streamlined as possible
3
- Thinking Sphinx
4
- Should respect particular arguments to AR::Base.find calls
5
-
6
- Scenario: Respecting the include option
7
- Given Sphinx is running
8
- And I am searching on posts
9
- Then I should get 1 result
10
-
11
- When I get the first comment
12
- And I track queries
13
- And I compare comments
14
- Then I should have 1 query
15
-
16
- When I include comments
17
- Then I should get 1 result
18
- When I track queries
19
- And I compare comments
20
- Then I should have 0 queries
21
-
22
- Scenario: Respecting the include option without using a specific model
23
- Given Sphinx is running
24
- And I search for "Hello World"
25
- Then I should get 1 result
26
-
27
- When I get the first comment
28
- And I track queries
29
- And I compare comments
30
- Then I should have 1 query
31
-
32
- When I include comments
33
- Then I should get 1 result
34
- When I track queries
35
- And I compare comments
36
- Then I should have 0 queries
37
-
38
- Scenario: Respecting the select option
39
- Given Sphinx is running
40
- And I am searching on posts
41
- Then I should get 1 result
42
- And I should not get an error accessing the subject
43
-
44
- When I select only content
45
- Then I should get 1 result
46
- And I should get an error accessing the subject
47
-
48
- Scenario: Respecting the select option without using a specific model
49
- Given Sphinx is running
50
- When I search for "Hello World"
51
- Then I should get 1 result
52
- And I should not get an error accessing the subject
53
-
54
- When I select only content
55
- Then I should get 1 result
56
- And I should get an error accessing the subject
@@ -1,25 +0,0 @@
1
- Feature: Checking whether Sphinx is running or not
2
- In order to avoid unnecessary errors
3
- Thinking Sphinx
4
- Should be able to determine whether Sphinx is running or not
5
-
6
- Scenario: Checking Sphinx's status
7
- Given Sphinx is running
8
- Then Sphinx should be running
9
-
10
- When I stop Sphinx
11
- And I wait for Sphinx to catch up
12
- Then Sphinx should not be running
13
-
14
- When I start Sphinx
15
- And I wait for Sphinx to catch up
16
- Then Sphinx should be running
17
-
18
- Given Sphinx is running
19
- When I kill the Sphinx process
20
- And I wait for Sphinx to catch up
21
- Then Sphinx should not be running
22
-
23
- When I start Sphinx again
24
- And I wait for Sphinx to catch up
25
- Then Sphinx should be running again
@@ -1,68 +0,0 @@
1
- Feature: Sphinx Scopes
2
-
3
- Scenario: Single Scope
4
- Given Sphinx is running
5
- And I am searching on people
6
- When I use the with_first_name scope set to "Andrew"
7
- Then I should get 7 results
8
-
9
- Scenario: Two Field Scopes
10
- Given Sphinx is running
11
- And I am searching on people
12
- When I use the with_first_name scope set to "Andrew"
13
- And I use the with_last_name scope set to "Byrne"
14
- Then I should get 1 result
15
-
16
- Scenario: Mixing Filter and Field Scopes
17
- Given Sphinx is running
18
- And I am searching on people
19
- When I use the with_first_name scope set to "Andrew"
20
- And I use the with_id scope set to 99
21
- Then I should get 1 result
22
-
23
- Scenario: Mixing Field and ID Scopes
24
- Given Sphinx is running
25
- And I am searching on people
26
- When I use the with_first_name scope set to "Andrew"
27
- And I use the ids_only scope
28
- Then I should get 7 results
29
- And I should have an array of integers
30
-
31
- Scenario: Non-field/filter Scopes
32
- Given Sphinx is running
33
- And I am searching on people
34
- When I use the ids_only scope
35
- Then I should have an array of integers
36
-
37
- Scenario: Counts with scopes
38
- Given Sphinx is running
39
- And I am searching on people
40
- When I use the with_first_name scope set to "Andrew"
41
- And I am retrieving the scoped result count
42
- Then I should get a value of 7
43
-
44
- Scenario: Counts with scopes and additional query terms
45
- Given Sphinx is running
46
- And I am searching on people
47
- When I use the with_first_name scope set to "Andrew"
48
- And I am retrieving the scoped result count for "Byrne"
49
- Then I should get a value of 1
50
-
51
- Scenario: Default Scope
52
- Given Sphinx is running
53
- And I am searching on andrews
54
- Then I should get 7 results
55
-
56
- Scenario: Default Scope and additional query terms
57
- Given Sphinx is running
58
- And I am searching on andrews
59
- When I search for "Byrne"
60
- Then I should get 1 result
61
-
62
- Scenario: Explicit scope plus search over a default scope
63
- Given Sphinx is running
64
- And I am searching on andrews
65
- When I use the locked_last_name scope
66
- And I search for "Cecil"
67
- Then I should get 1 result
68
-
@@ -1,16 +0,0 @@
1
- When /^I create a new alpha named (\w+)$/ do |name|
2
- Alpha.create!(:name => name, :value => 101)
3
- end
4
-
5
- When /^I change the (\w+) of alpha (\w+) to (\w+)$/ do |column, name, replacement|
6
- Alpha.find_by_name(name).update_attributes(column.to_sym => replacement)
7
- end
8
-
9
- When /^I filter by active alphas$/ do
10
- @results = nil
11
- @with[:active] = true
12
- end
13
-
14
- When /^I flag alpha (\w+) as inactive$/ do |name|
15
- Alpha.find_by_name(name).update_attributes(:active => false)
16
- end
@@ -1,7 +0,0 @@
1
- When /^I create a new beta named (\w+)$/ do |name|
2
- Beta.create!(:name => name, :value => 101)
3
- end
4
-
5
- When /^I change the (\w+) of beta (\w+) to (\w+)$/ do |column, name, replacement|
6
- Beta.find_by_name(name).update_attributes(column.to_sym => replacement)
7
- end
@@ -1,205 +0,0 @@
1
- Before do
2
- $queries_executed = []
3
-
4
- @model = nil
5
- @method = :search
6
- @query = ""
7
- @conditions = {}
8
- @with = {}
9
- @without = {}
10
- @with_all = {}
11
- @options = {}
12
- @results = nil
13
-
14
- Given "updates are enabled"
15
- end
16
-
17
- Given /^I am searching on (.+)$/ do |model|
18
- @model = model.gsub(/\s/, '_').singularize.camelize.constantize
19
- end
20
-
21
- Given /^updates are (\w+)$/ do |action|
22
- ThinkingSphinx.updates_enabled = (action == "enabled")
23
- end
24
-
25
- When /^I am searching for ids$/ do
26
- @results = nil
27
- @method = :search_for_ids
28
- end
29
-
30
- When /^I use index (.+)$/ do |index|
31
- @results = nil
32
- @options[:index] = index
33
- end
34
-
35
- When /^I am retrieving the result count$/ do
36
- @result = nil
37
- @method = @model ? :search_count : :count
38
- end
39
-
40
- When /^I search$/ do
41
- @results = nil
42
- end
43
-
44
- When /^I search for (\w+)$/ do |query|
45
- @results = nil
46
- @query = query
47
- end
48
-
49
- When /^I clear the connection pool$/ do
50
- ThinkingSphinx::Connection.pool.clear
51
- end
52
-
53
- When /^I search for "([^\"]*)"$/ do |query|
54
- @results = nil
55
- @query = query
56
- end
57
-
58
- When /^I search for (\w+) on (\w+)$/ do |query, field|
59
- @results = nil
60
- @conditions[field.to_sym] = query
61
- end
62
-
63
- When /^I output the raw result data$/ do
64
- puts results.results.inspect
65
- end
66
-
67
- When /^I clear existing filters$/ do
68
- @with = {}
69
- @without = {}
70
- @with_all = {}
71
- end
72
-
73
- When /^I filter by (\w+) on (\w+)$/ do |filter, attribute|
74
- @results = nil
75
- @with[attribute.to_sym] = filter.to_i
76
- end
77
-
78
- When /^I filter by (\d\d\d\d)\-(\d\d)\-(\d\d) on (\w+)$/ do |y, m, d, attribute|
79
- @results = nil
80
- @with[attribute.to_sym] = Time.gm(y.to_i, m.to_i, d.to_i).to_i
81
- end
82
-
83
- When /^I filter by (\d+) and (\d+) on (\w+)$/ do |value_one, value_two, attribute|
84
- @results = nil
85
- @with[attribute.to_sym] = [value_one.to_i, value_two.to_i]
86
- end
87
-
88
- When /^I filter by both (\d+) and (\d+) on (\w+)$/ do |value_one, value_two, attribute|
89
- @results = nil
90
- @with_all[attribute.to_sym] = [value_one.to_i, value_two.to_i]
91
- end
92
-
93
- When /^I filter between ([\d\.]+) and ([\d\.]+) on (\w+)$/ do |first, last, attribute|
94
- @results = nil
95
- if first[/\./].nil? && last[/\./].nil?
96
- @with[attribute.to_sym] = first.to_i..last.to_i
97
- else
98
- @with[attribute.to_sym] = first.to_f..last.to_f
99
- end
100
- end
101
-
102
- When /^I filter between (\d+) and (\d+) days ago on (\w+)(?: by (date))?$/ do |last, first, attribute, by_date|
103
- @results = nil
104
-
105
- first, last = first.to_i.days.ago, last.to_i.days.ago
106
- first, last = first.to_date, last.to_date if by_date
107
-
108
- @with[attribute.to_sym] = first..last
109
- end
110
-
111
- When /^I filter by (\w+) between (\d+) and (\d+)$/ do |attribute, first, last|
112
- @results = nil
113
- @with[attribute.to_sym] = Time.utc(first.to_i)..Time.utc(last.to_i)
114
- end
115
-
116
- When /^I order by (\w+)$/ do |attribute|
117
- @results = nil
118
- @options[:order] = attribute.to_sym
119
- end
120
-
121
- When /^I order by "([^\"]+)"$/ do |str|
122
- @results = nil
123
- @options[:order] = str
124
- end
125
-
126
- When /^I group results by the (\w+) attribute$/ do |attribute|
127
- @results = nil
128
- @options[:group_function] = :attr
129
- @options[:group_by] = attribute
130
- end
131
-
132
- When /^I set match mode to (\w+)$/ do |match_mode|
133
- @results = nil
134
- @options[:match_mode] = match_mode.to_sym
135
- end
136
-
137
- When /^I set per page to (\d+)$/ do |per_page|
138
- @results = nil
139
- @options[:per_page] = per_page.to_i
140
- end
141
-
142
- When /^I set retry stale to (\w+)$/ do |retry_stale|
143
- @results = nil
144
- @options[:retry_stale] = case retry_stale
145
- when "true" then true
146
- when "false" then false
147
- else retry_stale.to_i
148
- end
149
- end
150
-
151
- When /^I destroy (\w+) (\w+)$/ do |model, name|
152
- model.gsub(/\s/, '_').camelize.
153
- constantize.find_by_name(name).destroy
154
- end
155
-
156
- Then /^the (\w+) of each result should indicate order$/ do |attribute|
157
- results.inject(nil) do |prev, current|
158
- unless prev.nil?
159
- current.send(attribute.to_sym).should >= prev.send(attribute.to_sym)
160
- end
161
-
162
- current
163
- end
164
- end
165
-
166
- Then /^the first result's "([^"]*)" should be "([^"]*)"$/ do |attribute, value|
167
- results.first.send(attribute.to_sym).should == value
168
- end
169
-
170
- Then /^I can iterate by result and (\w+)$/ do |attribute|
171
- iteration = lambda { |result, attr_value|
172
- result.should be_kind_of(@model)
173
- unless attribute == "group" && attr_value.nil?
174
- attr_value.should be_kind_of(Integer)
175
- end
176
- }
177
-
178
- results.send("each_with_#{attribute}", &iteration)
179
- end
180
-
181
- Then /^I should get (\d+) results?$/ do |count|
182
- results.length.should == count.to_i
183
- end
184
-
185
- Then /^I should not get (\d+) results?$/ do |count|
186
- results.length.should_not == count.to_i
187
- end
188
-
189
- Then /^I should get as many results as there are (.+)$/ do |model|
190
- results.length.should == model.gsub(/\s/, '_').singularize.camelize.
191
- constantize.count
192
- end
193
-
194
- def results
195
- @results ||= (@model || ThinkingSphinx).send(
196
- @method,
197
- @query,
198
- @options.merge(
199
- :conditions => @conditions,
200
- :with => @with,
201
- :without => @without,
202
- :with_all => @with_all
203
- )
204
- )
205
- end