chewy 0.8.4 → 7.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.github/CODEOWNERS +1 -0
- data/.github/ISSUE_TEMPLATE/bug_report.md +39 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +16 -0
- data/.github/workflows/ruby.yml +74 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +61 -0
- data/.rubocop_todo.yml +132 -0
- data/.yardopts +5 -0
- data/CHANGELOG.md +554 -245
- data/CODE_OF_CONDUCT.md +14 -0
- data/CONTRIBUTING.md +63 -0
- data/Gemfile +14 -11
- data/Guardfile +8 -6
- data/LICENSE.txt +1 -1
- data/README.md +748 -623
- data/Rakefile +11 -1
- data/chewy.gemspec +15 -19
- data/gemfiles/rails.5.2.activerecord.gemfile +11 -0
- data/gemfiles/rails.6.0.activerecord.gemfile +11 -0
- data/gemfiles/rails.6.1.activerecord.gemfile +13 -0
- data/gemfiles/rails.7.0.activerecord.gemfile +13 -0
- data/lib/chewy/config.rb +64 -50
- data/lib/chewy/errors.rb +10 -16
- data/lib/chewy/fields/base.rb +122 -32
- data/lib/chewy/fields/root.rb +48 -23
- data/lib/chewy/index/actions.rb +140 -54
- data/lib/chewy/index/adapter/active_record.rb +112 -0
- data/lib/chewy/{type → index}/adapter/base.rb +31 -12
- data/lib/chewy/index/adapter/object.rb +249 -0
- data/lib/chewy/index/adapter/orm.rb +194 -0
- data/lib/chewy/index/aliases.rb +14 -4
- data/lib/chewy/index/crutch.rb +40 -0
- data/lib/chewy/index/import/bulk_builder.rb +311 -0
- data/lib/chewy/index/import/bulk_request.rb +77 -0
- data/lib/chewy/index/import/journal_builder.rb +44 -0
- data/lib/chewy/index/import/routine.rb +139 -0
- data/lib/chewy/index/import.rb +243 -0
- data/lib/chewy/{type → index}/mapping.rb +79 -68
- data/lib/chewy/index/observe/active_record_methods.rb +87 -0
- data/lib/chewy/index/observe/callback.rb +34 -0
- data/lib/chewy/index/observe.rb +17 -0
- data/lib/chewy/index/settings.rb +10 -5
- data/lib/chewy/index/specification.rb +61 -0
- data/lib/chewy/index/syncer.rb +221 -0
- data/lib/chewy/{type → index}/witchcraft.rb +100 -39
- data/lib/chewy/index/wrapper.rb +95 -0
- data/lib/chewy/index.rb +216 -140
- data/lib/chewy/journal.rb +66 -0
- data/lib/chewy/log_subscriber.rb +8 -8
- data/lib/chewy/minitest/helpers.rb +150 -0
- data/lib/chewy/minitest/search_index_receiver.rb +76 -0
- data/lib/chewy/minitest.rb +1 -0
- data/lib/chewy/multi_search.rb +62 -0
- data/lib/chewy/railtie.rb +12 -25
- data/lib/chewy/rake_helper.rb +335 -37
- data/lib/chewy/repository.rb +2 -2
- data/lib/chewy/rspec/build_query.rb +12 -0
- data/lib/chewy/rspec/helpers.rb +55 -0
- data/lib/chewy/rspec/update_index.rb +106 -90
- data/lib/chewy/rspec.rb +3 -1
- data/lib/chewy/runtime/version.rb +4 -4
- data/lib/chewy/runtime.rb +1 -1
- data/lib/chewy/search/loader.rb +61 -0
- data/lib/chewy/{query → search}/pagination/kaminari.rb +13 -5
- data/lib/chewy/search/parameters/aggs.rb +16 -0
- data/lib/chewy/search/parameters/allow_partial_search_results.rb +27 -0
- data/lib/chewy/search/parameters/collapse.rb +16 -0
- data/lib/chewy/search/parameters/concerns/bool_storage.rb +24 -0
- data/lib/chewy/search/parameters/concerns/hash_storage.rb +23 -0
- data/lib/chewy/search/parameters/concerns/integer_storage.rb +14 -0
- data/lib/chewy/search/parameters/concerns/query_storage.rb +238 -0
- data/lib/chewy/search/parameters/concerns/string_array_storage.rb +23 -0
- data/lib/chewy/search/parameters/concerns/string_storage.rb +14 -0
- data/lib/chewy/search/parameters/docvalue_fields.rb +12 -0
- data/lib/chewy/search/parameters/explain.rb +16 -0
- data/lib/chewy/search/parameters/filter.rb +47 -0
- data/lib/chewy/search/parameters/highlight.rb +16 -0
- data/lib/chewy/search/parameters/ignore_unavailable.rb +27 -0
- data/lib/chewy/search/parameters/indices.rb +78 -0
- data/lib/chewy/search/parameters/indices_boost.rb +52 -0
- data/lib/chewy/search/parameters/limit.rb +17 -0
- data/lib/chewy/search/parameters/load.rb +32 -0
- data/lib/chewy/search/parameters/min_score.rb +16 -0
- data/lib/chewy/search/parameters/none.rb +25 -0
- data/lib/chewy/search/parameters/offset.rb +17 -0
- data/lib/chewy/search/parameters/order.rb +51 -0
- data/lib/chewy/search/parameters/post_filter.rb +19 -0
- data/lib/chewy/search/parameters/preference.rb +16 -0
- data/lib/chewy/search/parameters/profile.rb +16 -0
- data/lib/chewy/search/parameters/query.rb +19 -0
- data/lib/chewy/search/parameters/request_cache.rb +27 -0
- data/lib/chewy/search/parameters/rescore.rb +29 -0
- data/lib/chewy/search/parameters/script_fields.rb +16 -0
- data/lib/chewy/search/parameters/search_after.rb +20 -0
- data/lib/chewy/search/parameters/search_type.rb +16 -0
- data/lib/chewy/search/parameters/source.rb +77 -0
- data/lib/chewy/search/parameters/storage.rb +95 -0
- data/lib/chewy/search/parameters/stored_fields.rb +63 -0
- data/lib/chewy/search/parameters/suggest.rb +16 -0
- data/lib/chewy/search/parameters/terminate_after.rb +16 -0
- data/lib/chewy/search/parameters/timeout.rb +16 -0
- data/lib/chewy/search/parameters/track_scores.rb +16 -0
- data/lib/chewy/search/parameters/track_total_hits.rb +16 -0
- data/lib/chewy/search/parameters/version.rb +16 -0
- data/lib/chewy/search/parameters.rb +170 -0
- data/lib/chewy/search/query_proxy.rb +264 -0
- data/lib/chewy/search/request.rb +1071 -0
- data/lib/chewy/search/response.rb +119 -0
- data/lib/chewy/search/scoping.rb +49 -0
- data/lib/chewy/search/scrolling.rb +137 -0
- data/lib/chewy/search.rb +68 -28
- data/lib/chewy/stash.rb +68 -0
- data/lib/chewy/strategy/active_job.rb +3 -2
- data/lib/chewy/strategy/atomic.rb +2 -4
- data/lib/chewy/strategy/atomic_no_refresh.rb +18 -0
- data/lib/chewy/strategy/base.rb +13 -3
- data/lib/chewy/strategy/bypass.rb +1 -2
- data/lib/chewy/strategy/delayed_sidekiq/scheduler.rb +148 -0
- data/lib/chewy/strategy/delayed_sidekiq/worker.rb +52 -0
- data/lib/chewy/strategy/delayed_sidekiq.rb +17 -0
- data/lib/chewy/strategy/lazy_sidekiq.rb +64 -0
- data/lib/chewy/strategy/sidekiq.rb +15 -2
- data/lib/chewy/strategy/urgent.rb +1 -1
- data/lib/chewy/strategy.rb +16 -20
- data/lib/chewy/version.rb +1 -1
- data/lib/chewy.rb +81 -82
- data/lib/generators/chewy/install_generator.rb +3 -3
- data/lib/tasks/chewy.rake +99 -32
- data/migration_guide.md +56 -0
- data/spec/chewy/config_spec.rb +87 -15
- data/spec/chewy/fields/base_spec.rb +542 -233
- data/spec/chewy/fields/root_spec.rb +115 -17
- data/spec/chewy/fields/time_fields_spec.rb +13 -12
- data/spec/chewy/index/actions_spec.rb +595 -77
- data/spec/chewy/index/adapter/active_record_spec.rb +601 -0
- data/spec/chewy/index/adapter/object_spec.rb +243 -0
- data/spec/chewy/index/aliases_spec.rb +5 -5
- data/spec/chewy/index/import/bulk_builder_spec.rb +494 -0
- data/spec/chewy/index/import/bulk_request_spec.rb +95 -0
- data/spec/chewy/index/import/journal_builder_spec.rb +87 -0
- data/spec/chewy/index/import/routine_spec.rb +110 -0
- data/spec/chewy/index/import_spec.rb +615 -0
- data/spec/chewy/index/mapping_spec.rb +135 -0
- data/spec/chewy/index/observe/active_record_methods_spec.rb +68 -0
- data/spec/chewy/index/observe/callback_spec.rb +139 -0
- data/spec/chewy/index/observe_spec.rb +143 -0
- data/spec/chewy/index/settings_spec.rb +103 -50
- data/spec/chewy/index/specification_spec.rb +159 -0
- data/spec/chewy/index/syncer_spec.rb +118 -0
- data/spec/chewy/index/witchcraft_spec.rb +245 -0
- data/spec/chewy/index/wrapper_spec.rb +100 -0
- data/spec/chewy/index_spec.rb +149 -121
- data/spec/chewy/journal_spec.rb +223 -0
- data/spec/chewy/minitest/helpers_spec.rb +198 -0
- data/spec/chewy/minitest/search_index_receiver_spec.rb +118 -0
- data/spec/chewy/multi_search_spec.rb +84 -0
- data/spec/chewy/rake_helper_spec.rb +656 -0
- data/spec/chewy/repository_spec.rb +8 -8
- data/spec/chewy/rspec/build_query_spec.rb +34 -0
- data/spec/chewy/rspec/helpers_spec.rb +61 -0
- data/spec/chewy/rspec/update_index_spec.rb +220 -114
- data/spec/chewy/runtime_spec.rb +2 -2
- data/spec/chewy/search/loader_spec.rb +83 -0
- data/spec/chewy/search/pagination/kaminari_examples.rb +69 -0
- data/spec/chewy/search/pagination/kaminari_spec.rb +21 -0
- data/spec/chewy/search/parameters/aggs_spec.rb +5 -0
- data/spec/chewy/search/parameters/bool_storage_examples.rb +53 -0
- data/spec/chewy/search/parameters/collapse_spec.rb +5 -0
- data/spec/chewy/search/parameters/docvalue_fields_spec.rb +5 -0
- data/spec/chewy/search/parameters/explain_spec.rb +5 -0
- data/spec/chewy/search/parameters/filter_spec.rb +5 -0
- data/spec/chewy/search/parameters/hash_storage_examples.rb +59 -0
- data/spec/chewy/search/parameters/highlight_spec.rb +5 -0
- data/spec/chewy/search/parameters/ignore_unavailable_spec.rb +67 -0
- data/spec/chewy/search/parameters/indices_spec.rb +99 -0
- data/spec/chewy/search/parameters/integer_storage_examples.rb +32 -0
- data/spec/chewy/search/parameters/limit_spec.rb +5 -0
- data/spec/chewy/search/parameters/load_spec.rb +60 -0
- data/spec/chewy/search/parameters/min_score_spec.rb +32 -0
- data/spec/chewy/search/parameters/none_spec.rb +5 -0
- data/spec/chewy/search/parameters/offset_spec.rb +5 -0
- data/spec/chewy/search/parameters/order_spec.rb +72 -0
- data/spec/chewy/search/parameters/post_filter_spec.rb +5 -0
- data/spec/chewy/search/parameters/preference_spec.rb +5 -0
- data/spec/chewy/search/parameters/profile_spec.rb +5 -0
- data/spec/chewy/search/parameters/query_spec.rb +5 -0
- data/spec/chewy/search/parameters/query_storage_examples.rb +434 -0
- data/spec/chewy/search/parameters/request_cache_spec.rb +67 -0
- data/spec/chewy/search/parameters/rescore_spec.rb +62 -0
- data/spec/chewy/search/parameters/script_fields_spec.rb +5 -0
- data/spec/chewy/search/parameters/search_after_spec.rb +35 -0
- data/spec/chewy/search/parameters/search_type_spec.rb +5 -0
- data/spec/chewy/search/parameters/source_spec.rb +162 -0
- data/spec/chewy/search/parameters/storage_spec.rb +60 -0
- data/spec/chewy/search/parameters/stored_fields_spec.rb +126 -0
- data/spec/chewy/search/parameters/string_array_storage_examples.rb +63 -0
- data/spec/chewy/search/parameters/string_storage_examples.rb +32 -0
- data/spec/chewy/search/parameters/suggest_spec.rb +5 -0
- data/spec/chewy/search/parameters/terminate_after_spec.rb +5 -0
- data/spec/chewy/search/parameters/timeout_spec.rb +5 -0
- data/spec/chewy/search/parameters/track_scores_spec.rb +5 -0
- data/spec/chewy/search/parameters/track_total_hits_spec.rb +5 -0
- data/spec/chewy/search/parameters/version_spec.rb +5 -0
- data/spec/chewy/search/parameters_spec.rb +161 -0
- data/spec/chewy/search/query_proxy_spec.rb +119 -0
- data/spec/chewy/search/request_spec.rb +880 -0
- data/spec/chewy/search/response_spec.rb +202 -0
- data/spec/chewy/search/scrolling_spec.rb +171 -0
- data/spec/chewy/search_spec.rb +82 -55
- data/spec/chewy/stash_spec.rb +85 -0
- data/spec/chewy/strategy/active_job_spec.rb +27 -8
- data/spec/chewy/strategy/atomic_no_refresh_spec.rb +60 -0
- data/spec/chewy/strategy/atomic_spec.rb +13 -11
- data/spec/chewy/strategy/delayed_sidekiq_spec.rb +190 -0
- data/spec/chewy/strategy/lazy_sidekiq_spec.rb +214 -0
- data/spec/chewy/strategy/sidekiq_spec.rb +19 -7
- data/spec/chewy/strategy_spec.rb +19 -15
- data/spec/chewy_spec.rb +65 -88
- data/spec/spec_helper.rb +11 -20
- data/spec/support/active_record.rb +48 -6
- data/spec/support/class_helpers.rb +4 -19
- metadata +299 -183
- data/.travis.yml +0 -76
- data/Appraisals +0 -76
- data/gemfiles/rails.3.2.activerecord.gemfile +0 -15
- data/gemfiles/rails.3.2.activerecord.kaminari.gemfile +0 -14
- data/gemfiles/rails.3.2.activerecord.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.0.activerecord.gemfile +0 -15
- data/gemfiles/rails.4.0.activerecord.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.0.activerecord.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.0.mongoid.4.0.0.gemfile +0 -15
- data/gemfiles/rails.4.0.mongoid.4.0.0.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.0.mongoid.4.0.0.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.0.mongoid.5.1.0.gemfile +0 -15
- data/gemfiles/rails.4.0.mongoid.5.1.0.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.0.mongoid.5.1.0.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.1.activerecord.gemfile +0 -15
- data/gemfiles/rails.4.1.activerecord.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.1.activerecord.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.1.mongoid.4.0.0.gemfile +0 -15
- data/gemfiles/rails.4.1.mongoid.4.0.0.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.1.mongoid.4.0.0.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.1.mongoid.5.1.0.gemfile +0 -15
- data/gemfiles/rails.4.1.mongoid.5.1.0.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.1.mongoid.5.1.0.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.2.activerecord.gemfile +0 -16
- data/gemfiles/rails.4.2.activerecord.kaminari.gemfile +0 -15
- data/gemfiles/rails.4.2.activerecord.will_paginate.gemfile +0 -15
- data/gemfiles/rails.4.2.mongoid.4.0.0.gemfile +0 -15
- data/gemfiles/rails.4.2.mongoid.4.0.0.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.2.mongoid.4.0.0.will_paginate.gemfile +0 -14
- data/gemfiles/rails.4.2.mongoid.5.1.0.gemfile +0 -15
- data/gemfiles/rails.4.2.mongoid.5.1.0.kaminari.gemfile +0 -14
- data/gemfiles/rails.4.2.mongoid.5.1.0.will_paginate.gemfile +0 -14
- data/gemfiles/rails.5.0.0.beta3.activerecord.gemfile +0 -16
- data/gemfiles/rails.5.0.0.beta3.activerecord.kaminari.gemfile +0 -16
- data/gemfiles/rails.5.0.0.beta3.activerecord.will_paginate.gemfile +0 -15
- data/gemfiles/sequel.4.31.gemfile +0 -13
- data/lib/chewy/backports/deep_dup.rb +0 -46
- data/lib/chewy/backports/duplicable.rb +0 -90
- data/lib/chewy/query/compose.rb +0 -69
- data/lib/chewy/query/criteria.rb +0 -181
- data/lib/chewy/query/filters.rb +0 -227
- data/lib/chewy/query/loading.rb +0 -111
- data/lib/chewy/query/nodes/and.rb +0 -25
- data/lib/chewy/query/nodes/base.rb +0 -17
- data/lib/chewy/query/nodes/bool.rb +0 -32
- data/lib/chewy/query/nodes/equal.rb +0 -34
- data/lib/chewy/query/nodes/exists.rb +0 -20
- data/lib/chewy/query/nodes/expr.rb +0 -28
- data/lib/chewy/query/nodes/field.rb +0 -106
- data/lib/chewy/query/nodes/has_child.rb +0 -14
- data/lib/chewy/query/nodes/has_parent.rb +0 -14
- data/lib/chewy/query/nodes/has_relation.rb +0 -61
- data/lib/chewy/query/nodes/match_all.rb +0 -11
- data/lib/chewy/query/nodes/missing.rb +0 -20
- data/lib/chewy/query/nodes/not.rb +0 -25
- data/lib/chewy/query/nodes/or.rb +0 -25
- data/lib/chewy/query/nodes/prefix.rb +0 -18
- data/lib/chewy/query/nodes/query.rb +0 -20
- data/lib/chewy/query/nodes/range.rb +0 -63
- data/lib/chewy/query/nodes/raw.rb +0 -15
- data/lib/chewy/query/nodes/regexp.rb +0 -31
- data/lib/chewy/query/nodes/script.rb +0 -20
- data/lib/chewy/query/pagination/will_paginate.rb +0 -27
- data/lib/chewy/query/pagination.rb +0 -16
- data/lib/chewy/query/scoping.rb +0 -20
- data/lib/chewy/query.rb +0 -1026
- data/lib/chewy/strategy/resque.rb +0 -26
- data/lib/chewy/type/actions.rb +0 -19
- data/lib/chewy/type/adapter/active_record.rb +0 -72
- data/lib/chewy/type/adapter/mongoid.rb +0 -58
- data/lib/chewy/type/adapter/object.rb +0 -89
- data/lib/chewy/type/adapter/orm.rb +0 -156
- data/lib/chewy/type/adapter/sequel.rb +0 -75
- data/lib/chewy/type/crutch.rb +0 -31
- data/lib/chewy/type/import.rb +0 -224
- data/lib/chewy/type/observe.rb +0 -76
- data/lib/chewy/type/wrapper.rb +0 -53
- data/lib/chewy/type.rb +0 -89
- data/lib/sequel/plugins/chewy_observe.rb +0 -78
- data/spec/chewy/query/criteria_spec.rb +0 -433
- data/spec/chewy/query/filters_spec.rb +0 -173
- data/spec/chewy/query/loading_spec.rb +0 -86
- data/spec/chewy/query/nodes/and_spec.rb +0 -16
- data/spec/chewy/query/nodes/bool_spec.rb +0 -22
- data/spec/chewy/query/nodes/equal_spec.rb +0 -32
- data/spec/chewy/query/nodes/exists_spec.rb +0 -18
- data/spec/chewy/query/nodes/has_child_spec.rb +0 -40
- data/spec/chewy/query/nodes/has_parent_spec.rb +0 -40
- data/spec/chewy/query/nodes/match_all_spec.rb +0 -11
- data/spec/chewy/query/nodes/missing_spec.rb +0 -15
- data/spec/chewy/query/nodes/not_spec.rb +0 -16
- data/spec/chewy/query/nodes/or_spec.rb +0 -16
- data/spec/chewy/query/nodes/prefix_spec.rb +0 -16
- data/spec/chewy/query/nodes/query_spec.rb +0 -12
- data/spec/chewy/query/nodes/range_spec.rb +0 -32
- data/spec/chewy/query/nodes/raw_spec.rb +0 -11
- data/spec/chewy/query/nodes/regexp_spec.rb +0 -31
- data/spec/chewy/query/nodes/script_spec.rb +0 -15
- data/spec/chewy/query/pagination/kaminari_spec.rb +0 -57
- data/spec/chewy/query/pagination/will_paginage_spec.rb +0 -60
- data/spec/chewy/query/pagination_spec.rb +0 -36
- data/spec/chewy/query_spec.rb +0 -632
- data/spec/chewy/strategy/resque_spec.rb +0 -40
- data/spec/chewy/type/actions_spec.rb +0 -31
- data/spec/chewy/type/adapter/active_record_spec.rb +0 -317
- data/spec/chewy/type/adapter/mongoid_spec.rb +0 -253
- data/spec/chewy/type/adapter/object_spec.rb +0 -139
- data/spec/chewy/type/adapter/sequel_spec.rb +0 -320
- data/spec/chewy/type/import_spec.rb +0 -433
- data/spec/chewy/type/mapping_spec.rb +0 -106
- data/spec/chewy/type/observe_spec.rb +0 -127
- data/spec/chewy/type/witchcraft_spec.rb +0 -154
- data/spec/chewy/type/wrapper_spec.rb +0 -58
- data/spec/chewy/type_spec.rb +0 -33
- data/spec/support/mongoid.rb +0 -81
- data/spec/support/sequel.rb +0 -75
@@ -0,0 +1,202 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Chewy::Search::Response, :orm do
|
4
|
+
before { Chewy.massacre }
|
5
|
+
|
6
|
+
before do
|
7
|
+
stub_model(:city)
|
8
|
+
stub_model(:country)
|
9
|
+
|
10
|
+
stub_index(:cities) do
|
11
|
+
index_scope City
|
12
|
+
field :name
|
13
|
+
field :rating, type: 'integer'
|
14
|
+
end
|
15
|
+
stub_index(:countries) do
|
16
|
+
index_scope Country
|
17
|
+
field :name
|
18
|
+
field :rating, type: 'integer'
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
before do
|
23
|
+
CitiesIndex.import!(cities: cities)
|
24
|
+
CountriesIndex.import!(countries)
|
25
|
+
end
|
26
|
+
|
27
|
+
let(:cities) { Array.new(2) { |i| City.create!(rating: i, name: "city #{i}") } }
|
28
|
+
let(:countries) { Array.new(2) { |i| Country.create!(rating: i + 2, name: "country #{i}") } }
|
29
|
+
|
30
|
+
let(:request) { Chewy::Search::Request.new(CitiesIndex, CountriesIndex).order(:rating) }
|
31
|
+
let(:raw_response) { request.send(:perform) }
|
32
|
+
let(:load_options) { {} }
|
33
|
+
let(:loader) { Chewy::Search::Loader.new(indexes: [CitiesIndex, CountriesIndex], **load_options) }
|
34
|
+
subject { described_class.new(raw_response, loader) }
|
35
|
+
|
36
|
+
describe '#hits' do
|
37
|
+
specify { expect(subject.hits).to be_a(Array) }
|
38
|
+
specify { expect(subject.hits).to have(4).items }
|
39
|
+
specify { expect(subject.hits).to all be_a(Hash) }
|
40
|
+
specify do
|
41
|
+
expect(subject.hits.flat_map(&:keys).uniq)
|
42
|
+
.to match_array(%w[_id _index _type _score _source sort])
|
43
|
+
end
|
44
|
+
|
45
|
+
context do
|
46
|
+
let(:raw_response) { {} }
|
47
|
+
specify { expect(subject.hits).to eq([]) }
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
describe '#total' do
|
52
|
+
specify { expect(subject.total).to eq(4) }
|
53
|
+
|
54
|
+
context do
|
55
|
+
let(:raw_response) { {} }
|
56
|
+
specify { expect(subject.total).to eq(0) }
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
describe '#max_score' do
|
61
|
+
specify { expect(subject.max_score).to be_nil }
|
62
|
+
|
63
|
+
context do
|
64
|
+
let(:request) { Chewy::Search::Request.new(CitiesIndex).query(range: {rating: {lte: 42}}) }
|
65
|
+
specify { expect(subject.max_score).to eq(1.0) }
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
describe '#took' do
|
70
|
+
specify { expect(subject.took).to be >= 0 }
|
71
|
+
|
72
|
+
context do
|
73
|
+
let(:request) do
|
74
|
+
Chewy::Search::Request.new(CitiesIndex)
|
75
|
+
.query(script: {script: {inline: 'sleep(100); true', lang: 'groovy'}})
|
76
|
+
end
|
77
|
+
specify do
|
78
|
+
pending
|
79
|
+
expect(subject.took).to be > 100
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
describe '#timed_out?' do
|
85
|
+
specify { expect(subject.timed_out?).to eq(false) }
|
86
|
+
|
87
|
+
context do
|
88
|
+
let(:request) do
|
89
|
+
Chewy::Search::Request.new(CitiesIndex)
|
90
|
+
.query(script: {script: {inline: 'sleep(100); true', lang: 'groovy'}}).timeout('10ms')
|
91
|
+
end
|
92
|
+
specify do
|
93
|
+
pending
|
94
|
+
expect(subject.timed_out?).to eq(true)
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
describe '#suggest' do
|
100
|
+
specify { expect(subject.suggest).to eq({}) }
|
101
|
+
|
102
|
+
context do
|
103
|
+
let(:request) do
|
104
|
+
Chewy::Search::Request.new(CitiesIndex).suggest(
|
105
|
+
my_suggestion: {
|
106
|
+
text: 'city country',
|
107
|
+
term: {
|
108
|
+
field: 'name'
|
109
|
+
}
|
110
|
+
}
|
111
|
+
)
|
112
|
+
end
|
113
|
+
specify do
|
114
|
+
expect(subject.suggest).to eq(
|
115
|
+
'my_suggestion' => [
|
116
|
+
{'text' => 'city', 'offset' => 0, 'length' => 4, 'options' => []},
|
117
|
+
{'text' => 'country', 'offset' => 5, 'length' => 7, 'options' => []}
|
118
|
+
]
|
119
|
+
)
|
120
|
+
end
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
describe '#aggs' do
|
125
|
+
specify { expect(subject.aggs).to eq({}) }
|
126
|
+
|
127
|
+
context do
|
128
|
+
let(:request) do
|
129
|
+
Chewy::Search::Request.new(CitiesIndex, CountriesIndex).aggs(avg_rating: {avg: {field: :rating}})
|
130
|
+
end
|
131
|
+
specify { expect(subject.aggs).to eq('avg_rating' => {'value' => 1.5}) }
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
135
|
+
describe '#wrappers' do
|
136
|
+
specify { expect(subject.wrappers).to be_a(Array) }
|
137
|
+
specify { expect(subject.wrappers).to have(4).items }
|
138
|
+
specify do
|
139
|
+
expect(subject.wrappers.map(&:class).uniq)
|
140
|
+
.to contain_exactly(CitiesIndex, CountriesIndex)
|
141
|
+
end
|
142
|
+
specify { expect(subject.wrappers.map(&:_data)).to eq(subject.hits) }
|
143
|
+
|
144
|
+
context do
|
145
|
+
let(:raw_response) { {} }
|
146
|
+
specify { expect(subject.wrappers).to eq([]) }
|
147
|
+
end
|
148
|
+
|
149
|
+
context do
|
150
|
+
let(:raw_response) { {'hits' => {}} }
|
151
|
+
specify { expect(subject.wrappers).to eq([]) }
|
152
|
+
end
|
153
|
+
|
154
|
+
context do
|
155
|
+
let(:raw_response) { {'hits' => {'hits' => []}} }
|
156
|
+
specify { expect(subject.wrappers).to eq([]) }
|
157
|
+
end
|
158
|
+
|
159
|
+
context do
|
160
|
+
let(:raw_response) do
|
161
|
+
{'hits' => {'hits' => [
|
162
|
+
{'_index' => 'cities',
|
163
|
+
'_type' => 'city',
|
164
|
+
'_id' => '1',
|
165
|
+
'_score' => 1.3,
|
166
|
+
'_source' => {'id' => 2, 'rating' => 0}}
|
167
|
+
]}}
|
168
|
+
end
|
169
|
+
specify { expect(subject.wrappers.first).to be_a(CitiesIndex) }
|
170
|
+
specify { expect(subject.wrappers.first.id).to eq(2) }
|
171
|
+
specify { expect(subject.wrappers.first.rating).to eq(0) }
|
172
|
+
specify { expect(subject.wrappers.first._score).to eq(1.3) }
|
173
|
+
specify { expect(subject.wrappers.first._explanation).to be_nil }
|
174
|
+
end
|
175
|
+
|
176
|
+
context do
|
177
|
+
let(:raw_response) do
|
178
|
+
{'hits' => {'hits' => [
|
179
|
+
{'_index' => 'countries',
|
180
|
+
'_type' => 'country',
|
181
|
+
'_id' => '2',
|
182
|
+
'_score' => 1.2,
|
183
|
+
'_explanation' => {foo: 'bar'}}
|
184
|
+
]}}
|
185
|
+
end
|
186
|
+
specify { expect(subject.wrappers.first).to be_a(CountriesIndex) }
|
187
|
+
specify { expect(subject.wrappers.first.id).to eq('2') }
|
188
|
+
specify { expect(subject.wrappers.first.rating).to be_nil }
|
189
|
+
specify { expect(subject.wrappers.first._score).to eq(1.2) }
|
190
|
+
specify { expect(subject.wrappers.first._explanation).to eq(foo: 'bar') }
|
191
|
+
end
|
192
|
+
end
|
193
|
+
|
194
|
+
describe '#objects' do
|
195
|
+
specify { expect(subject.objects).to eq([*cities, *countries]) }
|
196
|
+
end
|
197
|
+
|
198
|
+
describe '#object_hash' do
|
199
|
+
specify { expect(subject.object_hash.keys).to eq(subject.wrappers) }
|
200
|
+
specify { expect(subject.object_hash.values).to eq(subject.objects) }
|
201
|
+
end
|
202
|
+
end
|
@@ -0,0 +1,171 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Chewy::Search::Scrolling, :orm do
|
4
|
+
before { Chewy.massacre }
|
5
|
+
|
6
|
+
before do
|
7
|
+
stub_model(:city)
|
8
|
+
stub_model(:country)
|
9
|
+
|
10
|
+
stub_index(:cities) do
|
11
|
+
index_scope City
|
12
|
+
field :name
|
13
|
+
field :rating, type: 'integer'
|
14
|
+
end
|
15
|
+
stub_index(:countries) do
|
16
|
+
index_scope Country
|
17
|
+
field :name
|
18
|
+
field :rating, type: 'integer'
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
let(:request) { Chewy::Search::Request.new(CitiesIndex, CountriesIndex).order(:rating) }
|
23
|
+
|
24
|
+
specify { expect(request.scroll_batches.to_a).to eq([]) }
|
25
|
+
|
26
|
+
context do
|
27
|
+
before do
|
28
|
+
CitiesIndex.import!(cities)
|
29
|
+
CountriesIndex.import!(countries: countries)
|
30
|
+
end
|
31
|
+
|
32
|
+
let(:cities) { Array.new(2) { |i| City.create!(rating: i, name: "city #{i}") } }
|
33
|
+
let(:countries) { Array.new(3) { |i| Country.create!(rating: i + 2, name: "country #{i}") } }
|
34
|
+
|
35
|
+
describe '#scroll_batches' do
|
36
|
+
context do
|
37
|
+
before { expect(Chewy.client).to receive(:scroll).twice.and_call_original }
|
38
|
+
specify do
|
39
|
+
expect(request.scroll_batches(batch_size: 2).map do |batch|
|
40
|
+
batch.map { |hit| hit['_source']['rating'] }
|
41
|
+
end).to eq([[0, 1], [2, 3], [4]])
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
context do
|
46
|
+
before { expect(Chewy.client).to receive(:scroll).once.and_call_original }
|
47
|
+
specify do
|
48
|
+
expect(request.scroll_batches(batch_size: 3).map do |batch|
|
49
|
+
batch.map { |hit| hit['_source']['rating'] }
|
50
|
+
end).to eq([[0, 1, 2], [3, 4]])
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
context do
|
55
|
+
before { expect(Chewy.client).to receive(:scroll).once.and_call_original }
|
56
|
+
it 'respects limit' do
|
57
|
+
expect(request.limit(4).scroll_batches(batch_size: 3).map do |batch|
|
58
|
+
batch.map { |hit| hit['_source']['rating'] }
|
59
|
+
end).to eq([[0, 1, 2], [3]])
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
context do
|
64
|
+
before { expect(Chewy.client).not_to receive(:scroll) }
|
65
|
+
it 'respects limit and terminate_after' do
|
66
|
+
expect(request.terminate_after(1).limit(4).scroll_batches(batch_size: 3).map do |batch|
|
67
|
+
batch.map { |hit| hit['_source']['rating'] }
|
68
|
+
end).to eq([[0, 2]])
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
context do
|
73
|
+
before { expect(Chewy.client).not_to receive(:scroll) }
|
74
|
+
it 'respects limit' do
|
75
|
+
expect(request.limit(3).scroll_batches(batch_size: 3).map do |batch|
|
76
|
+
batch.map { |hit| hit['_source']['rating'] }
|
77
|
+
end).to eq([[0, 1, 2]])
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
context do
|
82
|
+
before { expect(Chewy.client).not_to receive(:scroll) }
|
83
|
+
it 'respects limit' do
|
84
|
+
expect(request.limit(2).scroll_batches(batch_size: 3).map do |batch|
|
85
|
+
batch.map { |hit| hit['_source']['rating'] }
|
86
|
+
end).to eq([[0, 1]])
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
context do
|
91
|
+
before { expect(Chewy.client).not_to receive(:scroll) }
|
92
|
+
specify do
|
93
|
+
expect(request.scroll_batches(batch_size: 5).map do |batch|
|
94
|
+
batch.map { |hit| hit['_source']['rating'] }
|
95
|
+
end).to eq([[0, 1, 2, 3, 4]])
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
context do
|
100
|
+
before { expect(Chewy.client).not_to receive(:scroll) }
|
101
|
+
specify do
|
102
|
+
expect(request.scroll_batches(batch_size: 10).map do |batch|
|
103
|
+
batch.map { |hit| hit['_source']['rating'] }
|
104
|
+
end).to eq([[0, 1, 2, 3, 4]])
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
it 'clears the scroll after completion' do
|
109
|
+
expect(Chewy.client).to receive(:clear_scroll).with(body: {scroll_id: anything}).once.and_call_original
|
110
|
+
request.scroll_batches(batch_size: 3) {}
|
111
|
+
end
|
112
|
+
|
113
|
+
context 'instrumentation' do
|
114
|
+
specify do
|
115
|
+
outer_payload = []
|
116
|
+
ActiveSupport::Notifications.subscribe('search_query.chewy') do |_name, _start, _finish, _id, payload|
|
117
|
+
outer_payload << payload
|
118
|
+
end
|
119
|
+
request.scroll_batches(batch_size: 3).to_a
|
120
|
+
expect(outer_payload).to match_array([
|
121
|
+
hash_including(
|
122
|
+
index: [CitiesIndex, CountriesIndex],
|
123
|
+
indexes: [CitiesIndex, CountriesIndex],
|
124
|
+
request: {index: %w[cities countries], body: {sort: ['rating']}, size: 3, scroll: '1m'}
|
125
|
+
),
|
126
|
+
hash_including(
|
127
|
+
index: [CitiesIndex, CountriesIndex],
|
128
|
+
indexes: [CitiesIndex, CountriesIndex],
|
129
|
+
request: {scroll: '1m', scroll_id: an_instance_of(String)}
|
130
|
+
)
|
131
|
+
])
|
132
|
+
end
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
describe '#scroll_hits' do
|
137
|
+
before { expect(Chewy.client).to receive(:scroll).twice.and_call_original }
|
138
|
+
specify do
|
139
|
+
expect(request.scroll_hits(batch_size: 2).map do |hit|
|
140
|
+
hit['_source']['rating']
|
141
|
+
end).to eq([0, 1, 2, 3, 4])
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
describe '#scroll_wrappers' do
|
146
|
+
before { expect(Chewy.client).to receive(:scroll).twice.and_call_original }
|
147
|
+
|
148
|
+
specify do
|
149
|
+
expect(request.scroll_wrappers(batch_size: 2).map(&:rating))
|
150
|
+
.to eq([0, 1, 2, 3, 4])
|
151
|
+
end
|
152
|
+
specify do
|
153
|
+
expect(request.scroll_wrappers(batch_size: 2).map(&:class).uniq)
|
154
|
+
.to eq([CitiesIndex, CountriesIndex])
|
155
|
+
end
|
156
|
+
end
|
157
|
+
|
158
|
+
describe '#scroll_objects' do
|
159
|
+
before { expect(Chewy.client).to receive(:scroll).twice.and_call_original }
|
160
|
+
|
161
|
+
specify do
|
162
|
+
expect(request.scroll_objects(batch_size: 2).map(&:rating))
|
163
|
+
.to eq([0, 1, 2, 3, 4])
|
164
|
+
end
|
165
|
+
specify do
|
166
|
+
expect(request.scroll_objects(batch_size: 2).map(&:class).uniq)
|
167
|
+
.to eq([City, Country])
|
168
|
+
end
|
169
|
+
end
|
170
|
+
end
|
171
|
+
end
|
data/spec/chewy/search_spec.rb
CHANGED
@@ -4,41 +4,34 @@ describe Chewy::Search do
|
|
4
4
|
before { Chewy.massacre }
|
5
5
|
|
6
6
|
before do
|
7
|
-
stub_index(:products)
|
8
|
-
define_type :product
|
9
|
-
define_type :product2
|
10
|
-
end
|
7
|
+
stub_index(:products)
|
11
8
|
end
|
12
9
|
|
13
|
-
let(:product) { ProductsIndex::Product }
|
14
|
-
|
15
10
|
describe '.all' do
|
16
|
-
specify { expect(ProductsIndex.all).to be_a(Chewy::
|
17
|
-
|
11
|
+
specify { expect(ProductsIndex.all).to be_a(Chewy::Search::Request) }
|
12
|
+
|
13
|
+
context do
|
14
|
+
before { allow(Chewy).to receive_messages(search_class: Chewy::Search::Request) }
|
15
|
+
|
16
|
+
specify { expect(ProductsIndex.all).to be_a(Chewy::Search::Request) }
|
17
|
+
end
|
18
18
|
end
|
19
19
|
|
20
20
|
describe '.search_string' do
|
21
21
|
specify do
|
22
|
-
expect(ProductsIndex.client).to receive(:search).with(hash_including(q: 'hello')).
|
22
|
+
expect(ProductsIndex.client).to receive(:search).with(hash_including(q: 'hello')).once
|
23
23
|
ProductsIndex.search_string('hello')
|
24
|
-
product.search_string('hello')
|
25
24
|
end
|
26
25
|
|
27
26
|
specify do
|
28
|
-
expect(ProductsIndex.client).to receive(:search).with(hash_including(explain: true)).
|
27
|
+
expect(ProductsIndex.client).to receive(:search).with(hash_including(explain: true)).once
|
29
28
|
ProductsIndex.search_string('hello', explain: true)
|
30
|
-
product.search_string('hello', explain: true)
|
31
29
|
end
|
32
30
|
|
33
31
|
specify do
|
34
|
-
expect(ProductsIndex.client).to receive(:search).with(hash_including(index: ['products']
|
32
|
+
expect(ProductsIndex.client).to receive(:search).with(hash_including(index: ['products'])).once
|
35
33
|
ProductsIndex.search_string('hello')
|
36
34
|
end
|
37
|
-
|
38
|
-
specify do
|
39
|
-
expect(ProductsIndex.client).to receive(:search).with(hash_including(index: ['products'], type: ['product']))
|
40
|
-
product.search_string('hello')
|
41
|
-
end
|
42
35
|
end
|
43
36
|
|
44
37
|
context 'named scopes' do
|
@@ -46,55 +39,89 @@ describe Chewy::Search do
|
|
46
39
|
stub_model(:city)
|
47
40
|
stub_model(:country)
|
48
41
|
|
49
|
-
stub_index(:
|
42
|
+
stub_index(:cities) do
|
50
43
|
def self.by_rating(value)
|
51
|
-
filter { rating
|
44
|
+
filter { match rating: value }
|
52
45
|
end
|
53
46
|
|
54
47
|
def self.by_name(index)
|
55
|
-
filter { name
|
48
|
+
filter { match name: "Name#{index}" }
|
49
|
+
end
|
50
|
+
|
51
|
+
def self.by_rating_with_kwargs(value, options:) # rubocop:disable Lint/UnusedMethodArgument
|
52
|
+
filter { match rating: value }
|
56
53
|
end
|
57
54
|
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
55
|
+
index_scope City
|
56
|
+
field :name, type: 'keyword'
|
57
|
+
field :rating, type: :integer
|
58
|
+
end
|
62
59
|
|
63
|
-
|
64
|
-
|
60
|
+
stub_index(:countries) do
|
61
|
+
def self.by_rating(value)
|
62
|
+
filter { match rating: value }
|
65
63
|
end
|
66
64
|
|
67
|
-
|
68
|
-
|
69
|
-
field :rating, type: :integer
|
65
|
+
def self.by_name(index)
|
66
|
+
filter { match name: "Name#{index}" }
|
70
67
|
end
|
68
|
+
|
69
|
+
index_scope Country
|
70
|
+
field :name, type: 'keyword'
|
71
|
+
field :rating, type: :integer
|
71
72
|
end
|
72
73
|
end
|
73
74
|
|
74
|
-
let!(:cities) { 3
|
75
|
-
let!(:countries) { 3
|
76
|
-
|
77
|
-
before
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
specify { expect(
|
83
|
-
specify
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
specify { expect(
|
88
|
-
specify
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
specify
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
specify { expect(
|
98
|
-
specify
|
75
|
+
let!(:cities) { Array.new(3) { |i| City.create! rating: i + 1, name: "Name#{i + 2}" } }
|
76
|
+
let!(:countries) { Array.new(3) { |i| Country.create! rating: i + 1, name: "Name#{i + 3}" } }
|
77
|
+
|
78
|
+
before do
|
79
|
+
CitiesIndex.import!(cities)
|
80
|
+
CountriesIndex.import!(country: countries)
|
81
|
+
end
|
82
|
+
|
83
|
+
specify { expect(CitiesIndex.indices(CountriesIndex).by_rating(1).map(&:rating)).to eq([1, 1]) }
|
84
|
+
specify do
|
85
|
+
expect(CitiesIndex.indices(CountriesIndex).by_rating(1).map(&:class))
|
86
|
+
.to match_array([CitiesIndex, CountriesIndex])
|
87
|
+
end
|
88
|
+
specify { expect(CitiesIndex.indices(CountriesIndex).by_rating(1).by_name(2).map(&:rating)).to eq([1]) }
|
89
|
+
specify do
|
90
|
+
expect(CitiesIndex.indices(CountriesIndex).by_rating(1).by_name(2).map(&:class))
|
91
|
+
.to eq([CitiesIndex])
|
92
|
+
end
|
93
|
+
specify { expect(CitiesIndex.indices(CountriesIndex).by_name(3).map(&:rating)).to eq([2, 1]) }
|
94
|
+
specify do
|
95
|
+
expect(CitiesIndex.indices(CountriesIndex).by_name(3).map(&:class))
|
96
|
+
.to eq([CitiesIndex, CountriesIndex])
|
97
|
+
end
|
98
|
+
specify { expect(CitiesIndex.indices(CountriesIndex).order(:name).by_rating(1).map(&:rating)).to eq([1, 1]) }
|
99
|
+
specify do
|
100
|
+
expect(CitiesIndex.indices(CountriesIndex).order(:name).by_rating(1).map(&:class))
|
101
|
+
.to match_array([CitiesIndex, CountriesIndex])
|
102
|
+
end
|
103
|
+
|
104
|
+
specify { expect(CitiesIndex.by_rating(2).map(&:rating)).to eq([2]) }
|
105
|
+
specify { expect(CitiesIndex.by_rating(2).map(&:class)).to eq([CitiesIndex]) }
|
106
|
+
specify { expect(CitiesIndex.by_rating(2).by_name(3).map(&:rating)).to eq([2]) }
|
107
|
+
specify { expect(CitiesIndex.by_rating(2).by_name(3).map(&:class)).to eq([CitiesIndex]) }
|
108
|
+
specify { expect(CitiesIndex.by_name(3).map(&:rating)).to eq([2]) }
|
109
|
+
specify { expect(CitiesIndex.by_name(3).map(&:rating)).to eq([2]) }
|
110
|
+
specify { expect(CitiesIndex.order(:name).by_name(3).map(&:rating)).to eq([2]) }
|
111
|
+
specify { expect(CitiesIndex.order(:name).by_name(3).map(&:rating)).to eq([2]) }
|
112
|
+
specify { expect(CitiesIndex.order(:name).by_rating(2).map(&:rating)).to eq([2]) }
|
113
|
+
specify { expect(CitiesIndex.order(:name).by_rating(2).map(&:class)).to eq([CitiesIndex]) }
|
114
|
+
|
115
|
+
specify { expect(CountriesIndex.by_rating(3).map(&:rating)).to eq([3]) }
|
116
|
+
specify { expect(CountriesIndex.by_rating(3).map(&:class)).to eq([CountriesIndex]) }
|
117
|
+
specify { expect(CountriesIndex.by_rating(3).by_name(5).map(&:rating)).to eq([3]) }
|
118
|
+
specify { expect(CountriesIndex.by_rating(3).by_name(5).map(&:class)).to eq([CountriesIndex]) }
|
119
|
+
specify { expect(CountriesIndex.order(:name).by_rating(3).map(&:rating)).to eq([3]) }
|
120
|
+
specify { expect(CountriesIndex.order(:name).by_rating(3).map(&:class)).to eq([CountriesIndex]) }
|
121
|
+
|
122
|
+
specify 'supports keyword arguments' do
|
123
|
+
expect(CitiesIndex.by_rating_with_kwargs(3, options: 'blah blah blah').map(&:rating)).to eq([3])
|
124
|
+
expect(CitiesIndex.order(:name).by_rating_with_kwargs(3, options: 'blah blah blah').map(&:rating)).to eq([3])
|
125
|
+
end
|
99
126
|
end
|
100
127
|
end
|
@@ -0,0 +1,85 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Chewy::Stash::Journal, :orm do
|
4
|
+
def fetch_deleted_number(response)
|
5
|
+
response['deleted'] || response['_indices']['_all']['deleted']
|
6
|
+
end
|
7
|
+
|
8
|
+
before { Chewy.massacre }
|
9
|
+
|
10
|
+
before do
|
11
|
+
stub_model(:city)
|
12
|
+
stub_index(:cities) do
|
13
|
+
index_scope City
|
14
|
+
end
|
15
|
+
stub_index(:countries)
|
16
|
+
stub_index(:users)
|
17
|
+
stub_index(:borogoves)
|
18
|
+
end
|
19
|
+
|
20
|
+
before { Timecop.freeze }
|
21
|
+
after { Timecop.return }
|
22
|
+
|
23
|
+
before do
|
24
|
+
CitiesIndex.import!(City.new(id: 1, name: 'City'), journal: true)
|
25
|
+
Timecop.travel(Time.now + 1.minute) do
|
26
|
+
CountriesIndex.import!([id: 2, name: 'Country'], journal: true)
|
27
|
+
end
|
28
|
+
Timecop.travel(Time.now + 2.minutes) do
|
29
|
+
UsersIndex.import!([id: 3, name: 'User'], journal: true)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
describe '.entries' do
|
34
|
+
specify do
|
35
|
+
expect(described_class.entries(Time.now - 30.seconds).map(&:references))
|
36
|
+
.to contain_exactly([1], [{'id' => 2, 'name' => 'Country'}], [{'id' => 3, 'name' => 'User'}])
|
37
|
+
end
|
38
|
+
specify do
|
39
|
+
expect(described_class.entries(Time.now + 30.seconds).map(&:references))
|
40
|
+
.to contain_exactly([{'id' => 2, 'name' => 'Country'}], [{'id' => 3, 'name' => 'User'}])
|
41
|
+
end
|
42
|
+
specify do
|
43
|
+
expect(described_class.entries(Time.now + 90.seconds).map(&:references))
|
44
|
+
.to contain_exactly([{'id' => 3, 'name' => 'User'}])
|
45
|
+
end
|
46
|
+
|
47
|
+
specify do
|
48
|
+
expect(described_class.entries(Time.now - 30.seconds, only: UsersIndex).map(&:references))
|
49
|
+
.to contain_exactly([{'id' => 3, 'name' => 'User'}])
|
50
|
+
end
|
51
|
+
specify do
|
52
|
+
expect(described_class.entries(Time.now - 30.seconds, only: [CitiesIndex, UsersIndex]).map(&:references))
|
53
|
+
.to contain_exactly([1], [{'id' => 3, 'name' => 'User'}])
|
54
|
+
end
|
55
|
+
specify do
|
56
|
+
expect(described_class.entries(Time.now + 30.seconds, only: [CitiesIndex, UsersIndex]).map(&:references))
|
57
|
+
.to contain_exactly([{'id' => 3, 'name' => 'User'}])
|
58
|
+
end
|
59
|
+
specify do
|
60
|
+
expect(described_class.entries(Time.now + 30.seconds, only: [BorogovesIndex])).to eq([])
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
describe '.clean' do
|
65
|
+
specify { expect(fetch_deleted_number(described_class.clean)).to eq(3) }
|
66
|
+
specify { expect(fetch_deleted_number(described_class.clean(Time.now - 30.seconds))).to eq(0) }
|
67
|
+
specify { expect(fetch_deleted_number(described_class.clean(Time.now + 30.seconds))).to eq(1) }
|
68
|
+
specify { expect(fetch_deleted_number(described_class.clean(Time.now + 90.seconds))).to eq(2) }
|
69
|
+
specify { expect(fetch_deleted_number(described_class.clean(only: BorogovesIndex))).to eq(0) }
|
70
|
+
specify { expect(fetch_deleted_number(described_class.clean(only: UsersIndex))).to eq(1) }
|
71
|
+
specify { expect(fetch_deleted_number(described_class.clean(only: [CitiesIndex, UsersIndex]))).to eq(2) }
|
72
|
+
|
73
|
+
specify do
|
74
|
+
expect(fetch_deleted_number(described_class.clean(Time.now + 30.seconds, only: CountriesIndex))).to eq(0)
|
75
|
+
end
|
76
|
+
specify { expect(fetch_deleted_number(described_class.clean(Time.now + 30.seconds, only: CitiesIndex))).to eq(1) }
|
77
|
+
end
|
78
|
+
|
79
|
+
describe '.for' do
|
80
|
+
specify { expect(described_class.for(UsersIndex).map(&:index_name)).to eq(['users']) }
|
81
|
+
specify do
|
82
|
+
expect(described_class.for(CitiesIndex, UsersIndex).map(&:index_name)).to contain_exactly('cities', 'users')
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|