rack-attack/spec/acceptance/extending_request_object_spec.rb
Santiago Bartesaghi e9f472786a
Update rubocop (#629)
* Upgrade rubocop gem

* Fix obsolete parameter

* Fix Lint/MissingSuper

* Fix Lint/ConstantDefinitionInBlock

* Fix Layout/EmptyLineBetweenDefs

* Add rubocop-minitest

* Add rubocop-rake

* Upgrade rubocop-performance
2023-10-16 20:04:35 -03:00

32 lines
734 B
Ruby

# frozen_string_literal: true
require_relative "../spec_helper"
describe "Extending the request object" do
before do
Rack::Attack::Request.define_method :authorized? do
env["APIKey"] == "private-secret"
end
Rack::Attack.blocklist("unauthorized requests") do |request|
!request.authorized?
end
end
# We don't want the extension to leak to other test cases
after do
Rack::Attack::Request.undef_method :authorized?
end
it "forbids request if blocklist condition is true" do
get "/"
assert_equal 403, last_response.status
end
it "succeeds if blocklist condition is false" do
get "/", {}, "APIKey" => "private-secret"
assert_equal 200, last_response.status
end
end