Improve testing of changeset comment rate limits
This commit is contained in:
parent
f32b4bc044
commit
75bde83a13
3 changed files with 81 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -133,8 +133,8 @@ module Api
|
|||
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)
|
||||
|
||||
|
@ -153,6 +153,71 @@ module Api
|
|||
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
|
||||
|
|
|
@ -6,5 +6,16 @@ FactoryBot.define do
|
|||
|
||||
# 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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue