chewy 0.10.1 → 7.3.2
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/.rubocop.yml +28 -23
- data/.rubocop_todo.yml +110 -22
- data/CHANGELOG.md +480 -298
- data/CODE_OF_CONDUCT.md +14 -0
- data/CONTRIBUTING.md +63 -0
- data/Gemfile +3 -5
- data/Guardfile +3 -1
- data/LICENSE.txt +1 -1
- data/README.md +571 -333
- data/chewy.gemspec +12 -15
- 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 +48 -77
- data/lib/chewy/errors.rb +4 -10
- data/lib/chewy/fields/base.rb +88 -16
- data/lib/chewy/fields/root.rb +15 -21
- data/lib/chewy/index/actions.rb +67 -38
- data/lib/chewy/{type → index}/adapter/active_record.rb +18 -4
- data/lib/chewy/{type → index}/adapter/base.rb +11 -12
- data/lib/chewy/{type → index}/adapter/object.rb +28 -32
- data/lib/chewy/{type → index}/adapter/orm.rb +26 -24
- data/lib/chewy/index/aliases.rb +14 -5
- data/lib/chewy/index/crutch.rb +40 -0
- data/lib/chewy/index/import/bulk_builder.rb +311 -0
- data/lib/chewy/{type → index}/import/bulk_request.rb +10 -9
- data/lib/chewy/{type → index}/import/journal_builder.rb +11 -12
- data/lib/chewy/{type → index}/import/routine.rb +19 -18
- data/lib/chewy/{type → index}/import.rb +82 -36
- data/lib/chewy/{type → index}/mapping.rb +63 -62
- 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 +2 -0
- data/lib/chewy/index/specification.rb +13 -10
- data/lib/chewy/{type → index}/syncer.rb +62 -63
- data/lib/chewy/{type → index}/witchcraft.rb +15 -9
- data/lib/chewy/{type → index}/wrapper.rb +16 -6
- data/lib/chewy/index.rb +68 -93
- data/lib/chewy/journal.rb +25 -14
- data/lib/chewy/minitest/helpers.rb +91 -18
- data/lib/chewy/minitest/search_index_receiver.rb +29 -33
- data/lib/chewy/multi_search.rb +62 -0
- data/lib/chewy/railtie.rb +8 -24
- data/lib/chewy/rake_helper.rb +141 -112
- data/lib/chewy/rspec/build_query.rb +12 -0
- data/lib/chewy/rspec/helpers.rb +55 -0
- data/lib/chewy/rspec/update_index.rb +58 -49
- data/lib/chewy/rspec.rb +2 -0
- data/lib/chewy/runtime.rb +1 -1
- data/lib/chewy/search/loader.rb +19 -41
- 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/query_storage.rb +6 -5
- data/lib/chewy/search/parameters/ignore_unavailable.rb +27 -0
- data/lib/chewy/search/parameters/indices.rb +78 -0
- data/lib/chewy/search/parameters/none.rb +1 -3
- data/lib/chewy/search/parameters/order.rb +6 -19
- data/lib/chewy/search/parameters/source.rb +5 -1
- data/lib/chewy/search/parameters/track_total_hits.rb +16 -0
- data/lib/chewy/search/parameters.rb +28 -8
- data/lib/chewy/search/query_proxy.rb +9 -2
- data/lib/chewy/search/request.rb +207 -157
- data/lib/chewy/search/response.rb +5 -5
- data/lib/chewy/search/scoping.rb +7 -8
- data/lib/chewy/search/scrolling.rb +14 -13
- data/lib/chewy/search.rb +7 -26
- data/lib/chewy/stash.rb +27 -29
- data/lib/chewy/strategy/active_job.rb +2 -2
- data/lib/chewy/strategy/atomic.rb +1 -1
- data/lib/chewy/strategy/atomic_no_refresh.rb +18 -0
- data/lib/chewy/strategy/base.rb +10 -0
- 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 +3 -2
- data/lib/chewy/strategy.rb +6 -19
- data/lib/chewy/version.rb +1 -1
- data/lib/chewy.rb +37 -80
- data/lib/generators/chewy/install_generator.rb +1 -1
- data/lib/tasks/chewy.rake +26 -32
- data/migration_guide.md +56 -0
- data/spec/chewy/config_spec.rb +27 -57
- data/spec/chewy/fields/base_spec.rb +457 -174
- data/spec/chewy/fields/root_spec.rb +24 -32
- data/spec/chewy/fields/time_fields_spec.rb +5 -5
- data/spec/chewy/index/actions_spec.rb +425 -60
- data/spec/chewy/{type → index}/adapter/active_record_spec.rb +110 -44
- data/spec/chewy/{type → index}/adapter/object_spec.rb +21 -6
- data/spec/chewy/index/aliases_spec.rb +3 -3
- data/spec/chewy/index/import/bulk_builder_spec.rb +494 -0
- data/spec/chewy/{type → index}/import/bulk_request_spec.rb +5 -12
- data/spec/chewy/{type → index}/import/journal_builder_spec.rb +22 -30
- data/spec/chewy/{type → index}/import/routine_spec.rb +19 -19
- data/spec/chewy/{type → index}/import_spec.rb +154 -95
- 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 +3 -1
- data/spec/chewy/index/specification_spec.rb +32 -33
- data/spec/chewy/{type → index}/syncer_spec.rb +14 -19
- data/spec/chewy/{type → index}/witchcraft_spec.rb +34 -21
- data/spec/chewy/index/wrapper_spec.rb +100 -0
- data/spec/chewy/index_spec.rb +99 -114
- data/spec/chewy/journal_spec.rb +56 -101
- data/spec/chewy/minitest/helpers_spec.rb +122 -14
- data/spec/chewy/minitest/search_index_receiver_spec.rb +24 -26
- data/spec/chewy/multi_search_spec.rb +84 -0
- data/spec/chewy/rake_helper_spec.rb +325 -101
- 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 +106 -102
- data/spec/chewy/runtime_spec.rb +2 -2
- data/spec/chewy/search/loader_spec.rb +19 -53
- data/spec/chewy/search/pagination/kaminari_examples.rb +3 -5
- data/spec/chewy/search/pagination/kaminari_spec.rb +1 -1
- data/spec/chewy/search/parameters/collapse_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/none_spec.rb +1 -1
- data/spec/chewy/search/parameters/order_spec.rb +18 -11
- data/spec/chewy/search/parameters/query_storage_examples.rb +67 -21
- data/spec/chewy/search/parameters/search_after_spec.rb +4 -1
- data/spec/chewy/search/parameters/source_spec.rb +8 -2
- data/spec/chewy/search/parameters/track_total_hits_spec.rb +5 -0
- data/spec/chewy/search/parameters_spec.rb +39 -8
- data/spec/chewy/search/query_proxy_spec.rb +68 -17
- data/spec/chewy/search/request_spec.rb +360 -149
- data/spec/chewy/search/response_spec.rb +35 -25
- data/spec/chewy/search/scrolling_spec.rb +28 -26
- data/spec/chewy/search_spec.rb +73 -53
- data/spec/chewy/stash_spec.rb +16 -26
- data/spec/chewy/strategy/active_job_spec.rb +23 -10
- data/spec/chewy/strategy/atomic_no_refresh_spec.rb +60 -0
- data/spec/chewy/strategy/atomic_spec.rb +9 -10
- 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 +14 -10
- data/spec/chewy/strategy_spec.rb +19 -15
- data/spec/chewy_spec.rb +17 -110
- data/spec/spec_helper.rb +7 -22
- data/spec/support/active_record.rb +43 -5
- metadata +123 -198
- data/.travis.yml +0 -53
- data/Appraisals +0 -79
- data/LEGACY_DSL.md +0 -497
- data/gemfiles/rails.4.0.activerecord.gemfile +0 -14
- data/gemfiles/rails.4.1.activerecord.gemfile +0 -14
- data/gemfiles/rails.4.2.activerecord.gemfile +0 -15
- data/gemfiles/rails.4.2.mongoid.5.1.gemfile +0 -15
- data/gemfiles/rails.5.0.activerecord.gemfile +0 -15
- data/gemfiles/rails.5.0.mongoid.6.0.gemfile +0 -15
- data/gemfiles/rails.5.1.activerecord.gemfile +0 -15
- data/gemfiles/rails.5.1.mongoid.6.1.gemfile +0 -15
- data/gemfiles/sequel.4.45.gemfile +0 -11
- data/lib/chewy/backports/deep_dup.rb +0 -46
- data/lib/chewy/backports/duplicable.rb +0 -91
- data/lib/chewy/query/compose.rb +0 -68
- data/lib/chewy/query/criteria.rb +0 -191
- 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 -34
- 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 -110
- data/lib/chewy/query/nodes/has_child.rb +0 -15
- data/lib/chewy/query/nodes/has_parent.rb +0 -15
- data/lib/chewy/query/nodes/has_relation.rb +0 -59
- 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 -19
- 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 -35
- data/lib/chewy/query/nodes/script.rb +0 -20
- data/lib/chewy/query/pagination.rb +0 -25
- data/lib/chewy/query.rb +0 -1098
- data/lib/chewy/search/pagination/will_paginate.rb +0 -43
- data/lib/chewy/search/parameters/types.rb +0 -20
- data/lib/chewy/strategy/resque.rb +0 -27
- data/lib/chewy/strategy/shoryuken.rb +0 -40
- data/lib/chewy/type/actions.rb +0 -43
- data/lib/chewy/type/adapter/mongoid.rb +0 -69
- data/lib/chewy/type/adapter/sequel.rb +0 -95
- data/lib/chewy/type/crutch.rb +0 -32
- data/lib/chewy/type/import/bulk_builder.rb +0 -122
- data/lib/chewy/type/observe.rb +0 -78
- data/lib/chewy/type.rb +0 -117
- data/lib/sequel/plugins/chewy_observe.rb +0 -78
- data/spec/chewy/query/criteria_spec.rb +0 -700
- data/spec/chewy/query/filters_spec.rb +0 -201
- data/spec/chewy/query/loading_spec.rb +0 -124
- data/spec/chewy/query/nodes/and_spec.rb +0 -12
- data/spec/chewy/query/nodes/bool_spec.rb +0 -14
- 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 -59
- data/spec/chewy/query/nodes/has_parent_spec.rb +0 -59
- data/spec/chewy/query/nodes/match_all_spec.rb +0 -11
- data/spec/chewy/query/nodes/missing_spec.rb +0 -16
- data/spec/chewy/query/nodes/not_spec.rb +0 -13
- data/spec/chewy/query/nodes/or_spec.rb +0 -12
- 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 -43
- data/spec/chewy/query/nodes/script_spec.rb +0 -15
- data/spec/chewy/query/pagination/kaminari_spec.rb +0 -5
- data/spec/chewy/query/pagination/will_paginate_spec.rb +0 -5
- data/spec/chewy/query/pagination_spec.rb +0 -39
- data/spec/chewy/query_spec.rb +0 -636
- data/spec/chewy/search/pagination/will_paginate_examples.rb +0 -63
- data/spec/chewy/search/pagination/will_paginate_spec.rb +0 -23
- data/spec/chewy/search/parameters/indices_boost_spec.rb +0 -83
- data/spec/chewy/search/parameters/types_spec.rb +0 -5
- data/spec/chewy/strategy/resque_spec.rb +0 -46
- data/spec/chewy/strategy/shoryuken_spec.rb +0 -64
- data/spec/chewy/type/actions_spec.rb +0 -50
- data/spec/chewy/type/adapter/mongoid_spec.rb +0 -372
- data/spec/chewy/type/adapter/sequel_spec.rb +0 -472
- data/spec/chewy/type/import/bulk_builder_spec.rb +0 -279
- data/spec/chewy/type/mapping_spec.rb +0 -142
- data/spec/chewy/type/observe_spec.rb +0 -137
- data/spec/chewy/type/wrapper_spec.rb +0 -98
- data/spec/chewy/type_spec.rb +0 -55
- data/spec/support/mongoid.rb +0 -93
- data/spec/support/sequel.rb +0 -80
@@ -0,0 +1,135 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Chewy::Index::Mapping do
|
4
|
+
let(:product) { ProductsIndex }
|
5
|
+
let(:review) { ReviewsIndex }
|
6
|
+
|
7
|
+
before do
|
8
|
+
stub_index(:products) do
|
9
|
+
root do
|
10
|
+
field :name, 'surname'
|
11
|
+
field :title, type: 'text' do
|
12
|
+
field :subfield1
|
13
|
+
end
|
14
|
+
field 'price', type: 'float' do
|
15
|
+
field :subfield2
|
16
|
+
end
|
17
|
+
agg :named_agg do
|
18
|
+
{avg: {field: 'title.subfield1'}}
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
stub_index(:reviews) do
|
23
|
+
field :title, :body
|
24
|
+
field :comments do
|
25
|
+
field :message
|
26
|
+
field :rating, type: 'long'
|
27
|
+
end
|
28
|
+
agg :named_agg do
|
29
|
+
{avg: {field: 'comments.rating'}}
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
context 'no root element call' do
|
35
|
+
before do
|
36
|
+
stub_index(:products) do
|
37
|
+
field :title, type: 'text' do
|
38
|
+
field :subfield1
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
specify { expect(product.root.children.map(&:name)).to eq([:title]) }
|
44
|
+
specify { expect(product.root.children.map(&:parent)).to eq([product.root]) }
|
45
|
+
specify { expect(product.root.children[0].children.map(&:name)).to eq([:subfield1]) }
|
46
|
+
specify { expect(product.root.children[0].children.map(&:parent)).to eq([product.root.children[0]]) }
|
47
|
+
|
48
|
+
context 'default root options are set' do
|
49
|
+
around do |example|
|
50
|
+
previous_options = Chewy.default_root_options
|
51
|
+
Chewy.default_root_options = {_all: {enabled: false}}
|
52
|
+
example.run
|
53
|
+
Chewy.default_root_options = previous_options
|
54
|
+
end
|
55
|
+
|
56
|
+
specify { expect(product.mappings_hash[:mappings]).to include(_all: {enabled: false}) }
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
describe '.agg' do
|
61
|
+
specify { expect(product._agg_defs[:named_agg].call).to eq(avg: {field: 'title.subfield1'}) }
|
62
|
+
specify { expect(review._agg_defs[:named_agg].call).to eq(avg: {field: 'comments.rating'}) }
|
63
|
+
end
|
64
|
+
|
65
|
+
describe '.field' do
|
66
|
+
specify { expect(product.root.children.map(&:name)).to eq(%i[name surname title price]) }
|
67
|
+
specify { expect(product.root.children.map(&:parent)).to eq([product.root] * 4) }
|
68
|
+
|
69
|
+
specify { expect(product.root.children[0].children.map(&:name)).to eq([]) }
|
70
|
+
specify { expect(product.root.children[1].children.map(&:name)).to eq([]) }
|
71
|
+
|
72
|
+
specify { expect(product.root.children[2].children.map(&:name)).to eq([:subfield1]) }
|
73
|
+
specify { expect(product.root.children[2].children.map(&:parent)).to eq([product.root.children[2]]) }
|
74
|
+
|
75
|
+
specify { expect(product.root.children[3].children.map(&:name)).to eq([:subfield2]) }
|
76
|
+
specify { expect(product.root.children[3].children.map(&:parent)).to eq([product.root.children[3]]) }
|
77
|
+
end
|
78
|
+
|
79
|
+
describe '.mappings_hash' do
|
80
|
+
specify { expect(product.mappings_hash[:mappings]).to eq(product.root.mappings_hash) }
|
81
|
+
|
82
|
+
context 'root merging' do
|
83
|
+
context do
|
84
|
+
before do
|
85
|
+
stub_index(:products) do
|
86
|
+
root other_option: 'nothing' do
|
87
|
+
field :name do
|
88
|
+
field :last_name # will be redefined in the following root flock
|
89
|
+
end
|
90
|
+
end
|
91
|
+
root other_option: 'option_value' do
|
92
|
+
field :identifier
|
93
|
+
field :name, type: 'integer'
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
specify do
|
99
|
+
expect(product.mappings_hash).to eq(
|
100
|
+
mappings: {
|
101
|
+
properties: {
|
102
|
+
name: {type: 'integer'},
|
103
|
+
identifier: {type: Chewy.default_field_type}
|
104
|
+
},
|
105
|
+
other_option: 'option_value'
|
106
|
+
}
|
107
|
+
)
|
108
|
+
end
|
109
|
+
end
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
113
|
+
describe '.supports_outdated_sync?' do
|
114
|
+
def index(&block)
|
115
|
+
stub_index(:cities, &block)
|
116
|
+
CitiesIndex
|
117
|
+
end
|
118
|
+
|
119
|
+
specify { expect(index.supports_outdated_sync?).to eq(false) }
|
120
|
+
specify { expect(index { field :updated_at }.supports_outdated_sync?).to eq(true) }
|
121
|
+
specify { expect(index { field :updated_at, value: -> {} }.supports_outdated_sync?).to eq(false) }
|
122
|
+
specify do
|
123
|
+
expect(index do
|
124
|
+
self.outdated_sync_field = :version
|
125
|
+
field :updated_at
|
126
|
+
end.supports_outdated_sync?).to eq(false)
|
127
|
+
end
|
128
|
+
specify do
|
129
|
+
expect(index do
|
130
|
+
self.outdated_sync_field = :version
|
131
|
+
field :version
|
132
|
+
end.supports_outdated_sync?).to eq(true)
|
133
|
+
end
|
134
|
+
end
|
135
|
+
end
|
@@ -0,0 +1,68 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Chewy::Index::Observe::ActiveRecordMethods do
|
4
|
+
describe '.update_index' do
|
5
|
+
before { stub_model(:city) }
|
6
|
+
|
7
|
+
it 'initializes chewy callbacks when first update_index is evaluated' do
|
8
|
+
expect(City).to receive(:initialize_chewy_callbacks).once
|
9
|
+
City.update_index 'cities', :self
|
10
|
+
City.update_index 'countries', -> {}
|
11
|
+
end
|
12
|
+
|
13
|
+
it 'adds chewy callbacks to model' do
|
14
|
+
expect(City.chewy_callbacks.count).to eq(0)
|
15
|
+
|
16
|
+
City.update_index 'cities', :self
|
17
|
+
City.update_index 'countries', -> {}
|
18
|
+
|
19
|
+
expect(City.chewy_callbacks.count).to eq(2)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
describe 'callbacks' do
|
24
|
+
before { stub_model(:city) { update_index 'cities', :self } }
|
25
|
+
before { stub_index(:cities) { index_scope City } }
|
26
|
+
before { allow(Chewy).to receive(:use_after_commit_callbacks).and_return(use_after_commit_callbacks) }
|
27
|
+
|
28
|
+
let(:city) do
|
29
|
+
Chewy.strategy(:bypass) do
|
30
|
+
City.create!
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
shared_examples 'handles callbacks correctly' do
|
35
|
+
it 'handles callbacks with strategy for possible lazy evaluation on save!' do
|
36
|
+
Chewy.strategy(:urgent) do
|
37
|
+
expect(city).to receive(:update_chewy_indices).and_call_original
|
38
|
+
expect(Chewy.strategy.current).to receive(:update_chewy_indices).with(city)
|
39
|
+
expect(city).not_to receive(:run_chewy_callbacks)
|
40
|
+
|
41
|
+
city.save!
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
it 'runs callbacks at the moment on destroy' do
|
46
|
+
Chewy.strategy(:urgent) do
|
47
|
+
expect(city).not_to receive(:update_chewy_indices)
|
48
|
+
expect(Chewy.strategy.current).not_to receive(:update_chewy_indices)
|
49
|
+
expect(city).to receive(:run_chewy_callbacks)
|
50
|
+
|
51
|
+
city.destroy
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
context 'when Chewy.use_after_commit_callbacks is true' do
|
57
|
+
let(:use_after_commit_callbacks) { true }
|
58
|
+
|
59
|
+
include_examples 'handles callbacks correctly'
|
60
|
+
end
|
61
|
+
|
62
|
+
context 'when Chewy.use_after_commit_callbacks is false' do
|
63
|
+
let(:use_after_commit_callbacks) { false }
|
64
|
+
|
65
|
+
include_examples 'handles callbacks correctly'
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
@@ -0,0 +1,139 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Chewy::Index::Observe::Callback do
|
4
|
+
subject(:callback) { described_class.new(executable) }
|
5
|
+
|
6
|
+
before do
|
7
|
+
stub_model(:city) do
|
8
|
+
attr_accessor :population
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
let(:city) { City.create!(population: 100) }
|
13
|
+
|
14
|
+
describe '#call' do
|
15
|
+
context 'when executable is has arity 0' do
|
16
|
+
let(:executable) { -> { population } }
|
17
|
+
|
18
|
+
it 'calls exectuable within context' do
|
19
|
+
expect(callback.call(city)).to eq(city.population)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
context 'when executable is has arity 1' do
|
24
|
+
let(:executable) { ->(record) { record.population } }
|
25
|
+
|
26
|
+
it 'calls exectuable within context' do
|
27
|
+
expect(callback.call(city)).to eq(city.population)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
describe 'filters' do
|
32
|
+
let(:executable) { ->(_) {} }
|
33
|
+
|
34
|
+
describe 'if' do
|
35
|
+
subject(:callback) { described_class.new(executable, if: filter) }
|
36
|
+
|
37
|
+
shared_examples 'an if filter' do
|
38
|
+
context 'when condition is true' do
|
39
|
+
let(:condition) { true }
|
40
|
+
|
41
|
+
specify do
|
42
|
+
expect(executable).to receive(:call).with(city)
|
43
|
+
|
44
|
+
callback.call(city)
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
context 'when condition is false' do
|
49
|
+
let(:condition) { false }
|
50
|
+
|
51
|
+
specify do
|
52
|
+
expect(executable).not_to receive(:call)
|
53
|
+
|
54
|
+
callback.call(city)
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
context 'when filter is symbol' do
|
60
|
+
let(:filter) { :condition }
|
61
|
+
|
62
|
+
before do
|
63
|
+
allow(city).to receive(:condition).and_return(condition)
|
64
|
+
end
|
65
|
+
|
66
|
+
include_examples 'an if filter'
|
67
|
+
end
|
68
|
+
|
69
|
+
context 'when filter is proc' do
|
70
|
+
let(:filter) { -> { condition_state } }
|
71
|
+
|
72
|
+
before do
|
73
|
+
allow_any_instance_of(City).to receive(:condition_state).and_return(condition)
|
74
|
+
end
|
75
|
+
|
76
|
+
include_examples 'an if filter'
|
77
|
+
end
|
78
|
+
|
79
|
+
context 'when filter is literal' do
|
80
|
+
let(:filter) { condition }
|
81
|
+
|
82
|
+
include_examples 'an if filter'
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
86
|
+
describe 'unless' do
|
87
|
+
subject(:callback) { described_class.new(executable, unless: filter) }
|
88
|
+
|
89
|
+
shared_examples 'an unless filter' do
|
90
|
+
context 'when condition is true' do
|
91
|
+
let(:condition) { true }
|
92
|
+
|
93
|
+
specify do
|
94
|
+
expect(executable).not_to receive(:call)
|
95
|
+
|
96
|
+
callback.call(city)
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
context 'when condition is false' do
|
101
|
+
let(:condition) { false }
|
102
|
+
|
103
|
+
specify do
|
104
|
+
expect(executable).to receive(:call).with(city)
|
105
|
+
|
106
|
+
callback.call(city)
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
111
|
+
context 'when filter is symbol' do
|
112
|
+
let(:filter) { :condition }
|
113
|
+
|
114
|
+
before do
|
115
|
+
allow(city).to receive(:condition).and_return(condition)
|
116
|
+
end
|
117
|
+
|
118
|
+
include_examples 'an unless filter'
|
119
|
+
end
|
120
|
+
|
121
|
+
context 'when filter is proc' do
|
122
|
+
let(:filter) { -> { condition_state } }
|
123
|
+
|
124
|
+
before do
|
125
|
+
allow_any_instance_of(City).to receive(:condition_state).and_return(condition)
|
126
|
+
end
|
127
|
+
|
128
|
+
include_examples 'an unless filter'
|
129
|
+
end
|
130
|
+
|
131
|
+
context 'when filter is literal' do
|
132
|
+
let(:filter) { condition }
|
133
|
+
|
134
|
+
include_examples 'an unless filter'
|
135
|
+
end
|
136
|
+
end
|
137
|
+
end
|
138
|
+
end
|
139
|
+
end
|
@@ -0,0 +1,143 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Chewy::Index::Observe do
|
4
|
+
describe '.update_index' do
|
5
|
+
before do
|
6
|
+
stub_index(:dummies)
|
7
|
+
end
|
8
|
+
|
9
|
+
let(:backreferenced) { Array.new(3) { |i| double(id: i) } }
|
10
|
+
|
11
|
+
specify do
|
12
|
+
expect { DummiesIndex.update_index(backreferenced) }
|
13
|
+
.to raise_error Chewy::UndefinedUpdateStrategy
|
14
|
+
end
|
15
|
+
specify do
|
16
|
+
expect { DummiesIndex.update_index([]) }
|
17
|
+
.not_to update_index('dummies')
|
18
|
+
end
|
19
|
+
specify do
|
20
|
+
expect { DummiesIndex.update_index(nil) }
|
21
|
+
.not_to update_index('dummies')
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
context 'integration', :orm do
|
26
|
+
let(:update_condition) { true }
|
27
|
+
|
28
|
+
before do
|
29
|
+
stub_model(:city) do
|
30
|
+
update_index(-> { 'cities' }, :self)
|
31
|
+
update_index('countries') { changes['country_id'] || previous_changes['country_id'] || country }
|
32
|
+
end
|
33
|
+
|
34
|
+
stub_model(:country) do
|
35
|
+
update_index('cities', if: -> { update_condition }) { cities }
|
36
|
+
update_index(-> { 'countries' }, :self)
|
37
|
+
attr_accessor :update_condition
|
38
|
+
end
|
39
|
+
|
40
|
+
City.belongs_to :country
|
41
|
+
Country.has_many :cities
|
42
|
+
|
43
|
+
stub_index(:cities) do
|
44
|
+
index_scope City
|
45
|
+
end
|
46
|
+
|
47
|
+
stub_index(:countries) do
|
48
|
+
index_scope Country
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
context do
|
53
|
+
let!(:country1) { Chewy.strategy(:atomic) { Country.create!(id: 1, update_condition: update_condition) } }
|
54
|
+
let!(:country2) { Chewy.strategy(:atomic) { Country.create!(id: 2, update_condition: update_condition) } }
|
55
|
+
let!(:city) { Chewy.strategy(:atomic) { City.create!(id: 1, country: country1) } }
|
56
|
+
|
57
|
+
specify { expect { city.save! }.to update_index('cities').and_reindex(city).only }
|
58
|
+
specify { expect { city.save! }.to update_index('countries').and_reindex(country1).only }
|
59
|
+
|
60
|
+
specify { expect { city.destroy }.to update_index('cities') }
|
61
|
+
specify { expect { city.destroy }.to update_index('countries').and_reindex(country1).only }
|
62
|
+
|
63
|
+
specify { expect { city.update!(country: nil) }.to update_index('cities').and_reindex(city).only }
|
64
|
+
specify { expect { city.update!(country: nil) }.to update_index('countries').and_reindex(country1).only }
|
65
|
+
|
66
|
+
specify { expect { city.update!(country: country2) }.to update_index('cities').and_reindex(city).only }
|
67
|
+
specify do
|
68
|
+
expect { city.update!(country: country2) }
|
69
|
+
.to update_index('countries').and_reindex(country1, country2).only
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
context do
|
74
|
+
let!(:country) do
|
75
|
+
Chewy.strategy(:atomic) do
|
76
|
+
cities = Array.new(2) { |i| City.create!(id: i) }
|
77
|
+
Country.create!(id: 1, cities: cities, update_condition: update_condition)
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
specify { expect { country.save! }.to update_index('cities').and_reindex(country.cities).only }
|
82
|
+
specify { expect { country.save! }.to update_index('countries').and_reindex(country).only }
|
83
|
+
|
84
|
+
specify { expect { country.destroy }.to update_index('cities').and_reindex(country.cities).only }
|
85
|
+
specify { expect { country.destroy }.to update_index('countries') }
|
86
|
+
|
87
|
+
context 'conditional update' do
|
88
|
+
let(:update_condition) { false }
|
89
|
+
specify { expect { country.save! }.not_to update_index('cities') }
|
90
|
+
specify { expect { country.destroy }.not_to update_index('cities') }
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
context 'transactions', :active_record do
|
96
|
+
context do
|
97
|
+
before { stub_model(:city) { update_index 'cities', :self } }
|
98
|
+
before { stub_index(:cities) { index_scope City } }
|
99
|
+
|
100
|
+
specify do
|
101
|
+
Chewy.strategy(:urgent) do
|
102
|
+
ActiveRecord::Base.transaction do
|
103
|
+
expect { City.create! }.not_to update_index('cities')
|
104
|
+
end
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
specify do
|
109
|
+
city = Chewy.strategy(:bypass) { City.create! }
|
110
|
+
|
111
|
+
Chewy.strategy(:urgent) do
|
112
|
+
ActiveRecord::Base.transaction do
|
113
|
+
expect { city.destroy }.not_to update_index('cities')
|
114
|
+
end
|
115
|
+
end
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
context do
|
120
|
+
before { allow(Chewy).to receive_messages(use_after_commit_callbacks: false) }
|
121
|
+
before { stub_model(:city) { update_index 'cities', :self } }
|
122
|
+
before { stub_index(:cities) { index_scope City } }
|
123
|
+
|
124
|
+
specify do
|
125
|
+
Chewy.strategy(:urgent) do
|
126
|
+
ActiveRecord::Base.transaction do
|
127
|
+
expect { City.create! }.to update_index('cities')
|
128
|
+
end
|
129
|
+
end
|
130
|
+
end
|
131
|
+
|
132
|
+
specify do
|
133
|
+
city = Chewy.strategy(:bypass) { City.create! }
|
134
|
+
|
135
|
+
Chewy.strategy(:urgent) do
|
136
|
+
ActiveRecord::Base.transaction do
|
137
|
+
expect { city.destroy }.to update_index('cities')
|
138
|
+
end
|
139
|
+
end
|
140
|
+
end
|
141
|
+
end
|
142
|
+
end
|
143
|
+
end
|
@@ -118,7 +118,9 @@ describe Chewy::Index::Settings do
|
|
118
118
|
end
|
119
119
|
|
120
120
|
context do
|
121
|
-
before
|
121
|
+
before do
|
122
|
+
allow(Chewy).to receive_messages(configuration: {index: {number_of_shards: 7, number_of_replicas: 2}})
|
123
|
+
end
|
122
124
|
|
123
125
|
specify do
|
124
126
|
expect(described_class.new.to_hash)
|
@@ -5,44 +5,34 @@ describe Chewy::Index::Specification do
|
|
5
5
|
|
6
6
|
let(:index1) do
|
7
7
|
stub_index(:places) do
|
8
|
-
|
9
|
-
field :name, type: 'string'
|
10
|
-
end
|
8
|
+
field :founded_on, type: 'date'
|
11
9
|
end
|
12
10
|
end
|
13
11
|
|
14
12
|
let(:index2) do
|
15
13
|
stub_index(:places) do
|
16
14
|
settings analyzer: {}
|
17
|
-
|
18
|
-
field :name, type: 'string'
|
19
|
-
end
|
15
|
+
field :founded_on, type: 'date'
|
20
16
|
end
|
21
17
|
end
|
22
18
|
|
23
19
|
let(:index3) do
|
24
20
|
stub_index(:places) do
|
25
|
-
|
26
|
-
|
27
|
-
field :population, type: 'integer'
|
28
|
-
end
|
21
|
+
field :founded_on, type: 'date'
|
22
|
+
field :population, type: 'integer'
|
29
23
|
end
|
30
24
|
end
|
31
25
|
|
32
26
|
let(:index4) do
|
33
27
|
stub_index(:places) do
|
34
|
-
|
35
|
-
|
36
|
-
field :name, type: 'string'
|
37
|
-
end
|
28
|
+
field :population, type: 'integer'
|
29
|
+
field :founded_on, type: 'date'
|
38
30
|
end
|
39
31
|
end
|
40
32
|
|
41
33
|
let(:index5) do
|
42
34
|
stub_index('namespace/cities') do
|
43
|
-
|
44
|
-
field :population, type: 'integer'
|
45
|
-
end
|
35
|
+
field :population, type: 'integer'
|
46
36
|
end
|
47
37
|
end
|
48
38
|
|
@@ -55,11 +45,14 @@ describe Chewy::Index::Specification do
|
|
55
45
|
describe '#lock!' do
|
56
46
|
specify do
|
57
47
|
expect { specification1.lock! }.to change { Chewy::Stash::Specification.all.hits }.from([]).to([{
|
58
|
-
'_index' => '
|
59
|
-
'_type' => '
|
48
|
+
'_index' => 'chewy_specifications',
|
49
|
+
'_type' => '_doc',
|
60
50
|
'_id' => 'places',
|
61
51
|
'_score' => 1.0,
|
62
|
-
'_source' => {'
|
52
|
+
'_source' => {'specification' => Base64.encode64({
|
53
|
+
'settings' => {'index' => {'number_of_shards' => 1, 'number_of_replicas' => 0}},
|
54
|
+
'mappings' => {'properties' => {'founded_on' => {'type' => 'date'}}}
|
55
|
+
}.to_json)}
|
63
56
|
}])
|
64
57
|
end
|
65
58
|
|
@@ -68,17 +61,23 @@ describe Chewy::Index::Specification do
|
|
68
61
|
|
69
62
|
specify do
|
70
63
|
expect { specification5.lock! }.to change { Chewy::Stash::Specification.all.hits }.to([{
|
71
|
-
'_index' => '
|
72
|
-
'_type' => '
|
64
|
+
'_index' => 'chewy_specifications',
|
65
|
+
'_type' => '_doc',
|
73
66
|
'_id' => 'places',
|
74
67
|
'_score' => 1.0,
|
75
|
-
'_source' => {'
|
68
|
+
'_source' => {'specification' => Base64.encode64({
|
69
|
+
'settings' => {'index' => {'number_of_shards' => 1, 'number_of_replicas' => 0}},
|
70
|
+
'mappings' => {'properties' => {'founded_on' => {'type' => 'date'}}}
|
71
|
+
}.to_json)}
|
76
72
|
}, {
|
77
|
-
'_index' => '
|
78
|
-
'_type' => '
|
73
|
+
'_index' => 'chewy_specifications',
|
74
|
+
'_type' => '_doc',
|
79
75
|
'_id' => 'namespace/cities',
|
80
76
|
'_score' => 1.0,
|
81
|
-
'_source' => {'
|
77
|
+
'_source' => {'specification' => Base64.encode64({
|
78
|
+
'settings' => {'index' => {'number_of_shards' => 1, 'number_of_replicas' => 0}},
|
79
|
+
'mappings' => {'properties' => {'population' => {'type' => 'integer'}}}
|
80
|
+
}.to_json)}
|
82
81
|
}])
|
83
82
|
end
|
84
83
|
end
|
@@ -88,14 +87,14 @@ describe Chewy::Index::Specification do
|
|
88
87
|
specify do
|
89
88
|
expect { specification1.lock! }.to change { specification1.locked }.from({}).to(
|
90
89
|
'settings' => {'index' => {'number_of_shards' => 1, 'number_of_replicas' => 0}},
|
91
|
-
'mappings' => {'
|
90
|
+
'mappings' => {'properties' => {'founded_on' => {'type' => 'date'}}}
|
92
91
|
)
|
93
92
|
end
|
94
93
|
|
95
94
|
specify do
|
96
95
|
expect { specification5.lock! }.to change { specification5.locked }.from({}).to(
|
97
96
|
'settings' => {'index' => {'number_of_shards' => 1, 'number_of_replicas' => 0}},
|
98
|
-
'mappings' => {'
|
97
|
+
'mappings' => {'properties' => {'population' => {'type' => 'integer'}}}
|
99
98
|
)
|
100
99
|
end
|
101
100
|
|
@@ -105,20 +104,20 @@ describe Chewy::Index::Specification do
|
|
105
104
|
specify do
|
106
105
|
expect { specification2.lock! }.to change { specification2.locked }.from(
|
107
106
|
'settings' => {'index' => {'number_of_shards' => 1, 'number_of_replicas' => 0}},
|
108
|
-
'mappings' => {'
|
107
|
+
'mappings' => {'properties' => {'founded_on' => {'type' => 'date'}}}
|
109
108
|
).to(
|
110
109
|
'settings' => {'analyzer' => {}, 'index' => {'number_of_shards' => 1, 'number_of_replicas' => 0}},
|
111
|
-
'mappings' => {'
|
110
|
+
'mappings' => {'properties' => {'founded_on' => {'type' => 'date'}}}
|
112
111
|
)
|
113
112
|
end
|
114
113
|
|
115
114
|
specify do
|
116
115
|
expect { specification3.lock! }.to change { specification3.locked }.from(
|
117
116
|
'settings' => {'index' => {'number_of_shards' => 1, 'number_of_replicas' => 0}},
|
118
|
-
'mappings' => {'
|
117
|
+
'mappings' => {'properties' => {'founded_on' => {'type' => 'date'}}}
|
119
118
|
).to(
|
120
119
|
'settings' => {'index' => {'number_of_shards' => 1, 'number_of_replicas' => 0}},
|
121
|
-
'mappings' => {'
|
120
|
+
'mappings' => {'properties' => {'founded_on' => {'type' => 'date'}, 'population' => {'type' => 'integer'}}}
|
122
121
|
)
|
123
122
|
end
|
124
123
|
end
|
@@ -127,7 +126,7 @@ describe Chewy::Index::Specification do
|
|
127
126
|
describe '#current' do
|
128
127
|
specify do
|
129
128
|
expect(specification2.current).to eq(
|
130
|
-
'mappings' => {'
|
129
|
+
'mappings' => {'properties' => {'founded_on' => {'type' => 'date'}}},
|
131
130
|
'settings' => {'analyzer' => {}, 'index' => {'number_of_shards' => 1, 'number_of_replicas' => 0}}
|
132
131
|
)
|
133
132
|
end
|