discourse/spec/models/search_observer_spec.rb
Sam 3c84876660 BUGFIX: Chinese search was broken
BUGFIX: User locale was used index data
BUGFIX: missing Norwegian fulltext config
FEATURE: store the text used to index stuff in fulltext (for diagnostics / in page search)
FEATURE: re-index posts when locale changes (in bg job)
FEATURE: allow reindexing by trucating post_search_data

Note: I removed japanese specific config cause it requires custom pg config,
  happy to add it once our base docker config ships with it
2014-06-24 17:11:13 +10:00

40 lines
869 B
Ruby

require 'spec_helper'
describe SearchObserver do
def get_row(post_id)
SqlBuilder.map_exec(
OpenStruct,
"select * from post_search_data where post_id = :post_id",
post_id: post_id
).first
end
it 'correctly indexes chinese' do
SiteSetting.default_locale = 'zh_CN'
data = "你好世界"
data.split(" ").length.should == 1
SearchObserver.update_posts_index(99, "你好世界", "", nil)
row = get_row(99)
row.raw_data.split(' ').length.should == 2
end
it 'correctly indexes a post' do
data = "<a>This</a> is a test"
SearchObserver.update_posts_index(99, data, "", nil)
row = get_row(99)
row.raw_data.should == "This is a test"
row.locale.should == "en"
SearchObserver.update_posts_index(99, "tester", "", nil)
row = get_row(99)
row.raw_data.should == "tester"
end
end