2019-04-29 19:27:42 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-27 21:27:38 -05:00
|
|
|
RSpec.describe Jobs::FeatureTopicUsers do
|
2013-02-05 13:16:51 -06:00
|
|
|
it "raises an error without a topic_id" do
|
2014-12-31 08:55:03 -06:00
|
|
|
expect { Jobs::FeatureTopicUsers.new.execute({}) }.to raise_error(Discourse::InvalidParameters)
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2015-08-14 01:26:53 -05:00
|
|
|
it "raises no error with a missing topic_id" do
|
|
|
|
Jobs::FeatureTopicUsers.new.execute(topic_id: 123)
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2023-01-09 05:18:21 -06:00
|
|
|
context "with a topic" do
|
2013-07-22 00:06:53 -05:00
|
|
|
let!(:post) { create_post }
|
2013-02-05 13:16:51 -06:00
|
|
|
let(:topic) { post.topic }
|
2023-11-09 16:47:59 -06:00
|
|
|
fab!(:coding_horror)
|
|
|
|
fab!(:evil_trout)
|
2017-07-27 20:20:09 -05:00
|
|
|
let!(:second_post) { create_post(topic: topic, user: coding_horror) }
|
|
|
|
let!(:third_post) { create_post(topic: topic, user: evil_trout) }
|
2013-02-05 13:16:51 -06:00
|
|
|
|
|
|
|
it "won't feature the OP" do
|
|
|
|
Jobs::FeatureTopicUsers.new.execute(topic_id: topic.id)
|
2014-12-31 08:55:03 -06:00
|
|
|
expect(topic.reload.featured_user_ids.include?(topic.user_id)).to eq(false)
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
it "features the second poster" do
|
|
|
|
Jobs::FeatureTopicUsers.new.execute(topic_id: topic.id)
|
2014-12-31 08:55:03 -06:00
|
|
|
expect(topic.reload.featured_user_ids.include?(coding_horror.id)).to eq(true)
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
it "won't feature the last poster" do
|
|
|
|
Jobs::FeatureTopicUsers.new.execute(topic_id: topic.id)
|
2014-12-31 08:55:03 -06:00
|
|
|
expect(topic.reload.featured_user_ids.include?(evil_trout.id)).to eq(false)
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-27 11:14:14 -05:00
|
|
|
context "with participant count" do
|
2013-11-14 13:32:41 -06:00
|
|
|
let!(:post) { create_post }
|
|
|
|
let(:topic) { post.topic }
|
|
|
|
|
|
|
|
it "it works as expected" do
|
|
|
|
# It has 1 participant after creation
|
2014-12-31 08:55:03 -06:00
|
|
|
expect(topic.participant_count).to eq(1)
|
2013-11-14 13:32:41 -06:00
|
|
|
|
|
|
|
# It still has 1 after featuring
|
|
|
|
Jobs::FeatureTopicUsers.new.execute(topic_id: topic.id)
|
2014-12-31 08:55:03 -06:00
|
|
|
expect(topic.reload.participant_count).to eq(1)
|
2013-11-14 13:32:41 -06:00
|
|
|
|
|
|
|
# If the OP makes another post, it's still 1.
|
|
|
|
create_post(topic: topic, user: post.user)
|
|
|
|
Jobs::FeatureTopicUsers.new.execute(topic_id: topic.id)
|
2014-12-31 08:55:03 -06:00
|
|
|
expect(topic.reload.participant_count).to eq(1)
|
2013-11-14 13:32:41 -06:00
|
|
|
|
|
|
|
# If another users posts, it's 2.
|
|
|
|
create_post(topic: topic, user: Fabricate(:evil_trout))
|
|
|
|
Jobs::FeatureTopicUsers.new.execute(topic_id: topic.id)
|
2014-12-31 08:55:03 -06:00
|
|
|
expect(topic.reload.participant_count).to eq(2)
|
2013-11-14 13:32:41 -06:00
|
|
|
end
|
|
|
|
end
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|