mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:07:53 +08:00
493d437e79
* Remove outdated option
04078317ba
* Use the non-globally exposed RSpec syntax
https://github.com/rspec/rspec-core/pull/2803
* Use the non-globally exposed RSpec syntax, cont
https://github.com/rspec/rspec-core/pull/2803
* Comply to strict predicate matchers
See:
- https://github.com/rspec/rspec-expectations/pull/1195
- https://github.com/rspec/rspec-expectations/pull/1196
- https://github.com/rspec/rspec-expectations/pull/1277
75 lines
2.1 KiB
Ruby
75 lines
2.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe Jobs::IgnoredUsersSummary do
|
|
before do
|
|
SiteSetting.ignored_users_count_message_threshold = 1
|
|
SiteSetting.ignored_users_message_gap_days = 365
|
|
end
|
|
|
|
subject { Jobs::IgnoredUsersSummary.new.execute({}) }
|
|
|
|
context "with no ignored users" do
|
|
it "does nothing" do
|
|
subject
|
|
expect { subject }.to_not change { Post.count }
|
|
end
|
|
end
|
|
|
|
context "when some ignored users exist" do
|
|
fab!(:tarek) { Fabricate(:user, username: "tarek") }
|
|
fab!(:matt) { Fabricate(:user, username: "matt") }
|
|
fab!(:john) { Fabricate(:user, username: "john") }
|
|
|
|
before do
|
|
Fabricate(:ignored_user, user: tarek, ignored_user: matt)
|
|
Fabricate(:ignored_user, user_id: tarek.id, ignored_user_id: john.id)
|
|
end
|
|
|
|
context "when no system message exists for the ignored users" do
|
|
context "when threshold is not hit" do
|
|
before do
|
|
SiteSetting.ignored_users_count_message_threshold = 5
|
|
end
|
|
|
|
it "does nothing" do
|
|
subject
|
|
expect { subject }.to_not change { Post.count }
|
|
end
|
|
end
|
|
|
|
context "when threshold is hit" do
|
|
it "creates a system message" do
|
|
subject
|
|
posts = Post.joins(:topic).where(topics: {
|
|
archetype: Archetype.private_message,
|
|
subtype: TopicSubtype.system_message
|
|
})
|
|
expect(posts.count).to eq(2)
|
|
expect(posts.find { |post| post.raw.include?(matt.username) }).to be_present
|
|
expect(posts.find { |post| post.raw.include?(john.username) }).to be_present
|
|
end
|
|
end
|
|
end
|
|
|
|
context "when a system message already exists for the ignored users" do
|
|
context "when threshold is not hit" do
|
|
before do
|
|
SiteSetting.ignored_users_count_message_threshold = 5
|
|
end
|
|
|
|
it "does nothing" do
|
|
subject
|
|
expect { subject }.to_not change { Post.count }
|
|
end
|
|
end
|
|
|
|
context "when threshold is hit" do
|
|
it "does nothing" do
|
|
subject
|
|
expect { subject }.to_not change { Post.count }
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|