Acceptance test ability to extend the request object

This commit is contained in:
Gonzalo Rodriguez 2018-03-22 10:16:02 -03:00
parent 6614d0b6ee
commit ba91e23419
No known key found for this signature in database
GPG key ID: 5DB8B81B049B8AB1

View file

@ -0,0 +1,34 @@
require_relative "../spec_helper"
describe "Extending the request object" do
before do
class Rack::Attack::Request
def authorized?
env["APIKey"] == "private-secret"
end
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
class Rack::Attack::Request
remove_method :authorized?
end
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