2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-16 07:38:34 -04:00
|
|
|
describe Jobs::ReindexSearch do
|
2020-11-09 01:06:07 -05:00
|
|
|
before do
|
|
|
|
SearchIndexer.enable
|
|
|
|
Jobs.run_immediately!
|
|
|
|
end
|
2017-08-16 07:38:34 -04:00
|
|
|
|
|
|
|
let(:locale) { 'fr' }
|
|
|
|
# This works since test db has a small record less than limit.
|
|
|
|
# Didn't check `topic` because topic doesn't have posts in fabrication
|
|
|
|
# thus no search data
|
|
|
|
%w(post category user).each do |m|
|
|
|
|
it "should rebuild `#{m}` when default_locale changed" do
|
|
|
|
SiteSetting.default_locale = 'en'
|
|
|
|
model = Fabricate(m.to_sym)
|
|
|
|
SiteSetting.default_locale = locale
|
|
|
|
subject.execute({})
|
2019-05-06 21:27:05 -04:00
|
|
|
expect(model.public_send("#{m}_search_data").locale).to eq locale
|
2017-08-16 07:38:34 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should rebuild `#{m}` when INDEX_VERSION changed" do
|
|
|
|
model = Fabricate(m.to_sym)
|
|
|
|
# so that search data can be reindexed
|
2019-05-06 21:27:05 -04:00
|
|
|
search_data = model.public_send("#{m}_search_data")
|
2019-04-29 03:32:25 -04:00
|
|
|
search_data.update!(version: 0)
|
2017-08-16 07:38:34 -04:00
|
|
|
model.reload
|
|
|
|
|
|
|
|
subject.execute({})
|
2019-05-06 21:27:05 -04:00
|
|
|
expect(model.public_send("#{m}_search_data").version)
|
2020-07-23 02:10:05 -04:00
|
|
|
.to eq("SearchIndexer::#{m.upcase}_INDEX_VERSION".constantize)
|
2017-08-16 07:38:34 -04:00
|
|
|
end
|
|
|
|
end
|
2019-03-31 22:06:27 -04:00
|
|
|
|
2021-01-25 05:23:36 -05:00
|
|
|
describe 'rebuild_posts' do
|
2019-04-01 19:12:39 -04:00
|
|
|
class FakeIndexer
|
|
|
|
def self.index(post, force:)
|
2020-07-23 21:29:54 -04:00
|
|
|
get_posts.push(post)
|
2019-04-01 19:12:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.posts
|
2020-07-23 21:29:54 -04:00
|
|
|
get_posts
|
2019-04-01 19:12:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.reset
|
2020-07-23 21:29:54 -04:00
|
|
|
get_posts.clear
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def self.get_posts
|
|
|
|
@posts ||= []
|
2019-04-01 19:12:39 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
after do
|
|
|
|
FakeIndexer.reset
|
|
|
|
end
|
|
|
|
|
2021-01-25 05:23:36 -05:00
|
|
|
it "should not reindex posts that belong to a deleted topic or have been trashed" do
|
2019-04-01 19:36:53 -04:00
|
|
|
post = Fabricate(:post)
|
|
|
|
post2 = Fabricate(:post)
|
2019-04-08 04:38:43 -04:00
|
|
|
post3 = Fabricate(:post)
|
|
|
|
PostSearchData.delete_all
|
2019-04-01 19:36:53 -04:00
|
|
|
post2.topic.trash!
|
2019-04-08 04:38:43 -04:00
|
|
|
post3.trash!
|
2019-04-01 19:36:53 -04:00
|
|
|
|
2021-01-25 05:23:36 -05:00
|
|
|
subject.rebuild_posts(indexer: FakeIndexer)
|
2019-04-01 19:36:53 -04:00
|
|
|
|
|
|
|
expect(FakeIndexer.posts).to contain_exactly(post)
|
|
|
|
end
|
|
|
|
|
2020-07-23 02:52:20 -04:00
|
|
|
it 'should not reindex posts with a developmental version' do
|
|
|
|
post = Fabricate(:post, version: SearchIndexer::MIN_POST_REINDEX_VERSION + 1)
|
|
|
|
|
2021-01-25 05:23:36 -05:00
|
|
|
subject.rebuild_posts(indexer: FakeIndexer)
|
2020-07-23 02:52:20 -04:00
|
|
|
|
|
|
|
expect(FakeIndexer.posts).to eq([])
|
|
|
|
end
|
|
|
|
|
2019-04-01 19:12:39 -04:00
|
|
|
it 'should not reindex posts with empty raw' do
|
|
|
|
post = Fabricate(:post)
|
|
|
|
post.post_search_data.destroy!
|
|
|
|
|
|
|
|
post2 = Fabricate.build(:post,
|
|
|
|
raw: "",
|
|
|
|
post_type: Post.types[:small_action]
|
|
|
|
)
|
|
|
|
|
|
|
|
post2.save!(validate: false)
|
|
|
|
|
2021-01-25 05:23:36 -05:00
|
|
|
subject.rebuild_posts(indexer: FakeIndexer)
|
2019-04-01 19:12:39 -04:00
|
|
|
|
|
|
|
expect(FakeIndexer.posts).to contain_exactly(post)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#execute' do
|
2019-04-08 04:51:39 -04:00
|
|
|
it "should clean up topic_search_data of trashed topics" do
|
|
|
|
topic = Fabricate(:post).topic
|
|
|
|
topic2 = Fabricate(:post).topic
|
|
|
|
|
|
|
|
[topic, topic2].each { |t| SearchIndexer.index(t, force: true) }
|
|
|
|
|
2021-01-25 05:23:36 -05:00
|
|
|
freeze_time(1.day.ago) { topic.trash! }
|
2019-04-08 04:51:39 -04:00
|
|
|
|
|
|
|
expect { subject.execute({}) }.to change { TopicSearchData.count }.by(-1)
|
|
|
|
expect(Topic.pluck(:id)).to contain_exactly(topic2.id)
|
|
|
|
|
|
|
|
expect(TopicSearchData.pluck(:topic_id)).to contain_exactly(
|
|
|
|
topic2.topic_search_data.topic_id
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2021-01-25 05:23:36 -05:00
|
|
|
it "should clean up post_search_data of posts with empty raw or posts from trashed topics" do
|
2019-04-01 19:12:39 -04:00
|
|
|
post = Fabricate(:post)
|
|
|
|
post2 = Fabricate(:post, post_type: Post.types[:small_action])
|
|
|
|
post2.raw = ""
|
|
|
|
post2.save!(validate: false)
|
2019-04-02 22:10:41 -04:00
|
|
|
post3 = Fabricate(:post)
|
|
|
|
post3.topic.trash!
|
2019-06-04 03:19:44 -04:00
|
|
|
post4, post5, post6 = nil
|
2019-04-02 22:10:41 -04:00
|
|
|
|
2021-01-25 05:23:36 -05:00
|
|
|
freeze_time(1.day.ago) do
|
2019-04-02 22:10:41 -04:00
|
|
|
post4 = Fabricate(:post)
|
|
|
|
post4.topic.trash!
|
2019-06-04 03:19:44 -04:00
|
|
|
|
|
|
|
post5 = Fabricate(:post)
|
|
|
|
post6 = Fabricate(:post, topic_id: post5.topic_id)
|
|
|
|
post6.trash!
|
2019-04-02 22:10:41 -04:00
|
|
|
end
|
|
|
|
|
2019-06-04 03:19:44 -04:00
|
|
|
expect { subject.execute({}) }.to change { PostSearchData.count }.by(-3)
|
2019-04-01 19:12:39 -04:00
|
|
|
|
2019-04-08 04:51:39 -04:00
|
|
|
expect(Post.pluck(:id)).to contain_exactly(
|
2019-06-04 03:19:44 -04:00
|
|
|
post.id, post2.id, post3.id, post4.id, post5.id
|
2019-04-02 22:10:41 -04:00
|
|
|
)
|
|
|
|
|
2019-04-08 04:51:39 -04:00
|
|
|
expect(PostSearchData.pluck(:post_id)).to contain_exactly(
|
2019-06-04 03:19:44 -04:00
|
|
|
post.id, post3.id, post5.id
|
2019-04-02 22:10:41 -04:00
|
|
|
)
|
2019-04-01 19:12:39 -04:00
|
|
|
end
|
2019-03-31 22:06:27 -04:00
|
|
|
end
|
2017-08-16 07:38:34 -04:00
|
|
|
end
|