2013-09-12 17:46:43 -04:00
|
|
|
# encoding: utf-8
|
2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-10-11 05:41:23 -04:00
|
|
|
require 'rails_helper'
|
2013-09-12 17:46:43 -04:00
|
|
|
require 'composer_messages_finder'
|
|
|
|
|
|
|
|
describe ComposerMessagesFinder do
|
|
|
|
|
|
|
|
context "delegates work" do
|
|
|
|
let(:user) { Fabricate.build(:user) }
|
2016-06-06 16:58:35 -04:00
|
|
|
let(:finder) { ComposerMessagesFinder.new(user, composer_action: 'createTopic') }
|
2013-09-12 17:46:43 -04:00
|
|
|
|
|
|
|
it "calls all the message finders" do
|
|
|
|
finder.expects(:check_education_message).once
|
2013-12-19 13:45:55 -05:00
|
|
|
finder.expects(:check_new_user_many_replies).once
|
2013-09-12 17:46:43 -04:00
|
|
|
finder.expects(:check_avatar_notification).once
|
2013-09-13 13:49:34 -04:00
|
|
|
finder.expects(:check_sequential_replies).once
|
2013-09-17 14:38:39 -04:00
|
|
|
finder.expects(:check_dominating_topic).once
|
2014-03-12 10:44:08 -04:00
|
|
|
finder.expects(:check_reviving_old_topic).once
|
2017-02-03 16:59:05 -05:00
|
|
|
finder.expects(:check_get_a_room).once
|
2013-09-12 17:46:43 -04:00
|
|
|
finder.find
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
context '.check_education_message' do
|
|
|
|
let(:user) { Fabricate.build(:user) }
|
|
|
|
|
|
|
|
context 'creating topic' do
|
2016-06-06 16:58:35 -04:00
|
|
|
let(:finder) { ComposerMessagesFinder.new(user, composer_action: 'createTopic') }
|
2013-09-12 17:46:43 -04:00
|
|
|
|
|
|
|
before do
|
2017-07-07 02:09:14 -04:00
|
|
|
SiteSetting.educate_until_posts = 10
|
2013-09-12 17:46:43 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns a message for a user who has not posted any topics" do
|
2013-09-17 12:11:17 -04:00
|
|
|
user.expects(:created_topic_count).returns(9)
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_education_message).to be_present
|
2013-09-12 17:46:43 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns no message when the user has posted enough topics" do
|
2013-09-17 12:11:17 -04:00
|
|
|
user.expects(:created_topic_count).returns(10)
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_education_message).to be_blank
|
2013-09-12 17:46:43 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-04 05:06:53 -04:00
|
|
|
context 'private message' do
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:topic) { Fabricate(:private_message_topic) }
|
2016-11-04 05:06:53 -04:00
|
|
|
|
|
|
|
context 'starting a new private message' do
|
|
|
|
let(:finder) { ComposerMessagesFinder.new(user, composer_action: 'createTopic', topic_id: topic.id) }
|
|
|
|
|
|
|
|
it 'should return an empty string' do
|
2016-11-08 22:31:53 -05:00
|
|
|
expect(finder.check_education_message).to eq(nil)
|
2016-11-04 05:06:53 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'replying to a private message' do
|
|
|
|
let(:finder) { ComposerMessagesFinder.new(user, composer_action: 'reply', topic_id: topic.id) }
|
|
|
|
|
|
|
|
it 'should return an empty string' do
|
2016-11-08 22:31:53 -05:00
|
|
|
expect(finder.check_education_message).to eq(nil)
|
2016-11-04 05:06:53 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-09-12 17:46:43 -04:00
|
|
|
context 'creating reply' do
|
2016-06-06 16:58:35 -04:00
|
|
|
let(:finder) { ComposerMessagesFinder.new(user, composer_action: 'reply') }
|
2013-09-12 17:46:43 -04:00
|
|
|
|
|
|
|
before do
|
2017-07-07 02:09:14 -04:00
|
|
|
SiteSetting.educate_until_posts = 10
|
2013-09-12 17:46:43 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns a message for a user who has not posted any topics" do
|
2013-09-17 12:11:17 -04:00
|
|
|
user.expects(:post_count).returns(9)
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_education_message).to be_present
|
2013-09-12 17:46:43 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns no message when the user has posted enough topics" do
|
2013-09-17 12:11:17 -04:00
|
|
|
user.expects(:post_count).returns(10)
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_education_message).to be_blank
|
2013-09-12 17:46:43 -04:00
|
|
|
end
|
|
|
|
end
|
2013-12-19 13:45:55 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context '.check_new_user_many_replies' do
|
|
|
|
let(:user) { Fabricate.build(:user) }
|
|
|
|
|
|
|
|
context 'replying' do
|
2016-06-06 16:58:35 -04:00
|
|
|
let(:finder) { ComposerMessagesFinder.new(user, composer_action: 'reply') }
|
2013-12-19 13:45:55 -05:00
|
|
|
|
|
|
|
it "has no message when `posted_too_much_in_topic?` is false" do
|
|
|
|
user.expects(:posted_too_much_in_topic?).returns(false)
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_new_user_many_replies).to be_blank
|
2013-12-19 13:45:55 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "has a message when a user has posted too much" do
|
|
|
|
user.expects(:posted_too_much_in_topic?).returns(true)
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_new_user_many_replies).to be_present
|
2013-12-19 13:45:55 -05:00
|
|
|
end
|
|
|
|
end
|
2013-09-12 17:46:43 -04:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
context '.check_avatar_notification' do
|
2016-06-06 16:58:35 -04:00
|
|
|
let(:finder) { ComposerMessagesFinder.new(user, composer_action: 'createTopic') }
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:user) { Fabricate(:user) }
|
2013-09-12 17:46:43 -04:00
|
|
|
|
2015-01-02 06:37:17 -05:00
|
|
|
context "success" do
|
|
|
|
let!(:message) { finder.check_avatar_notification }
|
2013-09-12 17:46:43 -04:00
|
|
|
|
2015-01-02 06:37:17 -05:00
|
|
|
it "returns an avatar upgrade message" do
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(message).to be_present
|
2013-09-12 17:46:43 -04:00
|
|
|
end
|
|
|
|
|
2015-01-02 06:37:17 -05:00
|
|
|
it "creates a notified_about_avatar log" do
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(UserHistory.exists_for_user?(user, :notified_about_avatar)).to eq(true)
|
2013-09-12 17:46:43 -04:00
|
|
|
end
|
2015-01-02 06:37:17 -05:00
|
|
|
end
|
2013-09-12 17:46:43 -04:00
|
|
|
|
2015-01-02 06:37:17 -05:00
|
|
|
it "doesn't return notifications for new users" do
|
|
|
|
user.trust_level = TrustLevel[0]
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_avatar_notification).to be_blank
|
2015-01-02 06:37:17 -05:00
|
|
|
end
|
2013-09-12 17:46:43 -04:00
|
|
|
|
2015-01-02 06:37:17 -05:00
|
|
|
it "doesn't return notifications for users who have custom avatars" do
|
|
|
|
user.uploaded_avatar_id = 1
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_avatar_notification).to be_blank
|
2015-01-02 06:37:17 -05:00
|
|
|
end
|
2013-09-12 17:46:43 -04:00
|
|
|
|
2015-01-02 06:37:17 -05:00
|
|
|
it "doesn't notify users who have been notified already" do
|
|
|
|
UserHistory.create!(action: UserHistory.actions[:notified_about_avatar], target_user_id: user.id)
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_avatar_notification).to be_blank
|
2013-09-12 17:46:43 -04:00
|
|
|
end
|
2015-12-14 12:02:40 -05:00
|
|
|
|
|
|
|
it "doesn't notify users if 'disable_avatar_education_message' setting is enabled" do
|
|
|
|
SiteSetting.disable_avatar_education_message = true
|
|
|
|
expect(finder.check_avatar_notification).to be_blank
|
|
|
|
end
|
|
|
|
|
2021-02-08 05:04:33 -05:00
|
|
|
it "doesn't notify users if 'discourse_connect_overrides_avatar' setting is enabled" do
|
|
|
|
SiteSetting.discourse_connect_overrides_avatar = true
|
2015-12-14 12:02:40 -05:00
|
|
|
expect(finder.check_avatar_notification).to be_blank
|
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't notify users if 'allow_uploaded_avatars' setting is disabled" do
|
|
|
|
SiteSetting.allow_uploaded_avatars = false
|
|
|
|
expect(finder.check_avatar_notification).to be_blank
|
|
|
|
end
|
2013-09-13 13:49:34 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context '.check_sequential_replies' do
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:user) { Fabricate(:user) }
|
|
|
|
fab!(:topic) { Fabricate(:topic) }
|
2013-09-13 13:49:34 -04:00
|
|
|
|
|
|
|
before do
|
2017-07-07 02:09:14 -04:00
|
|
|
SiteSetting.educate_until_posts = 10
|
2013-09-14 00:32:18 -04:00
|
|
|
user.stubs(:post_count).returns(11)
|
2013-09-13 13:49:34 -04:00
|
|
|
|
2020-03-10 17:13:17 -04:00
|
|
|
freeze_time(5.minutes.ago) do
|
|
|
|
Fabricate(:post, topic: topic, user: user)
|
|
|
|
Fabricate(:post, topic: topic, user: user)
|
|
|
|
Fabricate(:post, topic: topic, user: user, post_type: Post.types[:small_action])
|
|
|
|
end
|
2013-09-13 13:49:34 -04:00
|
|
|
|
2017-07-07 02:09:14 -04:00
|
|
|
SiteSetting.sequential_replies_threshold = 2
|
2013-09-13 13:49:34 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "does not give a message for new topics" do
|
2016-06-06 16:58:35 -04:00
|
|
|
finder = ComposerMessagesFinder.new(user, composer_action: 'createTopic')
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_sequential_replies).to be_blank
|
2013-09-13 13:49:34 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "does not give a message without a topic id" do
|
2016-06-06 16:58:35 -04:00
|
|
|
expect(ComposerMessagesFinder.new(user, composer_action: 'reply').check_sequential_replies).to be_blank
|
2013-09-13 13:49:34 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context "reply" do
|
2016-06-06 16:58:35 -04:00
|
|
|
let(:finder) { ComposerMessagesFinder.new(user, composer_action: 'reply', topic_id: topic.id) }
|
2013-09-13 13:49:34 -04:00
|
|
|
|
|
|
|
it "does not give a message to users who are still in the 'education' phase" do
|
2013-09-17 12:11:17 -04:00
|
|
|
user.stubs(:post_count).returns(9)
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_sequential_replies).to be_blank
|
2013-09-13 13:49:34 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't notify a user it has already notified about sequential replies" do
|
2013-09-17 14:38:39 -04:00
|
|
|
UserHistory.create!(action: UserHistory.actions[:notified_about_sequential_replies], target_user_id: user.id, topic_id: topic.id)
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_sequential_replies).to be_blank
|
2013-09-13 13:49:34 -04:00
|
|
|
end
|
|
|
|
|
2013-09-17 14:38:39 -04:00
|
|
|
it "will notify you if it hasn't in the current topic" do
|
|
|
|
UserHistory.create!(action: UserHistory.actions[:notified_about_sequential_replies], target_user_id: user.id, topic_id: topic.id + 1)
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_sequential_replies).to be_present
|
2013-09-17 14:38:39 -04:00
|
|
|
end
|
|
|
|
|
2013-09-13 13:49:34 -04:00
|
|
|
it "doesn't notify a user who has less than the `sequential_replies_threshold` threshold posts" do
|
2017-07-07 02:09:14 -04:00
|
|
|
SiteSetting.sequential_replies_threshold = 5
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_sequential_replies).to be_blank
|
2013-09-13 13:49:34 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't notify a user if another user posted" do
|
|
|
|
Fabricate(:post, topic: topic, user: Fabricate(:user))
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_sequential_replies).to be_blank
|
2013-09-13 13:49:34 -04:00
|
|
|
end
|
|
|
|
|
2017-02-03 16:59:05 -05:00
|
|
|
it "doesn't notify in a message" do
|
2015-11-27 13:29:44 -05:00
|
|
|
Topic.any_instance.expects(:private_message?).returns(true)
|
|
|
|
expect(finder.check_sequential_replies).to be_blank
|
|
|
|
end
|
|
|
|
|
2013-09-13 13:49:34 -04:00
|
|
|
context "success" do
|
|
|
|
let!(:message) { finder.check_sequential_replies }
|
|
|
|
|
|
|
|
it "returns a message" do
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(message).to be_present
|
2013-09-13 13:49:34 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "creates a notified_about_sequential_replies log" do
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(UserHistory.exists_for_user?(user, :notified_about_sequential_replies)).to eq(true)
|
2013-09-13 13:49:34 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
2013-09-12 17:46:43 -04:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2013-09-17 14:38:39 -04:00
|
|
|
context '.check_dominating_topic' do
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:user) { Fabricate(:user) }
|
|
|
|
fab!(:topic) { Fabricate(:topic) }
|
2013-09-17 14:38:39 -04:00
|
|
|
|
|
|
|
before do
|
2017-07-07 02:09:14 -04:00
|
|
|
SiteSetting.educate_until_posts = 10
|
2013-09-17 14:38:39 -04:00
|
|
|
user.stubs(:post_count).returns(11)
|
|
|
|
|
2017-07-07 02:09:14 -04:00
|
|
|
SiteSetting.summary_posts_required = 1
|
2013-09-17 14:38:39 -04:00
|
|
|
|
|
|
|
Fabricate(:post, topic: topic, user: user)
|
|
|
|
Fabricate(:post, topic: topic, user: user)
|
|
|
|
Fabricate(:post, topic: topic, user: Fabricate(:user))
|
|
|
|
|
2017-07-07 02:09:14 -04:00
|
|
|
SiteSetting.sequential_replies_threshold = 2
|
2013-09-17 14:38:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "does not give a message for new topics" do
|
2016-06-06 16:58:35 -04:00
|
|
|
finder = ComposerMessagesFinder.new(user, composer_action: 'createTopic')
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_dominating_topic).to be_blank
|
2013-09-17 14:38:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "does not give a message without a topic id" do
|
2016-06-06 16:58:35 -04:00
|
|
|
expect(ComposerMessagesFinder.new(user, composer_action: 'reply').check_dominating_topic).to be_blank
|
2013-09-17 14:38:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context "reply" do
|
2016-06-06 16:58:35 -04:00
|
|
|
let(:finder) { ComposerMessagesFinder.new(user, composer_action: 'reply', topic_id: topic.id) }
|
2013-09-17 14:38:39 -04:00
|
|
|
|
|
|
|
it "does not give a message to users who are still in the 'education' phase" do
|
|
|
|
user.stubs(:post_count).returns(9)
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_dominating_topic).to be_blank
|
2013-09-17 14:38:39 -04:00
|
|
|
end
|
|
|
|
|
2013-11-18 12:48:26 -05:00
|
|
|
it "does not notify if the `summary_posts_required` has not been reached" do
|
2017-07-07 02:09:14 -04:00
|
|
|
SiteSetting.summary_posts_required = 100
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_dominating_topic).to be_blank
|
2013-09-17 14:38:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't notify a user it has already notified in this topic" do
|
2014-02-06 19:19:45 -05:00
|
|
|
UserHistory.create!(action: UserHistory.actions[:notified_about_dominating_topic], topic_id: topic.id, target_user_id: user.id)
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_dominating_topic).to be_blank
|
2013-09-17 14:38:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "notifies a user if the topic is different" do
|
2014-02-06 19:19:45 -05:00
|
|
|
UserHistory.create!(action: UserHistory.actions[:notified_about_dominating_topic], topic_id: topic.id + 1, target_user_id: user.id)
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_dominating_topic).to be_present
|
2013-09-17 14:38:39 -04:00
|
|
|
end
|
|
|
|
|
2013-11-18 12:48:26 -05:00
|
|
|
it "doesn't notify a user if the topic has less than `summary_posts_required` posts" do
|
2017-07-07 02:09:14 -04:00
|
|
|
SiteSetting.summary_posts_required = 5
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_dominating_topic).to be_blank
|
2013-09-17 14:38:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't notify a user if they've posted less than the percentage" do
|
2017-07-07 02:09:14 -04:00
|
|
|
SiteSetting.dominating_topic_minimum_percent = 100
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_dominating_topic).to be_blank
|
2013-09-17 14:38:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't notify you if it's your own topic" do
|
|
|
|
topic.update_column(:user_id, user.id)
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_dominating_topic).to be_blank
|
2013-09-17 14:38:39 -04:00
|
|
|
end
|
|
|
|
|
2014-02-06 19:19:45 -05:00
|
|
|
it "doesn't notify you in a private message" do
|
2014-09-11 03:39:20 -04:00
|
|
|
topic.update_columns(category_id: nil, archetype: Archetype.private_message)
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(finder.check_dominating_topic).to be_blank
|
2014-02-06 19:19:45 -05:00
|
|
|
end
|
|
|
|
|
2013-09-17 14:38:39 -04:00
|
|
|
context "success" do
|
|
|
|
let!(:message) { finder.check_dominating_topic }
|
|
|
|
|
|
|
|
it "returns a message" do
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(message).to be_present
|
2013-09-17 14:38:39 -04:00
|
|
|
end
|
|
|
|
|
2014-02-06 19:19:45 -05:00
|
|
|
it "creates a notified_about_dominating_topic log" do
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(UserHistory.exists_for_user?(user, :notified_about_dominating_topic)).to eq(true)
|
2013-09-17 14:38:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2017-02-03 16:59:05 -05:00
|
|
|
context '.check_get_a_room' do
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:user) { Fabricate(:user) }
|
|
|
|
fab!(:other_user) { Fabricate(:user) }
|
|
|
|
fab!(:third_user) { Fabricate(:user) }
|
|
|
|
fab!(:topic) { Fabricate(:topic, user: other_user) }
|
|
|
|
fab!(:op) { Fabricate(:post, topic_id: topic.id, user: other_user) }
|
2017-02-03 16:59:05 -05:00
|
|
|
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:other_user_reply) do
|
2017-02-03 16:59:05 -05:00
|
|
|
Fabricate(:post, topic: topic, user: third_user, reply_to_user_id: op.user_id)
|
2017-02-08 12:24:02 -05:00
|
|
|
end
|
2017-02-03 16:59:05 -05:00
|
|
|
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:first_reply) do
|
2017-02-03 16:59:05 -05:00
|
|
|
Fabricate(:post, topic: topic, user: user, reply_to_user_id: op.user_id)
|
2017-02-08 12:24:02 -05:00
|
|
|
end
|
2017-02-03 16:59:05 -05:00
|
|
|
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:second_reply) do
|
2017-02-03 16:59:05 -05:00
|
|
|
Fabricate(:post, topic: topic, user: user, reply_to_user_id: op.user_id)
|
2017-02-08 12:24:02 -05:00
|
|
|
end
|
2017-02-03 16:59:05 -05:00
|
|
|
|
|
|
|
before do
|
|
|
|
SiteSetting.educate_until_posts = 10
|
|
|
|
user.stubs(:post_count).returns(11)
|
|
|
|
SiteSetting.get_a_room_threshold = 2
|
|
|
|
end
|
|
|
|
|
|
|
|
it "does not show the message for new topics" do
|
|
|
|
finder = ComposerMessagesFinder.new(user, composer_action: 'createTopic')
|
2017-02-28 16:47:16 -05:00
|
|
|
expect(finder.check_get_a_room(min_users_posted: 2)).to be_blank
|
2017-02-03 16:59:05 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "does not give a message without a topic id" do
|
2017-02-28 16:47:16 -05:00
|
|
|
expect(ComposerMessagesFinder.new(user, composer_action: 'reply').check_get_a_room(min_users_posted: 2)).to be_blank
|
2017-02-03 16:59:05 -05:00
|
|
|
end
|
|
|
|
|
2021-04-14 13:34:13 -04:00
|
|
|
it "does not give a message if the topic's category is read_restricted" do
|
|
|
|
topic.category.update(read_restricted: true)
|
|
|
|
finder = ComposerMessagesFinder.new(user, composer_action: 'reply', topic_id: topic.id, post_id: op.id)
|
|
|
|
finder.check_get_a_room(min_users_posted: 2)
|
|
|
|
expect(UserHistory.exists_for_user?(user, :notified_about_get_a_room)).to eq(false)
|
|
|
|
end
|
|
|
|
|
2017-02-03 16:59:05 -05:00
|
|
|
context "reply" do
|
|
|
|
let(:finder) { ComposerMessagesFinder.new(user, composer_action: 'reply', topic_id: topic.id, post_id: op.id) }
|
|
|
|
|
|
|
|
it "does not give a message to users who are still in the 'education' phase" do
|
|
|
|
user.stubs(:post_count).returns(9)
|
2017-02-28 16:47:16 -05:00
|
|
|
expect(finder.check_get_a_room(min_users_posted: 2)).to be_blank
|
2017-02-03 16:59:05 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't notify a user it has already notified about sequential replies" do
|
|
|
|
UserHistory.create!(
|
|
|
|
action: UserHistory.actions[:notified_about_get_a_room],
|
|
|
|
target_user_id: user.id,
|
|
|
|
topic_id: topic.id
|
|
|
|
)
|
2017-02-28 16:47:16 -05:00
|
|
|
expect(finder.check_get_a_room(min_users_posted: 2)).to be_blank
|
2017-02-03 16:59:05 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "will notify you if it hasn't in the current topic" do
|
|
|
|
UserHistory.create!(
|
|
|
|
action: UserHistory.actions[:notified_about_get_a_room],
|
|
|
|
target_user_id: user.id,
|
|
|
|
topic_id: topic.id + 1
|
|
|
|
)
|
2017-02-28 16:47:16 -05:00
|
|
|
expect(finder.check_get_a_room(min_users_posted: 2)).to be_present
|
2017-02-03 16:59:05 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "won't notify you if you haven't had enough posts" do
|
|
|
|
SiteSetting.get_a_room_threshold = 10
|
2017-02-28 16:47:16 -05:00
|
|
|
expect(finder.check_get_a_room(min_users_posted: 2)).to be_blank
|
2017-02-03 16:59:05 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't notify you if the posts aren't all to the same person" do
|
|
|
|
first_reply.update_column(:reply_to_user_id, user.id)
|
2017-02-28 16:47:16 -05:00
|
|
|
expect(finder.check_get_a_room(min_users_posted: 2)).to be_blank
|
2017-02-03 16:59:05 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't notify you of posts to yourself" do
|
|
|
|
first_reply.update_column(:reply_to_user_id, user.id)
|
|
|
|
second_reply.update_column(:reply_to_user_id, user.id)
|
2017-02-28 16:47:16 -05:00
|
|
|
expect(finder.check_get_a_room(min_users_posted: 2)).to be_blank
|
2017-02-03 16:59:05 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't notify in a message" do
|
2017-02-08 12:24:02 -05:00
|
|
|
topic.update_columns(category_id: nil, archetype: 'private_message')
|
2017-02-28 16:47:16 -05:00
|
|
|
expect(finder.check_get_a_room(min_users_posted: 2)).to be_blank
|
2017-02-03 16:59:05 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't notify when replying to a different user" do
|
|
|
|
other_finder = ComposerMessagesFinder.new(
|
|
|
|
user,
|
|
|
|
composer_action: 'reply',
|
|
|
|
topic_id: topic.id,
|
|
|
|
post_id: other_user_reply.id
|
|
|
|
)
|
|
|
|
|
2017-02-28 16:47:16 -05:00
|
|
|
expect(other_finder.check_get_a_room(min_users_posted: 2)).to be_blank
|
2017-02-03 16:59:05 -05:00
|
|
|
end
|
|
|
|
|
2017-02-28 16:47:16 -05:00
|
|
|
context "with a default min_users_posted value" do
|
2017-02-03 16:59:05 -05:00
|
|
|
let!(:message) { finder.check_get_a_room }
|
|
|
|
|
2017-02-28 16:47:16 -05:00
|
|
|
it "works as expected" do
|
|
|
|
expect(message).to be_blank
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "success" do
|
|
|
|
let!(:message) { finder.check_get_a_room(min_users_posted: 2) }
|
|
|
|
|
2017-02-03 16:59:05 -05:00
|
|
|
it "works as expected" do
|
|
|
|
expect(message).to be_present
|
2017-02-08 12:24:02 -05:00
|
|
|
expect(message[:id]).to eq('get_a_room')
|
|
|
|
expect(message[:wait_for_typing]).to eq(true)
|
|
|
|
expect(message[:templateName]).to eq('education')
|
|
|
|
|
2017-02-03 16:59:05 -05:00
|
|
|
expect(UserHistory.exists_for_user?(user, :notified_about_get_a_room)).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2014-03-12 10:44:08 -04:00
|
|
|
context '.check_reviving_old_topic' do
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:user) { Fabricate(:user) }
|
|
|
|
fab!(:topic) { Fabricate(:topic) }
|
2014-03-12 10:44:08 -04:00
|
|
|
|
|
|
|
it "does not give a message without a topic id" do
|
2016-06-06 16:58:35 -04:00
|
|
|
expect(described_class.new(user, composer_action: 'createTopic').check_reviving_old_topic).to be_blank
|
|
|
|
expect(described_class.new(user, composer_action: 'reply').check_reviving_old_topic).to be_blank
|
2014-03-12 10:44:08 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context "a reply" do
|
|
|
|
context "warn_reviving_old_topic_age is 180 days" do
|
|
|
|
before do
|
2017-07-07 02:09:14 -04:00
|
|
|
SiteSetting.warn_reviving_old_topic_age = 180
|
2014-03-12 10:44:08 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "does not notify if last post is recent" do
|
|
|
|
topic = Fabricate(:topic, last_posted_at: 1.hour.ago)
|
2016-06-06 16:58:35 -04:00
|
|
|
expect(described_class.new(user, composer_action: 'reply', topic_id: topic.id).check_reviving_old_topic).to be_blank
|
2014-03-12 10:44:08 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "notifies if last post is old" do
|
|
|
|
topic = Fabricate(:topic, last_posted_at: 181.days.ago)
|
2018-01-25 13:36:53 -05:00
|
|
|
message = described_class.new(user, composer_action: 'reply', topic_id: topic.id).check_reviving_old_topic
|
|
|
|
expect(message).not_to be_blank
|
|
|
|
expect(message[:body]).to match(/6 months ago/)
|
2014-03-12 10:44:08 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "warn_reviving_old_topic_age is 0" do
|
|
|
|
before do
|
2017-07-07 02:09:14 -04:00
|
|
|
SiteSetting.warn_reviving_old_topic_age = 0
|
2014-03-12 10:44:08 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "does not notify if last post is new" do
|
|
|
|
topic = Fabricate(:topic, last_posted_at: 1.hour.ago)
|
2016-06-06 16:58:35 -04:00
|
|
|
expect(described_class.new(user, composer_action: 'reply', topic_id: topic.id).check_reviving_old_topic).to be_blank
|
2014-03-12 10:44:08 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "does not notify if last post is old" do
|
|
|
|
topic = Fabricate(:topic, last_posted_at: 365.days.ago)
|
2016-06-06 16:58:35 -04:00
|
|
|
expect(described_class.new(user, composer_action: 'reply', topic_id: topic.id).check_reviving_old_topic).to be_blank
|
2014-03-12 10:44:08 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-10-03 20:21:53 -04:00
|
|
|
context 'when editing a post' do
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:user) { Fabricate(:user) }
|
|
|
|
fab!(:topic) { Fabricate(:post).topic }
|
2018-10-03 20:21:53 -04:00
|
|
|
|
|
|
|
let!(:post) do
|
2018-10-04 01:21:37 -04:00
|
|
|
PostCreator.create!(
|
2018-10-03 20:21:53 -04:00
|
|
|
user,
|
|
|
|
topic_id: topic.id,
|
|
|
|
post_number: 1,
|
|
|
|
raw: 'omg my first post'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:edit_post_finder) do
|
|
|
|
ComposerMessagesFinder.new(user, composer_action: 'edit')
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
SiteSetting.disable_avatar_education_message = true
|
|
|
|
SiteSetting.educate_until_posts = 2
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns nothing even if it normally would" do
|
|
|
|
expect(edit_post_finder.find).to eq(nil)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-09-12 17:46:43 -04:00
|
|
|
end
|