discourse/spec/jobs/delete_replies_spec.rb
Jarek Radosz 694b5f108b
DEV: Fix various rubocop lints (#24749)
These (21 + 3 from previous PRs) are soon to be enabled in rubocop-discourse:

Capybara/VisibilityMatcher
Lint/DeprecatedOpenSSLConstant
Lint/DisjunctiveAssignmentInConstructor
Lint/EmptyConditionalBody
Lint/EmptyEnsure
Lint/LiteralInInterpolation
Lint/NonLocalExitFromIterator
Lint/ParenthesesAsGroupedExpression
Lint/RedundantCopDisableDirective
Lint/RedundantRequireStatement
Lint/RedundantSafeNavigation
Lint/RedundantStringCoercion
Lint/RedundantWithIndex
Lint/RedundantWithObject
Lint/SafeNavigationChain
Lint/SafeNavigationConsistency
Lint/SelfAssignment
Lint/UnreachableCode
Lint/UselessMethodDefinition
Lint/Void

Previous PRs:
Lint/ShadowedArgument
Lint/DuplicateMethods
Lint/BooleanSymbol
RSpec/SpecFilePathSuffix
2023-12-06 23:25:00 +01:00

45 lines
1.1 KiB
Ruby

# frozen_string_literal: true
RSpec.describe Jobs::DeleteReplies do
fab!(:admin)
fab!(:topic)
fab!(:topic_timer) do
Fabricate(
:topic_timer,
status_type: TopicTimer.types[:delete_replies],
duration_minutes: 2880,
user: admin,
topic: topic,
execute_at: 2.days.from_now,
)
end
before { 3.times { create_post(topic: topic) } }
it "can delete replies of a topic" do
SiteSetting.skip_auto_delete_reply_likes = 0
freeze_time(2.days.from_now)
expect { described_class.new.execute(topic_timer_id: topic_timer.id) }.to change {
topic.posts.count
}.by(-2)
topic_timer.reload
expect(topic_timer.execute_at).to eq_time(2.day.from_now)
end
it "does not delete posts with likes over the threshold" do
SiteSetting.skip_auto_delete_reply_likes = 3
freeze_time(2.days.from_now)
topic.posts.last.update!(like_count: SiteSetting.skip_auto_delete_reply_likes + 1)
expect { described_class.new.execute(topic_timer_id: topic_timer.id) }.to change {
topic.posts.count
}.by(-1)
end
end