chewy 0.9.0 → 5.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.circleci/config.yml +214 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +41 -19
- data/.rubocop_todo.yml +2 -2
- data/.yardopts +5 -0
- data/Appraisals +58 -28
- data/CHANGELOG.md +153 -12
- data/Gemfile +20 -12
- data/LEGACY_DSL.md +497 -0
- data/LICENSE.txt +1 -1
- data/README.md +338 -528
- data/chewy.gemspec +11 -12
- data/gemfiles/rails.5.2.activerecord.gemfile +17 -0
- data/gemfiles/rails.5.2.mongoid.6.4.gemfile +17 -0
- data/gemfiles/rails.6.0.activerecord.gemfile +17 -0
- data/gemfiles/rails.6.1.activerecord.gemfile +19 -0
- data/gemfiles/ruby3.gemfile +10 -0
- data/gemfiles/sequel.4.45.gemfile +11 -0
- data/lib/chewy.rb +79 -44
- data/lib/chewy/backports/duplicable.rb +1 -1
- data/lib/chewy/config.rb +43 -17
- data/lib/chewy/errors.rb +2 -2
- data/lib/chewy/fields/base.rb +56 -31
- data/lib/chewy/fields/root.rb +44 -11
- data/lib/chewy/index.rb +237 -149
- data/lib/chewy/index/actions.rb +100 -35
- data/lib/chewy/index/aliases.rb +2 -1
- data/lib/chewy/index/settings.rb +11 -5
- data/lib/chewy/index/specification.rb +60 -0
- data/lib/chewy/journal.rb +40 -92
- data/lib/chewy/minitest/helpers.rb +6 -6
- data/lib/chewy/minitest/search_index_receiver.rb +17 -17
- data/lib/chewy/query.rb +182 -122
- data/lib/chewy/query/compose.rb +13 -13
- data/lib/chewy/query/criteria.rb +13 -13
- data/lib/chewy/query/filters.rb +21 -4
- data/lib/chewy/query/loading.rb +1 -2
- data/lib/chewy/query/nodes/and.rb +2 -2
- data/lib/chewy/query/nodes/bool.rb +1 -1
- data/lib/chewy/query/nodes/equal.rb +2 -2
- data/lib/chewy/query/nodes/exists.rb +1 -1
- data/lib/chewy/query/nodes/field.rb +1 -1
- data/lib/chewy/query/nodes/has_relation.rb +2 -2
- data/lib/chewy/query/nodes/match_all.rb +1 -1
- data/lib/chewy/query/nodes/missing.rb +1 -1
- data/lib/chewy/query/nodes/not.rb +2 -2
- data/lib/chewy/query/nodes/or.rb +2 -2
- data/lib/chewy/query/nodes/prefix.rb +1 -1
- data/lib/chewy/query/nodes/query.rb +2 -2
- data/lib/chewy/query/nodes/range.rb +4 -4
- data/lib/chewy/query/nodes/regexp.rb +4 -4
- data/lib/chewy/query/nodes/script.rb +3 -3
- data/lib/chewy/query/pagination.rb +10 -1
- data/lib/chewy/railtie.rb +4 -3
- data/lib/chewy/rake_helper.rb +265 -48
- data/lib/chewy/rspec/update_index.rb +33 -27
- data/lib/chewy/search.rb +79 -26
- data/lib/chewy/search/loader.rb +83 -0
- data/lib/chewy/{query → search}/pagination/kaminari.rb +13 -5
- data/lib/chewy/search/pagination/will_paginate.rb +43 -0
- data/lib/chewy/search/parameters.rb +168 -0
- 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/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/indices.rb +123 -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 +27 -0
- data/lib/chewy/search/parameters/offset.rb +17 -0
- data/lib/chewy/search/parameters/order.rb +64 -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 +73 -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/types.rb +20 -0
- data/lib/chewy/search/parameters/version.rb +16 -0
- data/lib/chewy/search/query_proxy.rb +257 -0
- data/lib/chewy/search/request.rb +1046 -0
- data/lib/chewy/search/response.rb +119 -0
- data/lib/chewy/search/scoping.rb +50 -0
- data/lib/chewy/search/scrolling.rb +134 -0
- data/lib/chewy/stash.rb +79 -0
- data/lib/chewy/strategy.rb +10 -3
- data/lib/chewy/strategy/active_job.rb +2 -1
- data/lib/chewy/strategy/atomic.rb +2 -4
- data/lib/chewy/strategy/bypass.rb +1 -1
- data/lib/chewy/strategy/resque.rb +1 -0
- data/lib/chewy/strategy/shoryuken.rb +40 -0
- data/lib/chewy/strategy/sidekiq.rb +13 -3
- data/lib/chewy/type.rb +29 -7
- data/lib/chewy/type/actions.rb +26 -2
- data/lib/chewy/type/adapter/active_record.rb +44 -29
- data/lib/chewy/type/adapter/base.rb +27 -7
- data/lib/chewy/type/adapter/mongoid.rb +19 -10
- data/lib/chewy/type/adapter/object.rb +187 -26
- data/lib/chewy/type/adapter/orm.rb +59 -32
- data/lib/chewy/type/adapter/sequel.rb +33 -19
- data/lib/chewy/type/crutch.rb +1 -1
- data/lib/chewy/type/import.rb +146 -191
- data/lib/chewy/type/import/bulk_builder.rb +122 -0
- data/lib/chewy/type/import/bulk_request.rb +78 -0
- data/lib/chewy/type/import/journal_builder.rb +45 -0
- data/lib/chewy/type/import/routine.rb +138 -0
- data/lib/chewy/type/mapping.rb +51 -35
- data/lib/chewy/type/observe.rb +17 -13
- data/lib/chewy/type/syncer.rb +222 -0
- data/lib/chewy/type/witchcraft.rb +32 -16
- data/lib/chewy/type/wrapper.rb +30 -4
- data/lib/chewy/version.rb +1 -1
- data/lib/sequel/plugins/chewy_observe.rb +4 -19
- data/lib/tasks/chewy.rake +84 -26
- data/spec/chewy/config_spec.rb +98 -1
- data/spec/chewy/fields/base_spec.rb +170 -135
- data/spec/chewy/fields/root_spec.rb +124 -20
- data/spec/chewy/fields/time_fields_spec.rb +2 -3
- data/spec/chewy/index/actions_spec.rb +214 -52
- data/spec/chewy/index/aliases_spec.rb +2 -2
- data/spec/chewy/index/settings_spec.rb +67 -38
- data/spec/chewy/index/specification_spec.rb +169 -0
- data/spec/chewy/index_spec.rb +108 -64
- data/spec/chewy/journal_spec.rb +150 -55
- data/spec/chewy/minitest/helpers_spec.rb +4 -4
- data/spec/chewy/minitest/search_index_receiver_spec.rb +1 -1
- data/spec/chewy/query/criteria_spec.rb +179 -179
- data/spec/chewy/query/filters_spec.rb +16 -16
- data/spec/chewy/query/loading_spec.rb +22 -20
- data/spec/chewy/query/nodes/and_spec.rb +2 -2
- data/spec/chewy/query/nodes/bool_spec.rb +4 -4
- data/spec/chewy/query/nodes/equal_spec.rb +19 -19
- data/spec/chewy/query/nodes/exists_spec.rb +6 -6
- data/spec/chewy/query/nodes/has_child_spec.rb +19 -19
- data/spec/chewy/query/nodes/has_parent_spec.rb +19 -19
- data/spec/chewy/query/nodes/missing_spec.rb +5 -5
- data/spec/chewy/query/nodes/not_spec.rb +4 -2
- data/spec/chewy/query/nodes/or_spec.rb +2 -2
- data/spec/chewy/query/nodes/prefix_spec.rb +5 -5
- data/spec/chewy/query/nodes/query_spec.rb +2 -2
- data/spec/chewy/query/nodes/range_spec.rb +18 -18
- data/spec/chewy/query/nodes/raw_spec.rb +1 -1
- data/spec/chewy/query/nodes/regexp_spec.rb +14 -14
- data/spec/chewy/query/nodes/script_spec.rb +4 -4
- data/spec/chewy/query/pagination/kaminari_spec.rb +3 -55
- data/spec/chewy/query/pagination/will_paginate_spec.rb +5 -0
- data/spec/chewy/query/pagination_spec.rb +25 -21
- data/spec/chewy/query_spec.rb +503 -561
- data/spec/chewy/rake_helper_spec.rb +381 -0
- data/spec/chewy/repository_spec.rb +4 -4
- data/spec/chewy/rspec/update_index_spec.rb +89 -56
- data/spec/chewy/runtime_spec.rb +2 -2
- data/spec/chewy/search/loader_spec.rb +117 -0
- data/spec/chewy/search/pagination/kaminari_examples.rb +71 -0
- data/spec/chewy/search/pagination/kaminari_spec.rb +21 -0
- data/spec/chewy/search/pagination/will_paginate_examples.rb +63 -0
- data/spec/chewy/search/pagination/will_paginate_spec.rb +23 -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/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/indices_spec.rb +191 -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 +65 -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 +388 -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 +32 -0
- data/spec/chewy/search/parameters/search_type_spec.rb +5 -0
- data/spec/chewy/search/parameters/source_spec.rb +156 -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/types_spec.rb +5 -0
- data/spec/chewy/search/parameters/version_spec.rb +5 -0
- data/spec/chewy/search/parameters_spec.rb +147 -0
- data/spec/chewy/search/query_proxy_spec.rb +68 -0
- data/spec/chewy/search/request_spec.rb +685 -0
- data/spec/chewy/search/response_spec.rb +198 -0
- data/spec/chewy/search/scrolling_spec.rb +169 -0
- data/spec/chewy/search_spec.rb +33 -16
- data/spec/chewy/stash_spec.rb +95 -0
- data/spec/chewy/strategy/active_job_spec.rb +21 -2
- data/spec/chewy/strategy/resque_spec.rb +6 -0
- data/spec/chewy/strategy/shoryuken_spec.rb +70 -0
- data/spec/chewy/strategy/sidekiq_spec.rb +13 -1
- data/spec/chewy/strategy_spec.rb +6 -6
- data/spec/chewy/type/actions_spec.rb +29 -10
- data/spec/chewy/type/adapter/active_record_spec.rb +203 -91
- data/spec/chewy/type/adapter/mongoid_spec.rb +112 -54
- data/spec/chewy/type/adapter/object_spec.rb +101 -28
- data/spec/chewy/type/adapter/sequel_spec.rb +149 -82
- data/spec/chewy/type/import/bulk_builder_spec.rb +279 -0
- data/spec/chewy/type/import/bulk_request_spec.rb +102 -0
- data/spec/chewy/type/import/journal_builder_spec.rb +95 -0
- data/spec/chewy/type/import/routine_spec.rb +110 -0
- data/spec/chewy/type/import_spec.rb +356 -271
- data/spec/chewy/type/mapping_spec.rb +96 -29
- data/spec/chewy/type/observe_spec.rb +9 -5
- data/spec/chewy/type/syncer_spec.rb +123 -0
- data/spec/chewy/type/witchcraft_spec.rb +61 -29
- data/spec/chewy/type/wrapper_spec.rb +63 -23
- data/spec/chewy/type_spec.rb +28 -7
- data/spec/chewy_spec.rb +75 -7
- data/spec/spec_helper.rb +17 -3
- data/spec/support/active_record.rb +5 -1
- data/spec/support/class_helpers.rb +0 -14
- data/spec/support/mongoid.rb +15 -3
- data/spec/support/sequel.rb +6 -1
- metadata +219 -58
- data/.travis.yml +0 -36
- data/gemfiles/rails.3.2.activerecord.gemfile +0 -16
- data/gemfiles/rails.3.2.activerecord.kaminari.gemfile +0 -15
- data/gemfiles/rails.3.2.activerecord.will_paginate.gemfile +0 -15
- data/gemfiles/rails.4.2.activerecord.gemfile +0 -17
- data/gemfiles/rails.4.2.activerecord.kaminari.gemfile +0 -16
- data/gemfiles/rails.4.2.activerecord.will_paginate.gemfile +0 -16
- data/gemfiles/rails.4.2.mongoid.4.0.gemfile +0 -16
- data/gemfiles/rails.4.2.mongoid.4.0.kaminari.gemfile +0 -15
- data/gemfiles/rails.4.2.mongoid.4.0.will_paginate.gemfile +0 -15
- data/gemfiles/rails.4.2.mongoid.5.1.gemfile +0 -16
- data/gemfiles/rails.4.2.mongoid.5.1.kaminari.gemfile +0 -15
- data/gemfiles/rails.4.2.mongoid.5.1.will_paginate.gemfile +0 -15
- data/gemfiles/rails.5.0.activerecord.gemfile +0 -17
- data/gemfiles/rails.5.0.activerecord.kaminari.gemfile +0 -16
- data/gemfiles/rails.5.0.activerecord.will_paginate.gemfile +0 -16
- data/gemfiles/sequel.4.38.gemfile +0 -14
- data/lib/chewy/journal/apply.rb +0 -31
- data/lib/chewy/journal/clean.rb +0 -24
- data/lib/chewy/journal/entry.rb +0 -83
- data/lib/chewy/journal/query.rb +0 -87
- data/lib/chewy/query/pagination/will_paginate.rb +0 -27
- data/lib/chewy/query/scoping.rb +0 -20
- data/spec/chewy/journal/apply_spec.rb +0 -120
- data/spec/chewy/journal/entry_spec.rb +0 -237
- data/spec/chewy/query/pagination/will_paginage_spec.rb +0 -59
@@ -0,0 +1,63 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
shared_examples :string_array_storage do |param_name|
|
4
|
+
subject { described_class.new(%i[foo bar]) }
|
5
|
+
|
6
|
+
describe '#initialize' do
|
7
|
+
specify { expect(described_class.new.value).to eq([]) }
|
8
|
+
specify { expect(described_class.new(nil).value).to eq([]) }
|
9
|
+
specify { expect(described_class.new(:foo).value).to eq(%w[foo]) }
|
10
|
+
specify { expect(described_class.new([:foo, nil]).value).to eq(%w[foo]) }
|
11
|
+
specify { expect(subject.value).to eq(%w[foo bar]) }
|
12
|
+
end
|
13
|
+
|
14
|
+
describe '#replace!' do
|
15
|
+
specify do
|
16
|
+
expect { subject.replace!(nil) }
|
17
|
+
.to change { subject.value }
|
18
|
+
.from(%w[foo bar]).to([])
|
19
|
+
end
|
20
|
+
|
21
|
+
specify do
|
22
|
+
expect { subject.replace!(%i[foo baz]) }
|
23
|
+
.to change { subject.value }
|
24
|
+
.from(%w[foo bar]).to(%w[foo baz])
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe '#update!' do
|
29
|
+
specify do
|
30
|
+
expect { subject.update!(nil) }
|
31
|
+
.not_to change { subject.value }
|
32
|
+
end
|
33
|
+
|
34
|
+
specify do
|
35
|
+
expect { subject.update!(%i[foo baz]) }
|
36
|
+
.to change { subject.value }
|
37
|
+
.from(%w[foo bar]).to(%w[foo bar baz])
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe '#merge!' do
|
42
|
+
specify do
|
43
|
+
expect { subject.merge!(described_class.new) }
|
44
|
+
.not_to change { subject.value }
|
45
|
+
end
|
46
|
+
|
47
|
+
specify do
|
48
|
+
expect { subject.merge!(described_class.new(%i[foo baz])) }
|
49
|
+
.to change { subject.value }
|
50
|
+
.from(%w[foo bar]).to(%w[foo bar baz])
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
describe '#render' do
|
55
|
+
specify { expect(described_class.new.render).to be_nil }
|
56
|
+
|
57
|
+
if param_name
|
58
|
+
specify { expect(subject.render).to eq(param_name => %w[foo bar]) }
|
59
|
+
else
|
60
|
+
specify { expect(subject.render).to be_nil }
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
shared_examples :string_storage do |param_name|
|
4
|
+
subject { described_class.new(:foo) }
|
5
|
+
|
6
|
+
describe '#initialize' do
|
7
|
+
specify { expect(subject.value).to eq('foo') }
|
8
|
+
specify { expect(described_class.new(42).value).to eq('42') }
|
9
|
+
specify { expect(described_class.new('').value).to be_nil }
|
10
|
+
end
|
11
|
+
|
12
|
+
describe '#replace!' do
|
13
|
+
specify { expect { subject.replace!('bar') }.to change { subject.value }.from('foo').to('bar') }
|
14
|
+
specify { expect { subject.replace!('') }.to change { subject.value }.from('foo').to(nil) }
|
15
|
+
end
|
16
|
+
|
17
|
+
describe '#update!' do
|
18
|
+
specify { expect { subject.update!('bar') }.to change { subject.value }.from('foo').to('bar') }
|
19
|
+
specify { expect { subject.update!('') }.not_to change { subject.value }.from('foo') }
|
20
|
+
specify { expect { subject.update!(nil) }.not_to change { subject.value }.from('foo') }
|
21
|
+
end
|
22
|
+
|
23
|
+
describe '#merge!' do
|
24
|
+
specify { expect { subject.merge!(described_class.new('bar')) }.to change { subject.value }.from('foo').to('bar') }
|
25
|
+
specify { expect { subject.merge!(described_class.new) }.not_to change { subject.value }.from('foo') }
|
26
|
+
end
|
27
|
+
|
28
|
+
describe '#render' do
|
29
|
+
specify { expect(described_class.new.render).to be_nil }
|
30
|
+
specify { expect(subject.render).to eq(param_name => 'foo') }
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,147 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Chewy::Search::Parameters do
|
4
|
+
subject { described_class.new }
|
5
|
+
|
6
|
+
describe '.storages' do
|
7
|
+
specify { expect(described_class.storages[:limit]).to eq(Chewy::Search::Parameters::Limit) }
|
8
|
+
end
|
9
|
+
|
10
|
+
describe '#initialize' do
|
11
|
+
let(:limit) { described_class.storages[:limit].new(3) }
|
12
|
+
subject { described_class.new(limit: limit, order: :foo) }
|
13
|
+
|
14
|
+
specify { expect(subject.storages[:limit]).to equal(limit) }
|
15
|
+
specify { expect(subject.storages[:limit].value).to eq(3) }
|
16
|
+
specify { expect(subject.storages[:order].value).to eq('foo' => nil) }
|
17
|
+
|
18
|
+
specify { expect { described_class.new(offset: limit) }.to raise_error(TypeError) }
|
19
|
+
end
|
20
|
+
|
21
|
+
describe '#storages' do
|
22
|
+
specify { expect(subject.storages).to eq({}) }
|
23
|
+
specify { expect(subject.storages[:limit]).to be_a(Chewy::Search::Parameters::Limit) }
|
24
|
+
end
|
25
|
+
|
26
|
+
describe '#==' do
|
27
|
+
specify { expect(described_class.new(limit: 10)).to eq(described_class.new(limit: 10)) }
|
28
|
+
specify { expect(described_class.new(limit: 10)).to eq(described_class.new(limit: 10, offset: nil)) }
|
29
|
+
specify { expect(described_class.new(limit: 10, offset: 20)).to eq(described_class.new(limit: 10, offset: 20)) }
|
30
|
+
specify { expect(described_class.new(limit: 10)).not_to eq(described_class.new(limit: 20)) }
|
31
|
+
specify { expect(described_class.new(limit: 10)).not_to eq(described_class.new(limit: 10, offset: 20)) }
|
32
|
+
end
|
33
|
+
|
34
|
+
describe '#modify!' do
|
35
|
+
it 'updates the storage value' do
|
36
|
+
expect { subject.modify!(:limit) { replace!(42) } }
|
37
|
+
.to change { subject[:limit].value }
|
38
|
+
.from(nil).to(42)
|
39
|
+
end
|
40
|
+
|
41
|
+
it 'replaces the storage' do
|
42
|
+
expect { subject.modify!(:limit) { replace!(42) } }
|
43
|
+
.to change { subject[:limit].object_id }
|
44
|
+
end
|
45
|
+
|
46
|
+
it 'doesn\'t change the old object' do
|
47
|
+
subject.modify!(:limit) { replace!(42) }
|
48
|
+
old_limit = subject[:limit]
|
49
|
+
subject.modify!(:limit) { replace!(43) }
|
50
|
+
expect(old_limit.value).to eq(42)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
describe '#only!' do
|
55
|
+
subject { described_class.new(limit: 10, offset: 20, order: :foo) }
|
56
|
+
|
57
|
+
specify { expect { subject.only!([:limit]) }.to change { subject.clone }.to(described_class.new(limit: 10)) }
|
58
|
+
specify { expect { subject.only!(%i[offset order]) }.to change { subject.clone }.to(described_class.new(offset: 20, order: :foo)) }
|
59
|
+
specify { expect { subject.only!(%i[limit something]) }.to raise_error NameError }
|
60
|
+
specify { expect { subject.only!([]) }.to raise_error ArgumentError }
|
61
|
+
end
|
62
|
+
|
63
|
+
describe '#except!' do
|
64
|
+
subject { described_class.new(limit: 10, offset: 20, order: :foo) }
|
65
|
+
|
66
|
+
specify { expect { subject.except!([:limit]) }.to change { subject.clone }.to(described_class.new(offset: 20, order: :foo)) }
|
67
|
+
specify { expect { subject.except!(%i[offset order]) }.to change { subject.clone }.to(described_class.new(limit: 10)) }
|
68
|
+
specify { expect { subject.except!(%i[limit something]) }.to raise_error NameError }
|
69
|
+
specify { expect { subject.except!([]) }.to raise_error ArgumentError }
|
70
|
+
end
|
71
|
+
|
72
|
+
describe '#merge!' do
|
73
|
+
let(:first) { described_class.new(offset: 10, order: 'foo') }
|
74
|
+
let(:second) { described_class.new(limit: 20, offset: 20, order: 'bar') }
|
75
|
+
let(:first_clone) { first.clone }
|
76
|
+
let(:second_clone) { second.clone }
|
77
|
+
|
78
|
+
specify do
|
79
|
+
expect { first.merge!(second) }.to change { first.clone }
|
80
|
+
.to(described_class.new(limit: 20, offset: 20, order: %w[foo bar]))
|
81
|
+
end
|
82
|
+
specify { expect { first.merge!(second) }.not_to change { second_clone } }
|
83
|
+
|
84
|
+
specify do
|
85
|
+
expect { second.merge!(first) }.to change { second.clone }
|
86
|
+
.to(described_class.new(limit: 20, offset: 10, order: %w[bar foo]))
|
87
|
+
end
|
88
|
+
specify { expect { second.merge!(first) }.not_to change { first_clone } }
|
89
|
+
|
90
|
+
context 'spawns new storages for the merge' do
|
91
|
+
let(:names) { %i[limit offset order] }
|
92
|
+
def storage_object_ids(params)
|
93
|
+
params.storages.values_at(*names).map(&:object_id)
|
94
|
+
end
|
95
|
+
|
96
|
+
specify { expect(storage_object_ids(first) | storage_object_ids(subject)).to have(6).items }
|
97
|
+
specify { expect(storage_object_ids(second) | storage_object_ids(subject)).to have(6).items }
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
describe '#render' do
|
102
|
+
subject { described_class.new(offset: 10, order: 'foo') }
|
103
|
+
|
104
|
+
specify { expect(subject.render).to eq(body: {from: 10, sort: ['foo']}) }
|
105
|
+
specify { expect(described_class.new.render).to eq(body: {}) }
|
106
|
+
|
107
|
+
context do
|
108
|
+
subject { described_class.new(request_cache: true) }
|
109
|
+
specify { expect(subject.render).to eq(body: {}, request_cache: true) }
|
110
|
+
end
|
111
|
+
|
112
|
+
context do
|
113
|
+
subject { described_class.new(search_type: 'query_then_fetch') }
|
114
|
+
specify { expect(subject.render).to eq(body: {}, search_type: 'query_then_fetch') }
|
115
|
+
end
|
116
|
+
|
117
|
+
context do
|
118
|
+
subject { described_class.new(allow_partial_search_results: true) }
|
119
|
+
specify { expect(subject.render).to eq(body: {}, allow_partial_search_results: true) }
|
120
|
+
end
|
121
|
+
|
122
|
+
context do
|
123
|
+
subject { described_class.new(query: {foo: 'bar'}, filter: {moo: 'baz'}) }
|
124
|
+
specify { expect(subject.render).to eq(body: {query: {bool: {must: {foo: 'bar'}, filter: {moo: 'baz'}}}}) }
|
125
|
+
end
|
126
|
+
|
127
|
+
context do
|
128
|
+
subject { described_class.new(query: {should: {foo: 'bar'}}, filter: {moo: 'baz'}) }
|
129
|
+
specify { expect(subject.render).to eq(body: {query: {bool: {should: {foo: 'bar'}, filter: {moo: 'baz'}}}}) }
|
130
|
+
end
|
131
|
+
|
132
|
+
context do
|
133
|
+
subject { described_class.new(query: {must_not: {foo: 'bar'}}, filter: {moo: 'baz'}) }
|
134
|
+
specify { expect(subject.render).to eq(body: {query: {bool: {must_not: {foo: 'bar'}, filter: {moo: 'baz'}}}}) }
|
135
|
+
end
|
136
|
+
|
137
|
+
context do
|
138
|
+
subject { described_class.new(filter: {moo: 'baz'}) }
|
139
|
+
specify { expect(subject.render).to eq(body: {query: {bool: {filter: {moo: 'baz'}}}}) }
|
140
|
+
end
|
141
|
+
|
142
|
+
context do
|
143
|
+
subject { described_class.new(filter: {moo: 'baz'}, none: true) }
|
144
|
+
specify { expect(subject.render).to eq(body: {query: {bool: {filter: {bool: {must_not: {match_all: {}}}}}}}) }
|
145
|
+
end
|
146
|
+
end
|
147
|
+
end
|
@@ -0,0 +1,68 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Chewy::Search::QueryProxy do
|
4
|
+
before { stub_index(:products) }
|
5
|
+
let(:request) { Chewy::Search::Request.new(ProductsIndex).query(match: {foo: 'bar'}) }
|
6
|
+
let(:scope) { Chewy::Search::Request.new(ProductsIndex).query.must_not(match: {foo: 'bar'}) }
|
7
|
+
subject { described_class.new(:query, request) }
|
8
|
+
|
9
|
+
describe '#must' do
|
10
|
+
specify { expect { subject.must }.to raise_error ArgumentError }
|
11
|
+
specify { expect(subject.must(multi_match: {foo: 'bar'}).render[:body]).to eq(query: {bool: {must: [{match: {foo: 'bar'}}, {multi_match: {foo: 'bar'}}]}}) }
|
12
|
+
specify { expect(subject.must { multi_match foo: 'bar' }.render[:body]).to eq(query: {bool: {must: [{match: {foo: 'bar'}}, {multi_match: {foo: 'bar'}}]}}) }
|
13
|
+
end
|
14
|
+
|
15
|
+
describe '#should' do
|
16
|
+
specify { expect { subject.should }.to raise_error ArgumentError }
|
17
|
+
specify { expect(subject.should(multi_match: {foo: 'bar'}).render[:body]).to eq(query: {bool: {must: {match: {foo: 'bar'}}, should: {multi_match: {foo: 'bar'}}}}) }
|
18
|
+
specify { expect(subject.should { multi_match foo: 'bar' }.render[:body]).to eq(query: {bool: {must: {match: {foo: 'bar'}}, should: {multi_match: {foo: 'bar'}}}}) }
|
19
|
+
end
|
20
|
+
|
21
|
+
describe '#must_not' do
|
22
|
+
specify { expect { subject.must_not }.to raise_error ArgumentError }
|
23
|
+
specify { expect(subject.must_not(multi_match: {foo: 'bar'}).render[:body]).to eq(query: {bool: {must: {match: {foo: 'bar'}}, must_not: {multi_match: {foo: 'bar'}}}}) }
|
24
|
+
specify { expect(subject.must_not { multi_match foo: 'bar' }.render[:body]).to eq(query: {bool: {must: {match: {foo: 'bar'}}, must_not: {multi_match: {foo: 'bar'}}}}) }
|
25
|
+
end
|
26
|
+
|
27
|
+
describe '#and' do
|
28
|
+
specify { expect { subject.and }.to raise_error ArgumentError }
|
29
|
+
specify { expect(subject.and(multi_match: {foo: 'bar'}).render[:body]).to eq(query: {bool: {must: [{match: {foo: 'bar'}}, {multi_match: {foo: 'bar'}}]}}) }
|
30
|
+
specify { expect(subject.and { multi_match foo: 'bar' }.render[:body]).to eq(query: {bool: {must: [{match: {foo: 'bar'}}, {multi_match: {foo: 'bar'}}]}}) }
|
31
|
+
specify { expect(subject.and(scope).render[:body]).to eq(query: {bool: {must: [{match: {foo: 'bar'}}, {bool: {must_not: {match: {foo: 'bar'}}}}]}}) }
|
32
|
+
end
|
33
|
+
|
34
|
+
describe '#or' do
|
35
|
+
specify { expect { subject.or }.to raise_error ArgumentError }
|
36
|
+
specify { expect(subject.or(multi_match: {foo: 'bar'}).render[:body]).to eq(query: {bool: {should: [{match: {foo: 'bar'}}, {multi_match: {foo: 'bar'}}]}}) }
|
37
|
+
specify { expect(subject.or { multi_match foo: 'bar' }.render[:body]).to eq(query: {bool: {should: [{match: {foo: 'bar'}}, {multi_match: {foo: 'bar'}}]}}) }
|
38
|
+
specify { expect(subject.or(scope).render[:body]).to eq(query: {bool: {should: [{match: {foo: 'bar'}}, {bool: {must_not: {match: {foo: 'bar'}}}}]}}) }
|
39
|
+
end
|
40
|
+
|
41
|
+
describe '#not' do
|
42
|
+
specify { expect { subject.not }.to raise_error ArgumentError }
|
43
|
+
specify { expect(subject.not(multi_match: {foo: 'bar'}).render[:body]).to eq(query: {bool: {must: {match: {foo: 'bar'}}, must_not: {multi_match: {foo: 'bar'}}}}) }
|
44
|
+
specify { expect(subject.not { multi_match foo: 'bar' }.render[:body]).to eq(query: {bool: {must: {match: {foo: 'bar'}}, must_not: {multi_match: {foo: 'bar'}}}}) }
|
45
|
+
specify { expect(subject.not(scope).render[:body]).to eq(query: {bool: {must: {match: {foo: 'bar'}}, must_not: {bool: {must_not: {match: {foo: 'bar'}}}}}}) }
|
46
|
+
end
|
47
|
+
|
48
|
+
describe '#minimum_should_match' do
|
49
|
+
specify { expect(subject.minimum_should_match('100%').render[:body]).to eq(query: {match: {foo: 'bar'}}) }
|
50
|
+
|
51
|
+
context do
|
52
|
+
let(:request) do
|
53
|
+
Chewy::Search::Request.new(ProductsIndex)
|
54
|
+
.query.should(match: {foo: 'bar'})
|
55
|
+
end
|
56
|
+
specify { expect(subject.minimum_should_match('100%').render[:body]).to eq(query: {bool: {should: {match: {foo: 'bar'}}, minimum_should_match: '100%'}}) }
|
57
|
+
end
|
58
|
+
|
59
|
+
context do
|
60
|
+
let(:request) do
|
61
|
+
Chewy::Search::Request.new(ProductsIndex)
|
62
|
+
.query.should(match: {foo: 'bar'})
|
63
|
+
.query.minimum_should_match(2)
|
64
|
+
end
|
65
|
+
specify { expect(subject.minimum_should_match(nil).render[:body]).to eq(query: {bool: {should: {match: {foo: 'bar'}}}}) }
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
@@ -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
|