chewy 0.8.4 → 5.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (303) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +1 -0
  3. data/.rubocop.yml +56 -0
  4. data/.rubocop_todo.yml +44 -0
  5. data/.travis.yml +36 -67
  6. data/.yardopts +5 -0
  7. data/Appraisals +63 -58
  8. data/CHANGELOG.md +168 -11
  9. data/Gemfile +16 -9
  10. data/Guardfile +5 -5
  11. data/LEGACY_DSL.md +497 -0
  12. data/README.md +403 -470
  13. data/Rakefile +11 -1
  14. data/chewy.gemspec +12 -15
  15. data/gemfiles/rails.4.0.activerecord.gemfile +9 -9
  16. data/gemfiles/rails.4.1.activerecord.gemfile +9 -9
  17. data/gemfiles/rails.4.2.activerecord.gemfile +8 -8
  18. data/gemfiles/rails.4.2.mongoid.5.2.gemfile +16 -0
  19. data/gemfiles/rails.5.0.activerecord.gemfile +16 -0
  20. data/gemfiles/rails.5.0.mongoid.6.1.gemfile +16 -0
  21. data/gemfiles/rails.5.1.activerecord.gemfile +16 -0
  22. data/gemfiles/rails.5.1.mongoid.6.3.gemfile +16 -0
  23. data/gemfiles/rails.5.2.activerecord.gemfile +16 -0
  24. data/gemfiles/sequel.4.45.gemfile +11 -0
  25. data/lib/chewy/backports/deep_dup.rb +1 -1
  26. data/lib/chewy/backports/duplicable.rb +1 -0
  27. data/lib/chewy/config.rb +53 -21
  28. data/lib/chewy/errors.rb +6 -6
  29. data/lib/chewy/fields/base.rb +59 -29
  30. data/lib/chewy/fields/root.rb +49 -14
  31. data/lib/chewy/index/actions.rb +95 -36
  32. data/lib/chewy/index/aliases.rb +2 -1
  33. data/lib/chewy/index/settings.rb +10 -5
  34. data/lib/chewy/index/specification.rb +60 -0
  35. data/lib/chewy/index.rb +239 -138
  36. data/lib/chewy/journal.rb +55 -0
  37. data/lib/chewy/log_subscriber.rb +8 -8
  38. data/lib/chewy/minitest/helpers.rb +77 -0
  39. data/lib/chewy/minitest/search_index_receiver.rb +80 -0
  40. data/lib/chewy/minitest.rb +1 -0
  41. data/lib/chewy/query/compose.rb +18 -19
  42. data/lib/chewy/query/criteria.rb +34 -24
  43. data/lib/chewy/query/filters.rb +28 -11
  44. data/lib/chewy/query/loading.rb +3 -4
  45. data/lib/chewy/query/nodes/and.rb +1 -1
  46. data/lib/chewy/query/nodes/base.rb +1 -1
  47. data/lib/chewy/query/nodes/bool.rb +6 -4
  48. data/lib/chewy/query/nodes/equal.rb +4 -4
  49. data/lib/chewy/query/nodes/exists.rb +1 -1
  50. data/lib/chewy/query/nodes/expr.rb +2 -2
  51. data/lib/chewy/query/nodes/field.rb +35 -31
  52. data/lib/chewy/query/nodes/has_child.rb +1 -0
  53. data/lib/chewy/query/nodes/has_parent.rb +1 -0
  54. data/lib/chewy/query/nodes/has_relation.rb +10 -12
  55. data/lib/chewy/query/nodes/missing.rb +1 -1
  56. data/lib/chewy/query/nodes/not.rb +1 -1
  57. data/lib/chewy/query/nodes/or.rb +1 -1
  58. data/lib/chewy/query/nodes/prefix.rb +3 -2
  59. data/lib/chewy/query/nodes/query.rb +1 -1
  60. data/lib/chewy/query/nodes/range.rb +9 -9
  61. data/lib/chewy/query/nodes/raw.rb +1 -1
  62. data/lib/chewy/query/nodes/regexp.rb +13 -9
  63. data/lib/chewy/query/nodes/script.rb +4 -4
  64. data/lib/chewy/query/pagination.rb +10 -1
  65. data/lib/chewy/query.rb +286 -170
  66. data/lib/chewy/railtie.rb +7 -6
  67. data/lib/chewy/rake_helper.rb +275 -37
  68. data/lib/chewy/repository.rb +2 -2
  69. data/lib/chewy/rspec/update_index.rb +70 -65
  70. data/lib/chewy/rspec.rb +1 -1
  71. data/lib/chewy/runtime/version.rb +4 -4
  72. data/lib/chewy/search/loader.rb +83 -0
  73. data/lib/chewy/{query → search}/pagination/kaminari.rb +13 -5
  74. data/lib/chewy/search/pagination/will_paginate.rb +43 -0
  75. data/lib/chewy/search/parameters/aggs.rb +16 -0
  76. data/lib/chewy/search/parameters/allow_partial_search_results.rb +27 -0
  77. data/lib/chewy/search/parameters/concerns/bool_storage.rb +24 -0
  78. data/lib/chewy/search/parameters/concerns/hash_storage.rb +23 -0
  79. data/lib/chewy/search/parameters/concerns/integer_storage.rb +14 -0
  80. data/lib/chewy/search/parameters/concerns/query_storage.rb +238 -0
  81. data/lib/chewy/search/parameters/concerns/string_array_storage.rb +23 -0
  82. data/lib/chewy/search/parameters/concerns/string_storage.rb +14 -0
  83. data/lib/chewy/search/parameters/docvalue_fields.rb +12 -0
  84. data/lib/chewy/search/parameters/explain.rb +16 -0
  85. data/lib/chewy/search/parameters/filter.rb +47 -0
  86. data/lib/chewy/search/parameters/highlight.rb +16 -0
  87. data/lib/chewy/search/parameters/indices.rb +123 -0
  88. data/lib/chewy/search/parameters/indices_boost.rb +52 -0
  89. data/lib/chewy/search/parameters/limit.rb +17 -0
  90. data/lib/chewy/search/parameters/load.rb +32 -0
  91. data/lib/chewy/search/parameters/min_score.rb +16 -0
  92. data/lib/chewy/search/parameters/none.rb +27 -0
  93. data/lib/chewy/search/parameters/offset.rb +17 -0
  94. data/lib/chewy/search/parameters/order.rb +64 -0
  95. data/lib/chewy/search/parameters/post_filter.rb +19 -0
  96. data/lib/chewy/search/parameters/preference.rb +16 -0
  97. data/lib/chewy/search/parameters/profile.rb +16 -0
  98. data/lib/chewy/search/parameters/query.rb +19 -0
  99. data/lib/chewy/search/parameters/request_cache.rb +27 -0
  100. data/lib/chewy/search/parameters/rescore.rb +29 -0
  101. data/lib/chewy/search/parameters/script_fields.rb +16 -0
  102. data/lib/chewy/search/parameters/search_after.rb +20 -0
  103. data/lib/chewy/search/parameters/search_type.rb +16 -0
  104. data/lib/chewy/search/parameters/source.rb +73 -0
  105. data/lib/chewy/search/parameters/storage.rb +95 -0
  106. data/lib/chewy/search/parameters/stored_fields.rb +63 -0
  107. data/lib/chewy/search/parameters/suggest.rb +16 -0
  108. data/lib/chewy/search/parameters/terminate_after.rb +16 -0
  109. data/lib/chewy/search/parameters/timeout.rb +16 -0
  110. data/lib/chewy/search/parameters/track_scores.rb +16 -0
  111. data/lib/chewy/search/parameters/types.rb +20 -0
  112. data/lib/chewy/search/parameters/version.rb +16 -0
  113. data/lib/chewy/search/parameters.rb +167 -0
  114. data/lib/chewy/search/query_proxy.rb +257 -0
  115. data/lib/chewy/search/request.rb +1045 -0
  116. data/lib/chewy/search/response.rb +119 -0
  117. data/lib/chewy/search/scoping.rb +50 -0
  118. data/lib/chewy/search/scrolling.rb +134 -0
  119. data/lib/chewy/search.rb +81 -26
  120. data/lib/chewy/stash.rb +79 -0
  121. data/lib/chewy/strategy/active_job.rb +1 -0
  122. data/lib/chewy/strategy/atomic.rb +2 -4
  123. data/lib/chewy/strategy/base.rb +4 -4
  124. data/lib/chewy/strategy/bypass.rb +1 -2
  125. data/lib/chewy/strategy/resque.rb +1 -0
  126. data/lib/chewy/strategy/shoryuken.rb +40 -0
  127. data/lib/chewy/strategy/sidekiq.rb +13 -1
  128. data/lib/chewy/strategy/urgent.rb +1 -1
  129. data/lib/chewy/strategy.rb +19 -10
  130. data/lib/chewy/type/actions.rb +26 -2
  131. data/lib/chewy/type/adapter/active_record.rb +50 -24
  132. data/lib/chewy/type/adapter/base.rb +29 -9
  133. data/lib/chewy/type/adapter/mongoid.rb +19 -10
  134. data/lib/chewy/type/adapter/object.rb +195 -31
  135. data/lib/chewy/type/adapter/orm.rb +69 -33
  136. data/lib/chewy/type/adapter/sequel.rb +37 -19
  137. data/lib/chewy/type/crutch.rb +5 -4
  138. data/lib/chewy/type/import/bulk_builder.rb +122 -0
  139. data/lib/chewy/type/import/bulk_request.rb +78 -0
  140. data/lib/chewy/type/import/journal_builder.rb +45 -0
  141. data/lib/chewy/type/import/routine.rb +138 -0
  142. data/lib/chewy/type/import.rb +150 -176
  143. data/lib/chewy/type/mapping.rb +58 -42
  144. data/lib/chewy/type/observe.rb +21 -15
  145. data/lib/chewy/type/syncer.rb +222 -0
  146. data/lib/chewy/type/witchcraft.rb +89 -34
  147. data/lib/chewy/type/wrapper.rb +48 -16
  148. data/lib/chewy/type.rb +77 -49
  149. data/lib/chewy/version.rb +1 -1
  150. data/lib/chewy.rb +95 -52
  151. data/lib/generators/chewy/install_generator.rb +3 -3
  152. data/lib/sequel/plugins/chewy_observe.rb +4 -19
  153. data/lib/tasks/chewy.rake +91 -28
  154. data/spec/chewy/config_spec.rb +130 -12
  155. data/spec/chewy/fields/base_spec.rb +194 -172
  156. data/spec/chewy/fields/root_spec.rb +123 -17
  157. data/spec/chewy/fields/time_fields_spec.rb +10 -9
  158. data/spec/chewy/index/actions_spec.rb +228 -43
  159. data/spec/chewy/index/aliases_spec.rb +2 -2
  160. data/spec/chewy/index/settings_spec.rb +100 -49
  161. data/spec/chewy/index/specification_spec.rb +169 -0
  162. data/spec/chewy/index_spec.rb +159 -63
  163. data/spec/chewy/journal_spec.rb +268 -0
  164. data/spec/chewy/minitest/helpers_spec.rb +90 -0
  165. data/spec/chewy/minitest/search_index_receiver_spec.rb +120 -0
  166. data/spec/chewy/query/criteria_spec.rb +503 -236
  167. data/spec/chewy/query/filters_spec.rb +96 -68
  168. data/spec/chewy/query/loading_spec.rb +80 -42
  169. data/spec/chewy/query/nodes/and_spec.rb +3 -7
  170. data/spec/chewy/query/nodes/bool_spec.rb +5 -13
  171. data/spec/chewy/query/nodes/equal_spec.rb +20 -20
  172. data/spec/chewy/query/nodes/exists_spec.rb +7 -7
  173. data/spec/chewy/query/nodes/has_child_spec.rb +42 -23
  174. data/spec/chewy/query/nodes/has_parent_spec.rb +42 -23
  175. data/spec/chewy/query/nodes/match_all_spec.rb +2 -2
  176. data/spec/chewy/query/nodes/missing_spec.rb +6 -5
  177. data/spec/chewy/query/nodes/not_spec.rb +5 -7
  178. data/spec/chewy/query/nodes/or_spec.rb +3 -7
  179. data/spec/chewy/query/nodes/prefix_spec.rb +6 -6
  180. data/spec/chewy/query/nodes/query_spec.rb +3 -3
  181. data/spec/chewy/query/nodes/range_spec.rb +19 -19
  182. data/spec/chewy/query/nodes/raw_spec.rb +2 -2
  183. data/spec/chewy/query/nodes/regexp_spec.rb +31 -19
  184. data/spec/chewy/query/nodes/script_spec.rb +5 -5
  185. data/spec/chewy/query/pagination/kaminari_spec.rb +3 -55
  186. data/spec/chewy/query/pagination/will_paginate_spec.rb +5 -0
  187. data/spec/chewy/query/pagination_spec.rb +25 -22
  188. data/spec/chewy/query_spec.rb +510 -505
  189. data/spec/chewy/rake_helper_spec.rb +381 -0
  190. data/spec/chewy/repository_spec.rb +8 -8
  191. data/spec/chewy/rspec/update_index_spec.rb +215 -113
  192. data/spec/chewy/runtime_spec.rb +2 -2
  193. data/spec/chewy/search/loader_spec.rb +117 -0
  194. data/spec/chewy/search/pagination/kaminari_examples.rb +71 -0
  195. data/spec/chewy/search/pagination/kaminari_spec.rb +21 -0
  196. data/spec/chewy/search/pagination/will_paginate_examples.rb +63 -0
  197. data/spec/chewy/search/pagination/will_paginate_spec.rb +23 -0
  198. data/spec/chewy/search/parameters/aggs_spec.rb +5 -0
  199. data/spec/chewy/search/parameters/bool_storage_examples.rb +53 -0
  200. data/spec/chewy/search/parameters/docvalue_fields_spec.rb +5 -0
  201. data/spec/chewy/search/parameters/explain_spec.rb +5 -0
  202. data/spec/chewy/search/parameters/filter_spec.rb +5 -0
  203. data/spec/chewy/search/parameters/hash_storage_examples.rb +59 -0
  204. data/spec/chewy/search/parameters/highlight_spec.rb +5 -0
  205. data/spec/chewy/search/parameters/indices_spec.rb +191 -0
  206. data/spec/chewy/search/parameters/integer_storage_examples.rb +32 -0
  207. data/spec/chewy/search/parameters/limit_spec.rb +5 -0
  208. data/spec/chewy/search/parameters/load_spec.rb +60 -0
  209. data/spec/chewy/search/parameters/min_score_spec.rb +32 -0
  210. data/spec/chewy/search/parameters/none_spec.rb +5 -0
  211. data/spec/chewy/search/parameters/offset_spec.rb +5 -0
  212. data/spec/chewy/search/parameters/order_spec.rb +65 -0
  213. data/spec/chewy/search/parameters/post_filter_spec.rb +5 -0
  214. data/spec/chewy/search/parameters/preference_spec.rb +5 -0
  215. data/spec/chewy/search/parameters/profile_spec.rb +5 -0
  216. data/spec/chewy/search/parameters/query_spec.rb +5 -0
  217. data/spec/chewy/search/parameters/query_storage_examples.rb +388 -0
  218. data/spec/chewy/search/parameters/request_cache_spec.rb +67 -0
  219. data/spec/chewy/search/parameters/rescore_spec.rb +62 -0
  220. data/spec/chewy/search/parameters/script_fields_spec.rb +5 -0
  221. data/spec/chewy/search/parameters/search_after_spec.rb +32 -0
  222. data/spec/chewy/search/parameters/search_type_spec.rb +5 -0
  223. data/spec/chewy/search/parameters/source_spec.rb +156 -0
  224. data/spec/chewy/search/parameters/storage_spec.rb +60 -0
  225. data/spec/chewy/search/parameters/stored_fields_spec.rb +126 -0
  226. data/spec/chewy/search/parameters/string_array_storage_examples.rb +63 -0
  227. data/spec/chewy/search/parameters/string_storage_examples.rb +32 -0
  228. data/spec/chewy/search/parameters/suggest_spec.rb +5 -0
  229. data/spec/chewy/search/parameters/terminate_after_spec.rb +5 -0
  230. data/spec/chewy/search/parameters/timeout_spec.rb +5 -0
  231. data/spec/chewy/search/parameters/track_scores_spec.rb +5 -0
  232. data/spec/chewy/search/parameters/types_spec.rb +5 -0
  233. data/spec/chewy/search/parameters/version_spec.rb +5 -0
  234. data/spec/chewy/search/parameters_spec.rb +145 -0
  235. data/spec/chewy/search/query_proxy_spec.rb +68 -0
  236. data/spec/chewy/search/request_spec.rb +685 -0
  237. data/spec/chewy/search/response_spec.rb +192 -0
  238. data/spec/chewy/search/scrolling_spec.rb +169 -0
  239. data/spec/chewy/search_spec.rb +37 -20
  240. data/spec/chewy/stash_spec.rb +95 -0
  241. data/spec/chewy/strategy/active_job_spec.rb +8 -2
  242. data/spec/chewy/strategy/atomic_spec.rb +4 -1
  243. data/spec/chewy/strategy/resque_spec.rb +8 -2
  244. data/spec/chewy/strategy/shoryuken_spec.rb +66 -0
  245. data/spec/chewy/strategy/sidekiq_spec.rb +10 -2
  246. data/spec/chewy/strategy_spec.rb +6 -6
  247. data/spec/chewy/type/actions_spec.rb +29 -10
  248. data/spec/chewy/type/adapter/active_record_spec.rb +357 -139
  249. data/spec/chewy/type/adapter/mongoid_spec.rb +220 -101
  250. data/spec/chewy/type/adapter/object_spec.rb +129 -40
  251. data/spec/chewy/type/adapter/sequel_spec.rb +304 -152
  252. data/spec/chewy/type/import/bulk_builder_spec.rb +279 -0
  253. data/spec/chewy/type/import/bulk_request_spec.rb +102 -0
  254. data/spec/chewy/type/import/journal_builder_spec.rb +95 -0
  255. data/spec/chewy/type/import/routine_spec.rb +110 -0
  256. data/spec/chewy/type/import_spec.rb +360 -244
  257. data/spec/chewy/type/mapping_spec.rb +96 -29
  258. data/spec/chewy/type/observe_spec.rb +25 -15
  259. data/spec/chewy/type/syncer_spec.rb +123 -0
  260. data/spec/chewy/type/witchcraft_spec.rb +122 -44
  261. data/spec/chewy/type/wrapper_spec.rb +63 -23
  262. data/spec/chewy/type_spec.rb +32 -10
  263. data/spec/chewy_spec.rb +82 -12
  264. data/spec/spec_helper.rb +16 -2
  265. data/spec/support/active_record.rb +6 -2
  266. data/spec/support/class_helpers.rb +4 -19
  267. data/spec/support/mongoid.rb +17 -5
  268. data/spec/support/sequel.rb +6 -1
  269. metadata +250 -57
  270. data/gemfiles/rails.3.2.activerecord.gemfile +0 -15
  271. data/gemfiles/rails.3.2.activerecord.kaminari.gemfile +0 -14
  272. data/gemfiles/rails.3.2.activerecord.will_paginate.gemfile +0 -14
  273. data/gemfiles/rails.4.0.activerecord.kaminari.gemfile +0 -14
  274. data/gemfiles/rails.4.0.activerecord.will_paginate.gemfile +0 -14
  275. data/gemfiles/rails.4.0.mongoid.4.0.0.gemfile +0 -15
  276. data/gemfiles/rails.4.0.mongoid.4.0.0.kaminari.gemfile +0 -14
  277. data/gemfiles/rails.4.0.mongoid.4.0.0.will_paginate.gemfile +0 -14
  278. data/gemfiles/rails.4.0.mongoid.5.1.0.gemfile +0 -15
  279. data/gemfiles/rails.4.0.mongoid.5.1.0.kaminari.gemfile +0 -14
  280. data/gemfiles/rails.4.0.mongoid.5.1.0.will_paginate.gemfile +0 -14
  281. data/gemfiles/rails.4.1.activerecord.kaminari.gemfile +0 -14
  282. data/gemfiles/rails.4.1.activerecord.will_paginate.gemfile +0 -14
  283. data/gemfiles/rails.4.1.mongoid.4.0.0.gemfile +0 -15
  284. data/gemfiles/rails.4.1.mongoid.4.0.0.kaminari.gemfile +0 -14
  285. data/gemfiles/rails.4.1.mongoid.4.0.0.will_paginate.gemfile +0 -14
  286. data/gemfiles/rails.4.1.mongoid.5.1.0.gemfile +0 -15
  287. data/gemfiles/rails.4.1.mongoid.5.1.0.kaminari.gemfile +0 -14
  288. data/gemfiles/rails.4.1.mongoid.5.1.0.will_paginate.gemfile +0 -14
  289. data/gemfiles/rails.4.2.activerecord.kaminari.gemfile +0 -15
  290. data/gemfiles/rails.4.2.activerecord.will_paginate.gemfile +0 -15
  291. data/gemfiles/rails.4.2.mongoid.4.0.0.gemfile +0 -15
  292. data/gemfiles/rails.4.2.mongoid.4.0.0.kaminari.gemfile +0 -14
  293. data/gemfiles/rails.4.2.mongoid.4.0.0.will_paginate.gemfile +0 -14
  294. data/gemfiles/rails.4.2.mongoid.5.1.0.gemfile +0 -15
  295. data/gemfiles/rails.4.2.mongoid.5.1.0.kaminari.gemfile +0 -14
  296. data/gemfiles/rails.4.2.mongoid.5.1.0.will_paginate.gemfile +0 -14
  297. data/gemfiles/rails.5.0.0.beta3.activerecord.gemfile +0 -16
  298. data/gemfiles/rails.5.0.0.beta3.activerecord.kaminari.gemfile +0 -16
  299. data/gemfiles/rails.5.0.0.beta3.activerecord.will_paginate.gemfile +0 -15
  300. data/gemfiles/sequel.4.31.gemfile +0 -13
  301. data/lib/chewy/query/pagination/will_paginate.rb +0 -27
  302. data/lib/chewy/query/scoping.rb +0 -20
  303. data/spec/chewy/query/pagination/will_paginage_spec.rb +0 -60
