2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-10-11 05:41:23 -04:00
|
|
|
require 'rails_helper'
|
2013-07-12 14:38:20 -04:00
|
|
|
require 'suggested_topics_builder'
|
|
|
|
|
|
|
|
describe SuggestedTopicsBuilder do
|
|
|
|
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:topic) { Fabricate(:topic) }
|
2013-08-27 20:51:49 -04:00
|
|
|
let(:builder) { SuggestedTopicsBuilder.new(topic) }
|
2013-07-12 14:38:20 -04:00
|
|
|
|
|
|
|
before do
|
2017-07-07 02:09:14 -04:00
|
|
|
SiteSetting.suggested_topics = 5
|
2013-07-12 14:38:20 -04:00
|
|
|
end
|
|
|
|
|
2013-08-27 20:51:49 -04:00
|
|
|
context "splicing category results" do
|
|
|
|
|
|
|
|
def fake_topic(topic_id, category_id)
|
|
|
|
build(:topic, id: topic_id, category_id: category_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:builder) do
|
|
|
|
SuggestedTopicsBuilder.new(fake_topic(1, 1))
|
|
|
|
end
|
|
|
|
|
|
|
|
it "prioritizes category correctly" do
|
|
|
|
builder.splice_results([fake_topic(2, 2)], :high)
|
|
|
|
builder.splice_results([fake_topic(3, 1)], :high)
|
|
|
|
builder.splice_results([fake_topic(4, 1)], :high)
|
|
|
|
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(builder.results.map(&:id)).to eq([3, 4, 2])
|
2013-08-27 20:51:49 -04:00
|
|
|
|
|
|
|
# we have 2 items in category 1
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(builder.category_results_left).to eq(3)
|
2013-08-27 20:51:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "inserts using default approach for non high priority" do
|
|
|
|
builder.splice_results([fake_topic(2, 2)], :high)
|
|
|
|
builder.splice_results([fake_topic(3, 1)], :low)
|
|
|
|
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(builder.results.map(&:id)).to eq([2, 3])
|
2013-08-27 20:51:49 -04:00
|
|
|
end
|
2014-01-13 15:02:08 -05:00
|
|
|
|
|
|
|
it "inserts multiple results and puts topics in the correct order" do
|
|
|
|
builder.splice_results([fake_topic(2, 1), fake_topic(3, 2), fake_topic(4, 1)], :high)
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(builder.results.map(&:id)).to eq([2, 4, 3])
|
2014-01-13 15:02:08 -05:00
|
|
|
end
|
2013-08-27 20:51:49 -04:00
|
|
|
end
|
|
|
|
|
2013-07-12 14:38:20 -04:00
|
|
|
it "has the correct defaults" do
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(builder.excluded_topic_ids.include?(topic.id)).to eq(true)
|
|
|
|
expect(builder.results_left).to eq(5)
|
|
|
|
expect(builder.size).to eq(0)
|
|
|
|
expect(builder).not_to be_full
|
2013-07-12 14:38:20 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns full correctly" do
|
|
|
|
builder.stubs(:results_left).returns(0)
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(builder).to be_full
|
2013-07-12 14:38:20 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context "adding results" do
|
|
|
|
|
|
|
|
it "adds nothing with nil results" do
|
|
|
|
builder.add_results(nil)
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(builder.results_left).to eq(5)
|
|
|
|
expect(builder.size).to eq(0)
|
|
|
|
expect(builder).not_to be_full
|
2013-07-12 14:38:20 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context "adding topics" do
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:other_topic) { Fabricate(:topic) }
|
2013-07-12 14:38:20 -04:00
|
|
|
|
|
|
|
before do
|
|
|
|
# Add all topics
|
|
|
|
builder.add_results(Topic)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "added the result correctly" do
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(builder.size).to eq(1)
|
|
|
|
expect(builder.results_left).to eq(4)
|
|
|
|
expect(builder).not_to be_full
|
|
|
|
expect(builder.excluded_topic_ids.include?(topic.id)).to eq(true)
|
|
|
|
expect(builder.excluded_topic_ids.include?(other_topic.id)).to eq(true)
|
2013-07-12 14:38:20 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2014-02-04 12:26:38 -05:00
|
|
|
context "adding topics that are not open" do
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:archived_topic) { Fabricate(:topic, archived: true) }
|
|
|
|
fab!(:closed_topic) { Fabricate(:topic, closed: true) }
|
|
|
|
fab!(:invisible_topic) { Fabricate(:topic, visible: false) }
|
2013-07-12 14:38:20 -04:00
|
|
|
|
2014-02-04 12:26:38 -05:00
|
|
|
it "adds archived and closed, but not invisible topics" do
|
2013-07-12 14:38:20 -04:00
|
|
|
builder.add_results(Topic)
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(builder.size).to eq(2)
|
|
|
|
expect(builder).not_to be_full
|
2013-07-12 14:38:20 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-11-21 16:43:22 -05:00
|
|
|
context "category definition topics" do
|
2019-08-06 06:26:54 -04:00
|
|
|
fab!(:category) { Fabricate(:category_with_definition) }
|
2013-11-21 16:43:22 -05:00
|
|
|
|
|
|
|
it "doesn't add a category definition topic" do
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(category.topic_id).to be_present
|
2013-11-21 16:43:22 -05:00
|
|
|
builder.add_results(Topic)
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(builder.size).to eq(0)
|
|
|
|
expect(builder).not_to be_full
|
2013-11-21 16:43:22 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-07-12 14:38:20 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|