-
Notifications
You must be signed in to change notification settings - Fork 337
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #310 from grzuy/acceptance_test_extend_request_object
Acceptance test ability to extend the request object
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |