2015-10-11 17:41:23 +08:00
|
|
|
require 'rails_helper'
|
2014-06-24 15:10:56 +08:00
|
|
|
|
|
|
|
describe SearchObserver do
|
|
|
|
|
|
|
|
it 'correctly indexes chinese' do
|
|
|
|
SiteSetting.default_locale = 'zh_CN'
|
|
|
|
data = "你好世界"
|
2015-01-06 00:04:23 +08:00
|
|
|
expect(data.split(" ").length).to eq(1)
|
2014-06-24 15:10:56 +08:00
|
|
|
|
|
|
|
SearchObserver.update_posts_index(99, "你好世界", "", nil)
|
|
|
|
|
2016-08-11 03:40:58 +08:00
|
|
|
raw_data = PostSearchData.where(post_id: 99).pluck(:raw_data)[0]
|
|
|
|
expect(raw_data.split(' ').length).to eq(2)
|
2014-06-24 15:10:56 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'correctly indexes a post' do
|
|
|
|
data = "<a>This</a> is a test"
|
|
|
|
|
|
|
|
SearchObserver.update_posts_index(99, data, "", nil)
|
|
|
|
|
2016-08-11 03:40:58 +08:00
|
|
|
raw_data, locale = PostSearchData.where(post_id: 99).pluck(:raw_data, :locale)[0]
|
|
|
|
expect(raw_data).to eq("This is a test")
|
|
|
|
expect(locale).to eq("en")
|
2014-06-24 15:10:56 +08:00
|
|
|
|
|
|
|
SearchObserver.update_posts_index(99, "tester", "", nil)
|
|
|
|
|
2016-08-11 03:40:58 +08:00
|
|
|
raw_data = PostSearchData.where(post_id: 99).pluck(:raw_data)[0]
|
|
|
|
expect(raw_data).to eq("tester")
|
2014-06-24 15:10:56 +08:00
|
|
|
end
|
|
|
|
end
|