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
|
2017-08-16 07:38:34 -04:00
|
|
|
let(:post_id) { 99 }
|
2018-09-13 12:53:53 -04:00
|
|
|
|
2018-09-17 04:31:15 -04:00
|
|
|
def scrub(html, strip_diacritics: false)
|
|
|
|
SearchIndexer.scrub_html_for_search(html, strip_diacritics: strip_diacritics)
|
|
|
|
end
|
|
|
|
|
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
|
|
|
|
2018-02-19 22:41:00 -05:00
|
|
|
SearchIndexer.update_posts_index(post_id, "你好世界", "", "", nil)
|
2014-06-24 03:10:56 -04:00
|
|
|
|
2017-08-16 07:38:34 -04:00
|
|
|
raw_data = PostSearchData.where(post_id: post_id).pluck(:raw_data)[0]
|
2016-08-10 15:40:58 -04:00
|
|
|
expect(raw_data.split(' ').length).to eq(2)
|
2014-06-24 03:10:56 -04:00
|
|
|
end
|
|
|
|
|
2018-04-26 01:46:52 -04:00
|
|
|
it 'extract youtube title' do
|
|
|
|
html = "<div class=\"lazyYT\" data-youtube-id=\"lmFgeFh2nlw\" data-youtube-title=\"Metallica Mixer Explains Missing Bass on 'And Justice for All' [Exclusive]\" data-width=\"480\" data-height=\"270\" data-parameters=\"feature=oembed&wmode=opaque\"></div>"
|
2018-09-17 04:31:15 -04:00
|
|
|
scrubbed = scrub(html)
|
|
|
|
expect(scrubbed).to eq("Metallica Mixer Explains Missing Bass on 'And Justice for All' [Exclusive]")
|
2018-04-26 01:46:52 -04:00
|
|
|
end
|
|
|
|
|
2018-08-19 20:39:19 -04:00
|
|
|
it 'extract a link' do
|
|
|
|
html = "<a href='http://meta.discourse.org/'>link</a>"
|
2018-09-17 04:31:15 -04:00
|
|
|
scrubbed = scrub(html)
|
|
|
|
expect(scrubbed).to eq("http://meta.discourse.org/ link")
|
2018-08-19 20:39:19 -04:00
|
|
|
end
|
|
|
|
|
2018-09-17 04:31:15 -04:00
|
|
|
it 'uses ignore_accent setting to strip diacritics' do
|
2018-08-23 18:38:44 -04:00
|
|
|
html = "<p>HELLO Hétérogénéité Здравствуйте هتاف للترحيب 你好</p>"
|
2018-08-23 11:13:52 -04:00
|
|
|
|
2018-09-17 04:31:15 -04:00
|
|
|
SiteSetting.search_ignore_accents = true
|
|
|
|
scrubbed = SearchIndexer.scrub_html_for_search(html)
|
|
|
|
expect(scrubbed).to eq("HELLO Heterogeneite Здравствуите هتاف للترحيب 你好")
|
2018-08-23 11:13:52 -04:00
|
|
|
|
2018-09-17 04:31:15 -04:00
|
|
|
SiteSetting.search_ignore_accents = false
|
|
|
|
scrubbed = SearchIndexer.scrub_html_for_search(html)
|
|
|
|
expect(scrubbed).to eq("HELLO Hétérogénéité Здравствуйте هتاف للترحيب 你好")
|
2018-08-23 11:13:52 -04:00
|
|
|
end
|
|
|
|
|
2018-09-13 12:53:53 -04:00
|
|
|
it "doesn't index local files" do
|
|
|
|
html = <<~HTML
|
|
|
|
<p><img src="https://www.discourse.org/logo.png" alt="Discourse"></p>
|
|
|
|
<p><img src="#{Discourse.base_url_no_prefix}/uploads/episodeinteractive/original/3X/0/f/0f40b818356bdc1d80acfa905034e95cfd112a3a.png" alt="51%20PM" width="289" height="398"></p>
|
|
|
|
<div class="lightbox-wrapper">
|
|
|
|
<a class="lightbox" href="#{Discourse.base_url_no_prefix}/uploads/episodeinteractive/original/3X/1/6/16790095df3baf318fb2eb1d7e5d7860dc45d48b.jpg" data-download-href="#{Discourse.base_url_no_prefix}/uploads/episodeinteractive/16790095df3baf318fb2eb1d7e5d7860dc45d48b" title="Untitled design (21).jpg" rel="nofollow noopener">
|
|
|
|
<img src="#{Discourse.base_url_no_prefix}/uploads/episodeinteractive/optimized/3X/1/6/16790095df3baf318fb2eb1d7e5d7860dc45d48b_1_563x500.jpg" alt="Untitled%20design%20(21)" width="563" height="500">
|
|
|
|
<div class="meta">
|
2019-03-22 11:52:06 -04:00
|
|
|
<svg class="fa d-icon d-icon-far-image svg-icon" aria-hidden="true"><use xlink:href="#far-image"></use></svg>
|
2018-09-13 12:53:53 -04:00
|
|
|
<span class="filename">Untitled design (21).jpg</span>
|
|
|
|
<span class="informations">1280x1136 472 KB</span>
|
2019-03-22 11:52:06 -04:00
|
|
|
<svg class="fa d-icon d-icon-discourse-expand svg-icon" aria-hidden="true"><use xlink:href="#discourse-expand"></use></svg>
|
2018-09-13 12:53:53 -04:00
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
HTML
|
|
|
|
|
2018-09-17 04:31:15 -04:00
|
|
|
scrubbed = scrub(html)
|
2018-09-13 12:53:53 -04:00
|
|
|
|
2018-09-17 04:31:15 -04:00
|
|
|
expect(scrubbed).to eq("Discourse 51%20PM Untitled design (21).jpg Untitled%20design%20(21) Untitled design (21).jpg 1280x1136 472 KB")
|
2018-09-13 12:53:53 -04:00
|
|
|
end
|
|
|
|
|
2017-08-16 07:38:34 -04:00
|
|
|
it 'correctly indexes a post according to version' do
|
|
|
|
# Preparing so that they can be indexed to right version
|
2018-02-19 22:41:00 -05:00
|
|
|
SearchIndexer.update_posts_index(post_id, "dummy", "", nil, nil)
|
2017-08-16 07:38:34 -04:00
|
|
|
PostSearchData.find_by(post_id: post_id).update_attributes!(version: -1)
|
2014-06-24 03:10:56 -04:00
|
|
|
|
2017-08-16 07:38:34 -04:00
|
|
|
data = "<a>This</a> is a test"
|
2018-02-19 22:41:00 -05:00
|
|
|
SearchIndexer.update_posts_index(post_id, "", "", nil, data)
|
2014-06-24 03:10:56 -04:00
|
|
|
|
2017-08-16 07:38:34 -04:00
|
|
|
raw_data, locale, version = PostSearchData.where(post_id: post_id).pluck(:raw_data, :locale, :version)[0]
|
2016-08-10 15:40:58 -04:00
|
|
|
expect(raw_data).to eq("This is a test")
|
|
|
|
expect(locale).to eq("en")
|
2017-08-16 07:38:34 -04:00
|
|
|
expect(version).to eq(Search::INDEX_VERSION)
|
2014-06-24 03:10:56 -04:00
|
|
|
|
2018-02-19 22:41:00 -05:00
|
|
|
SearchIndexer.update_posts_index(post_id, "tester", "", nil, nil)
|
2014-06-24 03:10:56 -04:00
|
|
|
|
2017-08-16 07:38:34 -04:00
|
|
|
raw_data = PostSearchData.where(post_id: post_id).pluck(:raw_data)[0]
|
2016-08-10 15:40:58 -04:00
|
|
|
expect(raw_data).to eq("tester")
|
2014-06-24 03:10:56 -04:00
|
|
|
end
|
2019-03-19 05:16:57 -04:00
|
|
|
|
|
|
|
describe '.index' do
|
|
|
|
let(:post) { Fabricate(:post) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
SearchIndexer.enable
|
|
|
|
end
|
|
|
|
|
|
|
|
after do
|
|
|
|
SearchIndexer.disable
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should index posts correctly' do
|
|
|
|
expect { post }.to change { PostSearchData.count }.by(1)
|
|
|
|
|
|
|
|
expect { post.update!(raw: "this is new content") }
|
|
|
|
.to change { post.reload.post_search_data.raw_data }
|
|
|
|
|
|
|
|
expect { post.update!(topic_id: Fabricate(:topic).id) }
|
|
|
|
.to change { post.reload.post_search_data.raw_data }
|
|
|
|
end
|
|
|
|
end
|
2014-06-24 03:10:56 -04:00
|
|
|
end
|