提交 cd461c3e 编写于 作者: T Travis Warlick 提交者: Steve Klabnik

Support for multiple etags in an If-None-Match header

This is a rebased version of #2520.

Conflicts:

	actionpack/test/dispatch/request_test.rb
上级 60c88e64
## Rails 4.0.0 (unreleased) ##
* Support multiple etags in If-None-Match header. *Travis Warlick*
* Allow to configure how unverified request will be handled using `:with`
option in `protect_from_forgery` method.
......
......@@ -17,12 +17,18 @@ def if_none_match
env[HTTP_IF_NONE_MATCH]
end
def if_none_match_etags
(if_none_match ? if_none_match.split(/\s*,\s*/) : []).collect do |etag|
etag.gsub(/^\"|\"$/, "")
end
end
def not_modified?(modified_at)
if_modified_since && modified_at && if_modified_since >= modified_at
end
def etag_matches?(etag)
if_none_match && if_none_match == etag
if_none_match_etags.include?(etag)
end
# Check response freshness (Last-Modified and ETag) against request
......
......@@ -746,6 +746,45 @@ def url_for(options = {})
assert_equal "/foo?bar", path
end
test "if_none_match_etags none" do
request = stub_request
assert_equal nil, request.if_none_match
assert_equal [], request.if_none_match_etags
assert !request.etag_matches?("foo")
assert !request.etag_matches?(nil)
end
test "if_none_match_etags single" do
header = 'the-etag'
request = stub_request('HTTP_IF_NONE_MATCH' => header)
assert_equal header, request.if_none_match
assert_equal [header], request.if_none_match_etags
assert request.etag_matches?("the-etag")
end
test "if_none_match_etags quoted single" do
header = '"the-etag"'
request = stub_request('HTTP_IF_NONE_MATCH' => header)
assert_equal header, request.if_none_match
assert_equal ['the-etag'], request.if_none_match_etags
assert request.etag_matches?("the-etag")
end
test "if_none_match_etags multiple" do
header = 'etag1, etag2, "third etag", "etag4"'
expected = ['etag1', 'etag2', 'third etag', 'etag4']
request = stub_request('HTTP_IF_NONE_MATCH' => header)
assert_equal header, request.if_none_match
assert_equal expected, request.if_none_match_etags
expected.each do |etag|
assert request.etag_matches?(etag), etag
end
end
protected
def stub_request(env = {})
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册