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