Skip to content

Commit

Permalink
Improve testing of changeset comment rate limits
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhughes committed Aug 30, 2023
1 parent f32b4bc commit 75bde83
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 2 deletions.
3 changes: 3 additions & 0 deletions config/settings/test.yml
Expand Up @@ -19,3 +19,6 @@ avatar_storage: "test"
trace_file_storage: "test"
trace_image_storage: "test"
trace_icon_storage: "test"
# Lower some rate limits for testing
max_changeset_comments_per_hour: 30
moderator_changeset_comments_per_hour: 60
69 changes: 67 additions & 2 deletions test/controllers/api/changeset_comments_controller_test.rb
Expand Up @@ -133,8 +133,8 @@ def test_create_comment_fail
end

##
# create comment rate limit
def test_create_comment_rate_limit
# create comment rate limit for new users
def test_create_comment_new_user_rate_limit
changeset = create(:changeset, :closed)
user = create(:user)

Expand All @@ -153,6 +153,71 @@ def test_create_comment_rate_limit
end
end

##
# create comment rate limit for experienced users
def test_create_comment_experienced_user_rate_limit
changeset = create(:changeset, :closed)
user = create(:user)
create_list(:changeset_comment, 200, :author_id => user.id, :created_at => Time.now.utc - 1.day)

auth_header = basic_authorization_header user.email, "test"

assert_difference "ChangesetComment.count", Settings.max_changeset_comments_per_hour do
1.upto(Settings.max_changeset_comments_per_hour) do |count|
post changeset_comment_path(:id => changeset, :text => "Comment #{count}"), :headers => auth_header
assert_response :success
end
end

assert_no_difference "ChangesetComment.count" do
post changeset_comment_path(:id => changeset, :text => "One comment too many"), :headers => auth_header
assert_response :too_many_requests
end
end

##
# create comment rate limit for reported users
def test_create_comment_reported_user_rate_limit
changeset = create(:changeset, :closed)
user = create(:user)
create(:issue_with_reports, :reportable => user, :reported_user => user)

auth_header = basic_authorization_header user.email, "test"

assert_difference "ChangesetComment.count", Settings.initial_changeset_comments_per_hour / 2 do
1.upto(Settings.initial_changeset_comments_per_hour / 2) do |count|
post changeset_comment_path(:id => changeset, :text => "Comment #{count}"), :headers => auth_header
assert_response :success
end
end

assert_no_difference "ChangesetComment.count" do
post changeset_comment_path(:id => changeset, :text => "One comment too many"), :headers => auth_header
assert_response :too_many_requests
end
end

##
# create comment rate limit for moderator users
def test_create_comment_moderator_user_rate_limit
changeset = create(:changeset, :closed)
user = create(:moderator_user)

auth_header = basic_authorization_header user.email, "test"

assert_difference "ChangesetComment.count", Settings.moderator_changeset_comments_per_hour do
1.upto(Settings.moderator_changeset_comments_per_hour) do |count|
post changeset_comment_path(:id => changeset, :text => "Comment #{count}"), :headers => auth_header
assert_response :success
end
end

assert_no_difference "ChangesetComment.count" do
post changeset_comment_path(:id => changeset, :text => "One comment too many"), :headers => auth_header
assert_response :too_many_requests
end
end

##
# test hide comment fail
def test_destroy_comment_fail
Expand Down
11 changes: 11 additions & 0 deletions test/factories/issues.rb
Expand Up @@ -6,5 +6,16 @@

# Default to assigning to an administrator
assigned_role { "administrator" }

# Optionally create some reports for this issue
factory :issue_with_reports do
transient do
reports_count { 1 }
end

after(:create) do |issue, evaluator|
create_list(:report, evaluator.reports_count, :issue => issue)
end
end
end
end

0 comments on commit 75bde83

Please sign in to comment.