mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:42:04 +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
42 lines
1.2 KiB
Ruby
42 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe Jobs::PurgeExpiredIgnoredUsers do
|
|
subject { Jobs::PurgeExpiredIgnoredUsers.new.execute({}) }
|
|
|
|
context "with no ignored users" do
|
|
it "does nothing" do
|
|
expect { subject }.to_not change { IgnoredUser.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: tarek, ignored_user: john)
|
|
end
|
|
|
|
context "when no expired ignored users" do
|
|
it "does nothing" do
|
|
expect { subject }.to_not change { IgnoredUser.count }
|
|
end
|
|
end
|
|
|
|
context "when there are expired ignored users by expiring_at" do
|
|
fab!(:fred) { Fabricate(:user, username: "fred") }
|
|
|
|
it "purges expired ignored users" do
|
|
Fabricate(:ignored_user, user: tarek, ignored_user: fred, expiring_at: 1.month.from_now)
|
|
|
|
freeze_time(2.months.from_now) do
|
|
subject
|
|
expect(IgnoredUser.find_by(ignored_user: fred)).to be_nil
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|