2021-09-14 18:59:25 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-27 22:27:38 -04:00
|
|
|
RSpec.describe ::Jobs::DashboardStats do
|
2021-09-14 18:59:25 -04:00
|
|
|
let(:group_message) do
|
|
|
|
GroupMessage.new(Group[:admins].name, :dashboard_problems, limit_once_per: 7.days.to_i)
|
2023-01-09 06:18:21 -05:00
|
|
|
end
|
2021-09-14 18:59:25 -04:00
|
|
|
|
|
|
|
def clear_recently_sent!
|
2022-09-13 11:43:24 -04:00
|
|
|
# We won't immediately create new PMs due to the limit_once_per option, reset the value for testing purposes.
|
2021-09-14 18:59:25 -04:00
|
|
|
Discourse.redis.del(group_message.sent_recently_key)
|
|
|
|
end
|
|
|
|
|
|
|
|
after { clear_recently_sent! }
|
|
|
|
|
|
|
|
it "creates group message when problems are persistent for 2 days" do
|
|
|
|
Discourse.redis.setex(AdminDashboardData.problems_started_key, 14.days.to_i, Time.zone.now.to_s)
|
|
|
|
expect { described_class.new.execute({}) }.not_to change { Topic.count }
|
|
|
|
|
|
|
|
Discourse.redis.setex(AdminDashboardData.problems_started_key, 14.days.to_i, 3.days.ago)
|
|
|
|
expect { described_class.new.execute({}) }.to change { Topic.count }.by(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "replaces old message" do
|
|
|
|
Discourse.redis.setex(AdminDashboardData.problems_started_key, 14.days.to_i, 3.days.ago)
|
|
|
|
expect { described_class.new.execute({}) }.to change { Topic.count }.by(1)
|
|
|
|
old_topic = Topic.last
|
|
|
|
clear_recently_sent!
|
|
|
|
|
|
|
|
new_topic = described_class.new.execute({}).topic
|
|
|
|
expect(old_topic.reload.deleted_at.present?).to eq(true)
|
|
|
|
expect(new_topic.reload.deleted_at).to be_nil
|
|
|
|
expect(new_topic.title).to eq(old_topic.title)
|
|
|
|
end
|
|
|
|
|
2022-09-13 11:43:24 -04:00
|
|
|
it "respects the sent_recently? check when deleting previous message" do
|
|
|
|
Discourse.redis.setex(AdminDashboardData.problems_started_key, 14.days.to_i, 3.days.ago)
|
|
|
|
expect { described_class.new.execute({}) }.to change { Topic.count }.by(1)
|
|
|
|
|
|
|
|
expect { described_class.new.execute({}) }.not_to change { Topic.count }
|
|
|
|
end
|
|
|
|
|
2021-09-14 18:59:25 -04:00
|
|
|
it "duplicates message if previous one has replies" do
|
|
|
|
Discourse.redis.setex(AdminDashboardData.problems_started_key, 14.days.to_i, 3.days.ago)
|
|
|
|
expect { described_class.new.execute({}) }.to change { Topic.count }.by(1)
|
|
|
|
clear_recently_sent!
|
|
|
|
|
|
|
|
_reply_1 = Fabricate(:post, topic: Topic.last)
|
|
|
|
expect { described_class.new.execute({}) }.to change { Topic.count }.by(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "duplicates message if previous was 3 months ago" do
|
|
|
|
freeze_time 3.months.ago do
|
|
|
|
Discourse.redis.setex(AdminDashboardData.problems_started_key, 14.days.to_i, 3.days.ago)
|
|
|
|
expect { described_class.new.execute({}) }.to change { Topic.count }.by(1)
|
|
|
|
clear_recently_sent!
|
|
|
|
end
|
|
|
|
|
|
|
|
expect { described_class.new.execute({}) }.to change { Topic.count }.by(1)
|
|
|
|
end
|
|
|
|
end
|