X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/a1657f03a836fa5ade55e52083eff359b486e8f3..0a98d08885bff899ed9e8fe2008ba26b7b13469a:/test/controllers/api/changeset_comments_controller_test.rb diff --git a/test/controllers/api/changeset_comments_controller_test.rb b/test/controllers/api/changeset_comments_controller_test.rb index 624b8a358..e7d8ca209 100644 --- a/test/controllers/api/changeset_comments_controller_test.rb +++ b/test/controllers/api/changeset_comments_controller_test.rb @@ -133,15 +133,80 @@ 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) auth_header = basic_authorization_header user.email, "test" - assert_difference "ChangesetComment.count", Settings.min_changeset_comments_per_hour do - 1.upto(Settings.min_changeset_comments_per_hour) do |count| + assert_difference "ChangesetComment.count", Settings.initial_changeset_comments_per_hour do + 1.upto(Settings.initial_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 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 @@ -160,21 +225,21 @@ module Api comment = create(:changeset_comment) assert comment.visible - post changeset_comment_hide_path(:id => comment) + post changeset_comment_hide_path(comment) assert_response :unauthorized assert comment.reload.visible auth_header = basic_authorization_header create(:user).email, "test" # not a moderator - post changeset_comment_hide_path(:id => comment), :headers => auth_header + post changeset_comment_hide_path(comment), :headers => auth_header assert_response :forbidden assert comment.reload.visible auth_header = basic_authorization_header create(:moderator_user).email, "test" # bad comment id - post changeset_comment_hide_path(:id => 999111), :headers => auth_header + post changeset_comment_hide_path(999111), :headers => auth_header assert_response :not_found assert comment.reload.visible end @@ -187,7 +252,7 @@ module Api auth_header = basic_authorization_header create(:moderator_user).email, "test" - post changeset_comment_hide_path(:id => comment), :headers => auth_header + post changeset_comment_hide_path(comment), :headers => auth_header assert_response :success assert_not comment.reload.visible end @@ -199,21 +264,21 @@ module Api comment = create(:changeset_comment, :visible => false) assert_not comment.visible - post changeset_comment_unhide_path(:id => comment) + post changeset_comment_unhide_path(comment) assert_response :unauthorized assert_not comment.reload.visible auth_header = basic_authorization_header create(:user).email, "test" # not a moderator - post changeset_comment_unhide_path(:id => comment), :headers => auth_header + post changeset_comment_unhide_path(comment), :headers => auth_header assert_response :forbidden assert_not comment.reload.visible auth_header = basic_authorization_header create(:moderator_user).email, "test" # bad comment id - post changeset_comment_unhide_path(:id => 999111), :headers => auth_header + post changeset_comment_unhide_path(999111), :headers => auth_header assert_response :not_found assert_not comment.reload.visible end @@ -226,7 +291,7 @@ module Api auth_header = basic_authorization_header create(:moderator_user).email, "test" - post changeset_comment_unhide_path(:id => comment), :headers => auth_header + post changeset_comment_unhide_path(comment), :headers => auth_header assert_response :success assert comment.reload.visible end