Skip to content

Commit

Permalink
Improve token_and_options regex and test
Browse files Browse the repository at this point in the history
add a test case to test the regex for the helper method raw_params
  • Loading branch information
xjlu committed Jul 1, 2014
1 parent ad778bc commit b39a344
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
Expand Up @@ -471,7 +471,7 @@ def rewrite_param_values(array_params)
# pairs by the standardized `:`, `;`, or `\t` delimiters defined in
# `AUTHN_PAIR_DELIMITERS`.
def raw_params(auth)
auth.sub(TOKEN_REGEX, '').split(/"\s*#{AUTHN_PAIR_DELIMITERS}\s*/)
auth.sub(TOKEN_REGEX, '').split(/\s*#{AUTHN_PAIR_DELIMITERS}\s*/)
end

# Encodes the given token and options into an Authorization header value.
Expand Down
24 changes: 22 additions & 2 deletions actionpack/test/controller/http_token_authentication_test.rb
Expand Up @@ -139,16 +139,36 @@ def authenticate_long_credentials
assert_equal(expected, actual)
end

test "token_and_options returns correct token with nounce option" do
token = "rcHu+HzSFw89Ypyhn/896A="
nonce_hash = {nonce: "123abc"}
actual = ActionController::HttpAuthentication::Token.token_and_options(sample_request(token, nonce_hash))
expected_token = token
expected_nonce = {"nonce" => nonce_hash[:nonce]}
assert_equal(expected_token, actual.first)
assert_equal(expected_nonce, actual.last)
end

test "token_and_options returns nil with no value after the equal sign" do
actual = ActionController::HttpAuthentication::Token.token_and_options(malformed_request).first
expected = nil
assert_equal(expected, actual)
end

test "raw_params returns a tuple of two key value pair strings" do
auth = sample_request("rcHu+HzSFw89Ypyhn/896A=").authorization.to_s
actual = ActionController::HttpAuthentication::Token.raw_params(auth)
expected = ["token=\"rcHu+HzSFw89Ypyhn/896A=\"", "nonce=\"def\""]
assert_equal(expected, actual)
end

private

def sample_request(token)
@sample_request ||= OpenStruct.new authorization: %{Token token="#{token}", nonce="def"}
def sample_request(token, options = {nonce: "def"})
authorization = options.inject([%{Token token="#{token}"}]) do |arr, (k, v)|
arr << "#{k}=\"#{v}\""
end.join(", ")
@sample_request ||= OpenStruct.new authorization: authorization
end

def malformed_request
Expand Down

0 comments on commit b39a344

Please sign in to comment.