@@ -0,0 +1,685 @@
1
+ require 'spec_helper'
2
+
3
+ describe Chewy::Search::Request do
4
+ before { Chewy.massacre }
5
+
6
+ before do
7
+ stub_index(:products) do
8
+ define_type :product do
9
+ field :id, type: :integer
10
+ field :name
11
+ field :age, type: :integer
12
+ end
13
+ define_type :city do
14
+ field :id, type: :integer
15
+ end
16
+ define_type :country do
17
+ field :id, type: :integer
18
+ end
19
+ end
20
+
21
+ stub_index(:cities) do
22
+ define_type :city
23
+ end
24
+ end
25
+
26
+ subject { described_class.new(ProductsIndex) }
27
+
28
+ describe '#==' do
29
+ specify { expect(described_class.new(ProductsIndex)).to eq(described_class.new(ProductsIndex)) }
30
+ specify { expect(described_class.new(ProductsIndex)).not_to eq(described_class.new(CitiesIndex)) }
31
+ specify { expect(described_class.new(ProductsIndex)).not_to eq(described_class.new(ProductsIndex, CitiesIndex)) }
32
+ specify { expect(described_class.new(CitiesIndex, ProductsIndex)).to eq(described_class.new(ProductsIndex, CitiesIndex)) }
33
+ specify { expect(described_class.new(ProductsIndex::Product)).to eq(described_class.new(ProductsIndex::Product)) }
34
+ specify { expect(described_class.new(ProductsIndex::Product)).not_to eq(described_class.new(ProductsIndex::City)) }
35
+ specify { expect(described_class.new(ProductsIndex::Product)).not_to eq(described_class.new(ProductsIndex::Product, ProductsIndex::City)) }
36
+ specify { expect(described_class.new(ProductsIndex::City, ProductsIndex::Product)).to eq(described_class.new(ProductsIndex::Product, ProductsIndex::City)) }
37
+ specify { expect(described_class.new(ProductsIndex::City, CitiesIndex::City)).to eq(described_class.new(CitiesIndex::City, ProductsIndex::City)) }
38
+
39
+ specify { expect(described_class.new(ProductsIndex).limit(10)).to eq(described_class.new(ProductsIndex).limit(10)) }
40
+ specify { expect(described_class.new(ProductsIndex).limit(10)).not_to eq(described_class.new(ProductsIndex).limit(20)) }
41
+
42
+ specify { expect(ProductsIndex.limit(10)).to eq(ProductsIndex.limit(10)) }
43
+ specify { expect(ProductsIndex.limit(10)).not_to eq(CitiesIndex.limit(10)) }
44
+ end
45
+
46
+ describe '#render' do
47
+ specify do
48
+ expect(subject.render)
49
+ .to match(
50
+ index: %w[products],
51
+ type: array_including(%w[product city country]),
52
+ body: {}
53
+ )
54
+ end
55
+ end
56
+
57
+ describe '#inspect' do
58
+ specify do
59
+ expect(described_class.new(ProductsIndex).inspect)
60
+ .to eq('<Chewy::Search::Request {:index=>["products"], :type=>["city", "country", "product"], :body=>{}}>')
61
+ end
62
+ specify do
63
+ expect(ProductsIndex.limit(10).inspect)
64
+ .to eq('<ProductsIndex::Query {:index=>["products"], :type=>["city", "country", "product"], :body=>{:size=>10}}>')
65
+ end
66
+ end
67
+
68
+ %i[query post_filter].each do |name|
69
+ describe "##{name}" do
70
+ specify { expect(subject.send(name, match: {foo: 'bar'}).render[:body]).to include(name => {match: {foo: 'bar'}}) }
71
+ specify { expect(subject.send(name, nil)).to be_a described_class }
72
+ specify { expect(subject.send(name) { match foo: 'bar' }.render[:body]).to include(name => {match: {foo: 'bar'}}) }
73
+ specify do
74
+ expect(subject.send(name, match: {foo: 'bar'}).send(name) { multi_match foo: 'bar' }.render[:body])
75
+ .to include(name => {bool: {must: [{match: {foo: 'bar'}}, {multi_match: {foo: 'bar'}}]}})
76
+ end
77
+ specify { expect { subject.send(name, match: {foo: 'bar'}) }.not_to change { subject.render } }
78
+ specify do
79
+ expect(subject.send(name).should(match: {foo: 'bar'}).send(name).must_not { multi_match foo: 'bar' }.render[:body])
80
+ .to include(name => {bool: {should: {match: {foo: 'bar'}}, must_not: {multi_match: {foo: 'bar'}}}})
81
+ end
82
+
83
+ context do
84
+ let(:other_scope) { subject.send(name).should { multi_match foo: 'bar' }.send(name) { match foo: 'bar' } }
85
+
86
+ specify do
87
+ expect(subject.send(name).not(other_scope).render[:body])
88
+ .to include(name => {bool: {must_not: {bool: {must: {match: {foo: 'bar'}}, should: {multi_match: {foo: 'bar'}}}}}})
89
+ end
90
+ end
91
+ end
92
+ end
93
+
94
+ describe '#filter' do
95
+ specify { expect(subject.filter(match: {foo: 'bar'}).render[:body]).to include(query: {bool: {filter: {match: {foo: 'bar'}}}}) }
96
+ specify { expect(subject.filter(nil)).to be_a described_class }
97
+ specify { expect(subject.filter { match foo: 'bar' }.render[:body]).to include(query: {bool: {filter: {match: {foo: 'bar'}}}}) }
98
+ specify do
99
+ expect(subject.filter(match: {foo: 'bar'}).filter { multi_match foo: 'bar' }.render[:body])
100
+ .to include(query: {bool: {filter: [{match: {foo: 'bar'}}, {multi_match: {foo: 'bar'}}]}})
101
+ end
102
+ specify { expect { subject.filter(match: {foo: 'bar'}) }.not_to change { subject.render } }
103
+ specify do
104
+ expect(subject.filter.should(match: {foo: 'bar'}).filter.must_not { multi_match foo: 'bar' }.render[:body])
105
+ .to include(query: {bool: {filter: {bool: {should: {match: {foo: 'bar'}}, must_not: {multi_match: {foo: 'bar'}}}}}})
106
+ end
107
+
108
+ context do
109
+ let(:other_scope) { subject.filter.should { multi_match foo: 'bar' }.filter { match foo: 'bar' } }
110
+
111
+ specify do
112
+ expect(subject.filter.not(other_scope).render[:body])
113
+ .to include(query: {bool: {filter: {bool: {must_not: {bool: {must: {match: {foo: 'bar'}}, should: {multi_match: {foo: 'bar'}}}}}}}})
114
+ end
115
+ end
116
+ end
117
+
118
+ {limit: :size, offset: :from, terminate_after: :terminate_after}.each do |name, param_name|
119
+ describe "##{name}" do
120
+ specify { expect(subject.send(name, 10).render[:body]).to include(param_name => 10) }
121
+ specify { expect(subject.send(name, 10).send(name, 20).render[:body]).to include(param_name => 20) }
122
+ specify { expect(subject.send(name, 10).send(name, nil).render[:body]).to be_blank }
123
+ specify { expect { subject.send(name, 10) }.not_to change { subject.render } }
124
+ end
125
+ end
126
+
127
+ describe '#order' do
128
+ specify { expect(subject.order(:foo).render[:body]).to include(sort: ['foo']) }
129
+ specify { expect(subject.order(foo: 42).order(nil).render[:body]).to include(sort: ['foo' => 42]) }
130
+ specify { expect(subject.order(foo: 42).order(foo: 43).render[:body]).to include(sort: ['foo' => 43]) }
131
+ specify { expect(subject.order(:foo).order(:bar, :baz).render[:body]).to include(sort: %w[foo bar baz]) }
132
+ specify { expect(subject.order(nil).render[:body]).to be_blank }
133
+ specify { expect { subject.order(:foo) }.not_to change { subject.render } }
134
+ end
135
+
136
+ describe '#reorder' do
137
+ specify { expect(subject.reorder(:foo).render[:body]).to include(sort: ['foo']) }
138
+ specify { expect(subject.reorder(:foo).reorder(:bar, :baz).render[:body]).to include(sort: %w[bar baz]) }
139
+ specify { expect(subject.reorder(foo: 42).reorder(foo: 43).render[:body]).to include(sort: ['foo' => 43]) }
140
+ specify { expect(subject.reorder(foo: 42).reorder(nil).render[:body]).to be_blank }
141
+ specify { expect(subject.reorder(nil).render[:body]).to be_blank }
142
+ specify { expect { subject.reorder(:foo) }.not_to change { subject.render } }
143
+ end
144
+
145
+ %i[track_scores explain version profile].each do |name|
146
+ describe "##{name}" do
147
+ specify { expect(subject.send(name).render[:body]).to include(name => true) }
148
+ specify { expect(subject.send(name).send(name, false).render[:body]).to be_blank }
149
+ specify { expect { subject.send(name) }.not_to change { subject.render } }
150
+ end
151
+ end
152
+
153
+ describe '#request_cache' do
154
+ specify { expect(subject.request_cache(true).render).to include(request_cache: true) }
155
+ specify { expect(subject.request_cache(true).request_cache(false).render).to include(request_cache: false) }
156
+ specify { expect(subject.request_cache(true).request_cache(nil).render[:request_cache]).to be_blank }
157
+ specify { expect { subject.request_cache(true) }.not_to change { subject.render } }
158
+ end
159
+
160
+ describe '#search_type' do
161
+ specify { expect(subject.search_type('foo').render).to include(search_type: 'foo') }
162
+ specify { expect(subject.search_type('foo').search_type('bar').render).to include(search_type: 'bar') }
163
+ specify { expect(subject.search_type('foo').search_type(nil).render[:search_type]).to be_blank }
164
+ specify { expect { subject.search_type('foo') }.not_to change { subject.render } }
165
+ end
166
+
167
+ %i[preference timeout].each do |name|
168
+ describe "##{name}" do
169
+ specify { expect(subject.send(name, :foo).render[:body]).to include(name => 'foo') }
170
+ specify { expect(subject.send(name, :foo).send(name, :bar).render[:body]).to include(name => 'bar') }
171
+ specify { expect(subject.send(name, :foo).send(name, nil).render[:body]).to be_blank }
172
+ specify { expect { subject.send(name, :foo) }.not_to change { subject.render } }
173
+ end
174
+ end
175
+
176
+ describe '#source' do
177
+ specify { expect(subject.source(:foo).render[:body]).to include(_source: ['foo']) }
178
+ specify { expect(subject.source(:foo, :bar).source(nil).render[:body]).to include(_source: %w[foo bar]) }
179
+ specify { expect(subject.source(%i[foo bar]).source(nil).render[:body]).to include(_source: %w[foo bar]) }
180
+ specify { expect(subject.source(excludes: :foo).render[:body]).to include(_source: {excludes: %w[foo]}) }
181
+ specify { expect(subject.source(excludes: :foo).source(excludes: %i[foo bar]).render[:body]).to include(_source: {excludes: %w[foo bar]}) }
182
+ specify { expect(subject.source(excludes: :foo).source(excludes: %i[foo bar]).render[:body]).to include(_source: {excludes: %w[foo bar]}) }
183
+ specify { expect(subject.source(excludes: :foo).source(:bar).render[:body]).to include(_source: {includes: %w[bar], excludes: %w[foo]}) }
184
+ specify { expect(subject.source(excludes: :foo).source(false).render[:body]).to include(_source: false) }
185
+ specify { expect(subject.source(excludes: :foo).source(false).source(excludes: :bar).render[:body]).to include(_source: {excludes: %w[foo bar]}) }
186
+ specify { expect(subject.source(excludes: :foo).source(false).source(true).render[:body]).to include(_source: {excludes: %w[foo]}) }
187
+ specify { expect(subject.source(nil).render[:body]).to be_blank }
188
+ specify { expect { subject.source(:foo) }.not_to change { subject.render } }
189
+ end
190
+
191
+ describe '#stored_fields' do
192
+ specify { expect(subject.stored_fields(:foo).render[:body]).to include(stored_fields: ['foo']) }
193
+ specify { expect(subject.stored_fields(%i[foo bar]).stored_fields(nil).render[:body]).to include(stored_fields: %w[foo bar]) }
194
+ specify { expect(subject.stored_fields(:foo).stored_fields(:foo, :bar).render[:body]).to include(stored_fields: %w[foo bar]) }
195
+ specify { expect(subject.stored_fields(:foo).stored_fields(false).render[:body]).to include(stored_fields: '_none_') }
196
+ specify { expect(subject.stored_fields(:foo).stored_fields(false).stored_fields(:bar).render[:body]).to include(stored_fields: %w[foo bar]) }
197
+ specify { expect(subject.stored_fields(:foo).stored_fields(false).stored_fields(true).render[:body]).to include(stored_fields: %w[foo]) }
198
+ specify { expect(subject.stored_fields(nil).render[:body]).to be_blank }
199
+ specify { expect { subject.stored_fields(:foo) }.not_to change { subject.render } }
200
+ end
201
+
202
+ %i[script_fields highlight].each do |name|
203
+ describe "##{name}" do
204
+ specify { expect(subject.send(name, foo: {bar: 42}).render[:body]).to include(name => {'foo' => {bar: 42}}) }
205
+ specify { expect(subject.send(name, foo: {bar: 42}).send(name, moo: {baz: 43}).render[:body]).to include(name => {'foo' => {bar: 42}, 'moo' => {baz: 43}}) }
206
+ specify { expect(subject.send(name, foo: {bar: 42}).send(name, nil).render[:body]).to include(name => {'foo' => {bar: 42}}) }
207
+ specify { expect { subject.send(name, foo: {bar: 42}) }.not_to change { subject.render } }
208
+ end
209
+ end
210
+
211
+ %i[suggest aggs].each do |name|
212
+ describe "##{name}" do
213
+ specify { expect(subject.send(name, foo: {bar: 42}).render[:body]).to include(name => {'foo' => {bar: 42}}) }
214
+ specify { expect(subject.send(name, foo: {bar: 42}).send(name, moo: {baz: 43}).render[:body]).to include(name => {'foo' => {bar: 42}, 'moo' => {baz: 43}}) }
215
+ specify { expect(subject.send(name, foo: {bar: 42}).send(name, nil).render[:body]).to include(name => {'foo' => {bar: 42}}) }
216
+ specify { expect { subject.send(name, foo: {bar: 42}) }.not_to change { subject.render } }
217
+ end
218
+ end
219
+
220
+ describe '#docvalue_fields' do
221
+ specify { expect(subject.docvalue_fields(:foo).render[:body]).to include(docvalue_fields: ['foo']) }
222
+ specify { expect(subject.docvalue_fields(%i[foo bar]).docvalue_fields(nil).render[:body]).to include(docvalue_fields: %w[foo bar]) }
223
+ specify { expect(subject.docvalue_fields(:foo).docvalue_fields(:foo, :bar).render[:body]).to include(docvalue_fields: %w[foo bar]) }
224
+ specify { expect(subject.docvalue_fields(nil).render[:body]).to be_blank }
225
+ specify { expect { subject.docvalue_fields(:foo) }.not_to change { subject.render } }
226
+ end
227
+
228
+ describe '#indices' do
229
+ specify { expect(described_class.new(:products).render[:index]).to eq(%w[products]) }
230
+ specify { expect(subject.indices(:cities).render[:index]).to eq(%w[cities products]) }
231
+ specify { expect(subject.indices(CitiesIndex, :whatever).render[:index]).to eq(%w[cities products whatever]) }
232
+ specify { expect(subject.indices([CitiesIndex, :products]).render[:index]).to eq(%w[cities products]) }
233
+ specify { expect { subject.indices(:cities) }.not_to change { subject.render } }
234
+ end
235
+
236
+ describe '#types' do
237
+ specify { expect(subject.types(:product).render[:type]).to contain_exactly('product') }
238
+ specify { expect(described_class.new(ProductsIndex::City).types(ProductsIndex::Country).render[:type]).to match_array(%w[city country]) }
239
+ specify { expect(subject.types(%i[product city]).types(nil).render[:type]).to match_array(%w[product city]) }
240
+ specify { expect(subject.types(:product).types(:product, :city, :something).render[:type]).to match_array(%w[product city]) }
241
+ specify { expect(subject.types(nil).render[:body]).to be_blank }
242
+ specify { expect { subject.types(:product) }.not_to change { subject.render } }
243
+ end
244
+
245
+ describe '#indices_boost' do
246
+ specify { expect(subject.indices_boost(foo: 1.2).render[:body]).to include(indices_boost: [{'foo' => 1.2}]) }
247
+ specify { expect(subject.indices_boost(foo: 1.2).indices_boost(moo: 1.3).render[:body]).to include(indices_boost: [{'foo' => 1.2}, {'moo' => 1.3}]) }
248
+ specify { expect(subject.indices_boost(foo: 1.2).indices_boost(nil).render[:body]).to include(indices_boost: [{'foo' => 1.2}]) }
249
+ specify { expect { subject.indices_boost(foo: 1.2) }.not_to change { subject.render } }
250
+ end
251
+
252
+ describe '#rescore' do
253
+ specify { expect(subject.rescore(foo: 42).render[:body]).to include(rescore: [{foo: 42}]) }
254
+ specify { expect(subject.rescore(foo: 42).rescore(moo: 43).render[:body]).to include(rescore: [{foo: 42}, {moo: 43}]) }
255
+ specify { expect(subject.rescore(foo: 42).rescore(nil).render[:body]).to include(rescore: [{foo: 42}]) }
256
+ specify { expect { subject.rescore(foo: 42) }.not_to change { subject.render } }
257
+ end
258
+
259
+ describe '#min_score' do
260
+ specify { expect(subject.min_score(1.2).render[:body]).to include(min_score: 1.2) }
261
+ specify { expect(subject.min_score(1.2).min_score(0.5).render[:body]).to include(min_score: 0.5) }
262
+ specify { expect(subject.min_score(1.2).min_score(nil).render[:body]).to be_blank }
263
+ specify { expect { subject.min_score(1.2) }.not_to change { subject.render } }
264
+ end
265
+
266
+ describe '#search_after' do
267
+ specify { expect(subject.search_after(:foo, :bar).render[:body]).to include(search_after: %i[foo bar]) }
268
+ specify { expect(subject.search_after(%i[foo bar]).search_after(:baz).render[:body]).to include(search_after: [:baz]) }
269
+ specify { expect(subject.search_after(:foo).search_after(nil).render[:body]).to be_blank }
270
+ specify { expect { subject.search_after(:foo) }.not_to change { subject.render } }
271
+ end
272
+
273
+ context 'loading', :orm do
274
+ before do
275
+ stub_model(:city)
276
+ stub_model(:country)
277
+
278
+ stub_index(:places) do
279
+ define_type City do
280
+ field :rating, type: 'integer'
281
+ end
282
+
283
+ define_type Country do
284
+ field :rating, type: 'integer'
285
+ end
286
+ end
287
+ end
288
+
289
+ before { PlacesIndex.import!(cities: cities, countries: countries) }
290
+
291
+ let(:cities) { Array.new(2) { |i| City.create!(rating: i) } }
292
+ let(:countries) { Array.new(2) { |i| Country.create!(rating: i + 2) } }
293
+
294
+ subject { described_class.new(PlacesIndex).order(:rating) }
295
+
296
+ describe '#objects' do
297
+ specify { expect(subject.objects).to eq([*cities, *countries]) }
298
+ specify { expect(subject.objects.class).to eq(Array) }
299
+ end
300
+
301
+ describe '#load' do
302
+ specify { expect(subject.load(only: 'city')).to eq([*cities, *countries]) }
303
+ specify { expect(subject.load(only: 'city').map(&:class).uniq).to eq([PlacesIndex::City, PlacesIndex::Country]) }
304
+ specify { expect(subject.load(only: 'city').objects).to eq([*cities, nil, nil]) }
305
+ end
306
+ end
307
+
308
+ describe '#merge' do
309
+ let(:first) { described_class.new(ProductsIndex).limit(10).offset(10) }
310
+ let(:second) { described_class.new(ProductsIndex).offset(20).order(:foo) }
311
+
312
+ specify { expect(first.merge(second)).to eq(described_class.new(ProductsIndex).limit(10).offset(20).order(:foo)) }
313
+ specify { expect { first.merge(second) }.not_to change { first.render } }
314
+ specify { expect { first.merge(second) }.not_to change { second.render } }
315
+
316
+ specify { expect(second.merge(first)).to eq(described_class.new(ProductsIndex).limit(10).offset(10).order(:foo)) }
317
+ specify { expect { second.merge(first) }.not_to change { first.render } }
318
+ specify { expect { second.merge(first) }.not_to change { second.render } }
319
+ end
320
+
321
+ context do
322
+ let(:first_scope) { subject.query(foo: 'bar').filter.should(moo: 'baz').post_filter.must_not(boo: 'baf').limit(10) }
323
+ let(:second_scope) { subject.filter(foo: 'bar').post_filter.should(moo: 'baz').query.must_not(boo: 'baf').limit(20) }
324
+
325
+ describe '#and' do
326
+ specify do
327
+ expect(first_scope.and(second_scope).render[:body]).to eq(
328
+ query: {bool: {
329
+ must: [{foo: 'bar'}, {bool: {must_not: {boo: 'baf'}}}],
330
+ filter: [{bool: {should: {moo: 'baz'}}}, {foo: 'bar'}]
331
+ }},
332
+ post_filter: {bool: {must: [{bool: {must_not: {boo: 'baf'}}}, {bool: {should: {moo: 'baz'}}}]}},
333
+ size: 10
334
+ )
335
+ end
336
+ specify { expect { first_scope.and(second_scope) }.not_to change { first_scope.render } }
337
+ specify { expect { first_scope.and(second_scope) }.not_to change { second_scope.render } }
338
+ end
339
+
340
+ describe '#or' do
341
+ specify do
342
+ expect(first_scope.or(second_scope).render[:body]).to eq(
343
+ query: {bool: {
344
+ should: [{foo: 'bar'}, {bool: {must_not: {boo: 'baf'}}}],
345
+ filter: {bool: {should: [{bool: {should: {moo: 'baz'}}}, {foo: 'bar'}]}}
346
+ }},
347
+ post_filter: {bool: {should: [{bool: {must_not: {boo: 'baf'}}}, {bool: {should: {moo: 'baz'}}}]}},
348
+ size: 10
349
+ )
350
+ end
351
+ specify { expect { first_scope.or(second_scope) }.not_to change { first_scope.render } }
352
+ specify { expect { first_scope.or(second_scope) }.not_to change { second_scope.render } }
353
+ end
354
+
355
+ describe '#not' do
356
+ specify do
357
+ expect(first_scope.not(second_scope).render[:body]).to eq(
358
+ query: {bool: {
359
+ must: {foo: 'bar'}, must_not: {bool: {must_not: {boo: 'baf'}}},
360
+ filter: {bool: {should: {moo: 'baz'}, must_not: {foo: 'bar'}}}
361
+ }},
362
+ post_filter: {bool: {must_not: [{boo: 'baf'}, {bool: {should: {moo: 'baz'}}}]}},
363
+ size: 10
364
+ )
365
+ end
366
+ specify { expect { first_scope.not(second_scope) }.not_to change { first_scope.render } }
367
+ specify { expect { first_scope.not(second_scope) }.not_to change { second_scope.render } }
368
+ end
369
+ end
370
+
371
+ describe '#only' do
372
+ subject { described_class.new(ProductsIndex).limit(10).offset(10) }
373
+
374
+ specify { expect(subject.only(:limit)).to eq(described_class.new(ProductsIndex).limit(10)) }
375
+ specify { expect { subject.only(:limit) }.not_to change { subject.render } }
376
+ end
377
+
378
+ describe '#except' do
379
+ subject { described_class.new(ProductsIndex).limit(10).offset(10) }
380
+
381
+ specify { expect(subject.except(:limit)).to eq(described_class.new(ProductsIndex).offset(10)) }
382
+ specify { expect { subject.except(:limit) }.not_to change { subject.render } }
383
+ end
384
+
385
+ context 'index does not exist' do
386
+ specify { expect(subject).to eq([]) }
387
+ specify { expect(subject.count).to eq(0) }
388
+ end
389
+
390
+ context 'integration' do
391
+ let(:products) { Array.new(3) { |i| {id: i.next.to_i, name: "Name#{i.next}", age: 10 * i.next}.stringify_keys! } }
392
+ let(:cities) { Array.new(3) { |i| {id: (i.next + 3).to_i}.stringify_keys! } }
393
+ let(:countries) { Array.new(3) { |i| {id: (i.next + 6).to_i}.stringify_keys! } }
394
+ before do
395
+ ProductsIndex::Product.import!(products.map { |h| double(h) })
396
+ ProductsIndex::City.import!(cities.map { |h| double(h) })
397
+ ProductsIndex::Country.import!(countries.map { |h| double(h) })
398
+ CitiesIndex::City.import!(cities.map { |h| double(h) })
399
+ end
400
+
401
+ specify { expect(subject[0]._data).to be_a Hash }
402
+
403
+ context 'another index' do
404
+ subject { described_class.new(CitiesIndex) }
405
+
406
+ specify { expect(subject.count).to eq(3) }
407
+ specify { expect(subject.size).to eq(3) }
408
+ end
409
+
410
+ context 'limited types' do
411
+ subject { described_class.new(ProductsIndex::City, ProductsIndex::Country) }
412
+
413
+ specify { expect(subject.count).to eq(6) }
414
+ specify { expect(subject.size).to eq(6) }
415
+ end
416
+
417
+ context 'mixed types' do
418
+ subject { described_class.new(CitiesIndex, ProductsIndex::Product) }
419
+
420
+ specify { expect(subject.count).to eq(9) }
421
+ specify { expect(subject.size).to eq(9) }
422
+ end
423
+
424
+ context 'instrumentation' do
425
+ specify do
426
+ outer_payload = nil
427
+ ActiveSupport::Notifications.subscribe('search_query.chewy') do |_name, _start, _finish, _id, payload|
428
+ outer_payload = payload
429
+ end
430
+ subject.query(match: {name: 'name3'}).to_a
431
+ expect(outer_payload).to eq(
432
+ index: ProductsIndex,
433
+ indexes: [ProductsIndex],
434
+ request: {index: ['products'], type: %w[city country product], body: {query: {match: {name: 'name3'}}}},
435
+ type: [ProductsIndex::Product, ProductsIndex::City, ProductsIndex::Country],
436
+ types: [ProductsIndex::Product, ProductsIndex::City, ProductsIndex::Country]
437
+ )
438
+ end
439
+ end
440
+
441
+ describe '#none' do
442
+ specify { expect(subject.none).to eq([]) }
443
+ end
444
+
445
+ describe '#highlight' do
446
+ specify { expect(subject.query(match: {name: 'name3'}).highlight(fields: {name: {}}).first.name).to eq('Name3') }
447
+ specify { expect(subject.query(match: {name: 'name3'}).highlight(fields: {name: {}}).first.name_highlight).to eq('<em>Name3</em>') }
448
+ specify { expect(subject.query(match: {name: 'name3'}).highlight(fields: {name: {}}).first._data['_source']['name']).to eq('Name3') }
449
+ end
450
+
451
+ describe '#suggest' do
452
+ specify do
453
+ expect(subject.suggest(
454
+ foo: {
455
+ text: 'name',
456
+ term: {field: 'name'}
457
+ }
458
+ ).suggest).to eq(
459
+ 'foo' => [
460
+ {'text' => 'name', 'offset' => 0, 'length' => 4, 'options' => [
461
+ {'text' => 'name1', 'score' => 0.75, 'freq' => 1},
462
+ {'text' => 'name2', 'score' => 0.75, 'freq' => 1},
463
+ {'text' => 'name3', 'score' => 0.75, 'freq' => 1}
464
+ ]}
465
+ ]
466
+ )
467
+ end
468
+ end
469
+
470
+ describe '#aggs' do
471
+ specify do
472
+ expect(subject.aggs(avg_age: {avg: {field: :age}}).aggs)
473
+ .to eq('avg_age' => {'value' => 20.0})
474
+ end
475
+ end
476
+
477
+ describe '#size' do
478
+ specify { expect(subject.size).to eq(9) }
479
+ specify { expect(subject.limit(6).size).to eq(6) }
480
+ specify { expect(subject.offset(6).size).to eq(3) }
481
+ end
482
+
483
+ describe '#total' do
484
+ specify { expect(subject.limit(6).total).to eq(9) }
485
+ specify { expect(subject.limit(6).total_count).to eq(9) }
486
+ specify { expect(subject.offset(6).total_entries).to eq(9) }
487
+ end
488
+
489
+ describe '#count' do
490
+ specify { expect(subject.count).to eq(9) }
491
+ specify { expect(subject.limit(6).count).to eq(9) }
492
+ specify { expect(subject.offset(6).count).to eq(9) }
493
+ specify { expect(subject.types(:product, :something).count).to eq(3) }
494
+ specify { expect(subject.types(:product, :country).count).to eq(6) }
495
+ specify { expect(subject.filter(term: {age: 10}).count).to eq(1) }
496
+ specify { expect(subject.query(term: {age: 10}).count).to eq(1) }
497
+ specify { expect(subject.order(nil).count).to eq(9) }
498
+ specify { expect(subject.none.count).to eq(0) }
499
+
500
+ context do
501
+ before { expect(Chewy.client).to receive(:count).and_call_original }
502
+ specify { subject.count }
503
+ end
504
+
505
+ context do
506
+ subject { described_class.new(ProductsIndex).limit(6) }
507
+ before do
508
+ expect(Chewy.client).not_to receive(:count)
509
+ subject.total
510
+ end
511
+ specify { expect(subject.count).to eq(9) }
512
+ end
513
+ end
514
+
515
+ describe '#exists?' do
516
+ before { expect(Chewy.client).to receive(:search).once.and_call_original }
517
+
518
+ specify { expect(subject.exists?).to be(true) }
519
+ specify { expect(subject.filter(match: {name: 'foo'}).exist?).to be(false) }
520
+
521
+ context do
522
+ before { subject.total }
523
+ specify { expect(subject.exists?).to eq(true) }
524
+ end
525
+ end
526
+
527
+ describe '#first' do
528
+ subject { described_class.new(ProductsIndex).order(id: {order: 'desc'}) }
529
+
530
+ context do
531
+ before { expect(Chewy.client).to receive(:search).once.and_call_original }
532
+
533
+ specify { expect(subject.first).to be_a(ProductsIndex::Country).and have_attributes(id: 9) }
534
+ specify { expect(subject.first(3).map(&:id)).to eq([9, 8, 7]) }
535
+ specify { expect(subject.first(10).map(&:id)).to have(9).items }
536
+ specify { expect(subject.limit(5).first(10).map(&:id)).to have(9).items }
537
+ specify { expect(subject.terminate_after(5).first(10).map(&:id)).to have(5).items }
538
+ end
539
+
540
+ context do
541
+ before do
542
+ subject.response
543
+ expect(Chewy.client).not_to receive(:search)
544
+ end
545
+
546
+ specify { expect(subject.first).to be_a(ProductsIndex::Country).and have_attributes(id: 9) }
547
+ specify { expect(subject.first(3).map(&:id)).to eq([9, 8, 7]) }
548
+ specify { expect(subject.first(10).map(&:id)).to have(9).items }
549
+
550
+ context do
551
+ subject { described_class.new(ProductsIndex).terminate_after(5) }
552
+ specify { expect(subject.first(10).map(&:id)).to have(5).items }
553
+ end
554
+ end
555
+
556
+ context do
557
+ subject { described_class.new(ProductsIndex).limit(5) }
558
+ before do
559
+ subject.response
560
+ expect(Chewy.client).to receive(:search).once.and_call_original
561
+ end
562
+ specify { expect(subject.first(10).map(&:id)).to have(9).items }
563
+ end
564
+ end
565
+
566
+ describe '#find' do
567
+ specify { expect(subject.find('1')).to be_a(ProductsIndex::Product).and have_attributes(id: 1) }
568
+ specify { expect(subject.find { |w| w.id == 2 }).to be_a(ProductsIndex::Product).and have_attributes(id: 2) }
569
+ specify { expect(subject.limit(2).find('1', '3', '7').map(&:id)).to contain_exactly(1, 3, 7) }
570
+ specify { expect(subject.find(1, 3, 7).map(&:id)).to contain_exactly(1, 3, 7) }
571
+ specify { expect { subject.find('1', '3', '42') }.to raise_error Chewy::DocumentNotFound, 'Could not find documents for ids: 42' }
572
+ specify { expect { subject.find(1, 3, 42) }.to raise_error Chewy::DocumentNotFound, 'Could not find documents for ids: 42' }
573
+ specify { expect { subject.query(match: {name: 'name3'}).find('1', '3') }.to raise_error Chewy::DocumentNotFound, 'Could not find documents for ids: 1' }
574
+ specify { expect { subject.query(match: {name: 'name2'}).find('1', '3') }.to raise_error Chewy::DocumentNotFound, 'Could not find documents for ids: 1 and 3' }
575
+ specify { expect { subject.filter(match: {name: 'name2'}).find('1', '3') }.to raise_error Chewy::DocumentNotFound, 'Could not find documents for ids: 1 and 3' }
576
+ specify { expect { subject.post_filter(match: {name: 'name2'}).find('1', '3') }.to raise_error Chewy::DocumentNotFound, 'Could not find documents for ids: 1 and 3' }
577
+
578
+ context 'make sure it returns everything' do
579
+ let(:countries) { Array.new(6) { |i| {id: (i.next + 6).to_i}.stringify_keys! } }
580
+ before { expect(Chewy.client).not_to receive(:scroll) }
581
+
582
+ specify { expect(subject.find((1..12).to_a)).to have(12).items }
583
+ end
584
+
585
+ context 'make sure it returns everything in batches if needed' do
586
+ before { stub_const("#{described_class}::DEFAULT_BATCH_SIZE", 5) }
587
+ before { expect(Chewy.client).to receive(:scroll).once.and_call_original }
588
+
589
+ specify { expect(subject.find((1..9).to_a)).to have(9).items }
590
+ specify { expect(subject.find((1..9).to_a)).to all be_a(Chewy::Type) }
591
+ end
592
+ end
593
+
594
+ describe '#pluck' do
595
+ specify { expect(subject.limit(5).pluck(:_id)).to eq(%w[1 2 3 4 5]) }
596
+ specify { expect(subject.limit(5).pluck(:_id, :age)).to eq([['1', 10], ['2', 20], ['3', 30], ['4', nil], ['5', nil]]) }
597
+ specify { expect(subject.limit(5).source(:name).pluck(:id, :age)).to eq([[1, 10], [2, 20], [3, 30], [4, nil], [5, nil]]) }
598
+ specify do
599
+ expect(subject.limit(5).pluck(:_index, :_type, :name)).to eq([
600
+ %w[products product Name1],
601
+ %w[products product Name2],
602
+ %w[products product Name3],
603
+ ['products', 'city', nil],
604
+ ['products', 'city', nil]
605
+ ])
606
+ end
607
+
608
+ context 'make sure it returns everything in batches if needed' do
609
+ before { stub_const("#{described_class}::DEFAULT_PLUCK_BATCH_SIZE", 5) }
610
+ before { expect(Chewy.client).to receive(:scroll).once.and_call_original }
611
+
612
+ specify { expect(subject.pluck(:_id)).to eq((1..9).to_a.map(&:to_s)) }
613
+ end
614
+ end
615
+
616
+ describe '#delete_all' do
617
+ specify do
618
+ expect do
619
+ subject.none.delete_all
620
+ Chewy.client.indices.refresh(index: 'products')
621
+ end.not_to change { described_class.new(ProductsIndex).total }.from(9)
622
+ end
623
+ specify do
624
+ expect do
625
+ subject.query(match: {name: 'name3'}).delete_all
626
+ Chewy.client.indices.refresh(index: 'products')
627
+ end.to change { described_class.new(ProductsIndex).total }.from(9).to(8)
628
+ end
629
+ specify do
630
+ expect do
631
+ subject.filter(range: {age: {gte: 10, lte: 20}}).delete_all
632
+ Chewy.client.indices.refresh(index: 'products')
633
+ end.to change { described_class.new(ProductsIndex).total_count }.from(9).to(7)
634
+ end
635
+ specify do
636
+ expect do
637
+ subject.types(:product).delete_all
638
+ Chewy.client.indices.refresh(index: 'products')
639
+ end.to change { described_class.new(ProductsIndex::Product).total_entries }.from(3).to(0)
640
+ end
641
+ specify do
642
+ expect do
643
+ subject.delete_all
644
+ Chewy.client.indices.refresh(index: 'products')
645
+ end.to change { described_class.new(ProductsIndex).total }.from(9).to(0)
646
+ end
647
+ specify do
648
+ expect do
649
+ described_class.new(ProductsIndex::City).delete_all
650
+ Chewy.client.indices.refresh(index: 'products')
651
+ end.to change { described_class.new(ProductsIndex).total }.from(9).to(6)
652
+ end
653
+
654
+ specify do
655
+ outer_payload = nil
656
+ ActiveSupport::Notifications.subscribe('delete_query.chewy') do |_name, _start, _finish, _id, payload|
657
+ outer_payload = payload
658
+ end
659
+ subject.query(match: {name: 'name3'}).delete_all
660
+ expect(outer_payload).to eq(
661
+ index: ProductsIndex,
662
+ indexes: [ProductsIndex],
663
+ request: {index: ['products'], type: %w[city country product], body: {query: {match: {name: 'name3'}}}, refresh: true},
664
+ type: [ProductsIndex::Product, ProductsIndex::City, ProductsIndex::Country],
665
+ types: [ProductsIndex::Product, ProductsIndex::City, ProductsIndex::Country]
666
+ )
667
+ end
668
+
669
+ specify do
670
+ outer_payload = nil
671
+ ActiveSupport::Notifications.subscribe('delete_query.chewy') do |_name, _start, _finish, _id, payload|
672
+ outer_payload = payload
673
+ end
674
+ subject.query(match: {name: 'name3'}).delete_all(refresh: false)
675
+ expect(outer_payload).to eq(
676
+ index: ProductsIndex,
677
+ indexes: [ProductsIndex],
678
+ request: {index: ['products'], type: %w[city country product], body: {query: {match: {name: 'name3'}}}, refresh: false},
679
+ type: [ProductsIndex::Product, ProductsIndex::City, ProductsIndex::Country],
680
+ types: [ProductsIndex::Product, ProductsIndex::City, ProductsIndex::Country]
681
+ )
682
+ end
683
+ end
684
+ end
685
+ end