Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1115)

Unified Diff: net/http/http_cache_unittest.cc

Issue 391763002: Initial implementation of Chrome-Freshness header. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename header and move GetStaleWhileRevalidateValue Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/http/http_cache_unittest.cc
diff --git a/net/http/http_cache_unittest.cc b/net/http/http_cache_unittest.cc
index 83241ab301e441665f6acf3f1b794fa7e5f9f183..55332bccc5436d2ed9bc6e5c9adb83500b3fe6bb 100644
--- a/net/http/http_cache_unittest.cc
+++ b/net/http/http_cache_unittest.cc
@@ -6443,3 +6443,99 @@ TEST(HttpCache, ReceivedBytesRange) {
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
+
+static void CheckResourceFreshnessHeader(const net::HttpRequestInfo* request,
+ std::string* response_status,
+ std::string* response_headers,
+ std::string* response_data) {
+ std::string value;
+ EXPECT_TRUE(
+ request->extra_headers.GetHeader("Chromium-Resource-Freshness", &value));
+ EXPECT_EQ("max-age=3600,stale-while-revalidate=7200,age=10801", value);
+}
+
+// Verify that the Chromium-Resource-Freshness header is sent on a revalidation
+// if the stale-while-revalidate directive was on the response.
+// TODO(ricea): Rename this test when a final name for the header is decided.
+TEST(HttpCache, ResourceFreshnessHeaderSent) {
+ MockHttpCache cache;
+
+ const MockTransaction kStaleWhileRevalidateTransaction = {
rvargas (doing something else) 2014/07/28 19:24:00 It may be more clear to use a predefined transacti
Adam Rice 2014/07/29 17:04:45 Done.
+ "http://www.example.com/stale-while-revalidate",
+ "GET",
+ base::Time(),
+ "",
+ net::LOAD_NORMAL,
+ "HTTP/1.1 200 OK",
+ "Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
+ "Age: 10801\n"
+ "Cache-Control: max-age=3600,stale-while-revalidate=7200\n",
+ base::Time(),
+ "<title>Testing stale-while-revalidate</title>",
+ TEST_MODE_SYNC_NET_START,
+ NULL,
+ 0,
+ net::OK};
+
+ ScopedMockTransaction stale_while_revalidate_transaction(
+ kStaleWhileRevalidateTransaction);
+
+ // Write to the cache.
+ RunTransactionTest(cache.http_cache(), stale_while_revalidate_transaction);
+
+ EXPECT_EQ(1, cache.network_layer()->transaction_count());
+
+ // Send the request again and check that Chromium-Resource-Freshness header is
+ // added.
+ stale_while_revalidate_transaction.handler = CheckResourceFreshnessHeader;
+
+ RunTransactionTest(cache.http_cache(), stale_while_revalidate_transaction);
+
+ EXPECT_EQ(2, cache.network_layer()->transaction_count());
+}
+
+static void CheckResourceFreshnessAbsent(const net::HttpRequestInfo* request,
+ std::string* response_status,
+ std::string* response_headers,
+ std::string* response_data) {
+ EXPECT_FALSE(request->extra_headers.HasHeader("Chromium-Resource-Freshness"));
+}
+
+// Verify that the Chromium-Resource-Freshness header is not sent when
+// stale-while-revalidate is 0.
+TEST(HttpCache, ResourceFreshnessHeaderNotSent) {
+ MockHttpCache cache;
+
+ const MockTransaction kStaleWhileRevalidateTransaction = {
+ "http://www.example.com/stale-while-revalidate",
+ "GET",
+ base::Time(),
+ "",
+ net::LOAD_NORMAL,
+ "HTTP/1.1 200 OK",
+ "Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
+ "Age: 10801\n"
+ "Cache-Control: max-age=3600,stale-while-revalidate=0\n",
+ base::Time(),
+ "<title>Testing stale-while-revalidate</title>",
+ TEST_MODE_SYNC_NET_START,
+ NULL,
+ 0,
+ net::OK};
+
+ ScopedMockTransaction stale_while_revalidate_transaction(
+ kStaleWhileRevalidateTransaction);
+
+ // Write to the cache.
+ RunTransactionTest(cache.http_cache(), stale_while_revalidate_transaction);
+
+ EXPECT_EQ(1, cache.network_layer()->transaction_count());
+
+ // Send the request again and check that Chromium-Resource-Freshness header is
+ // absent.
+ stale_while_revalidate_transaction.handler = CheckResourceFreshnessAbsent;
+
+ RunTransactionTest(cache.http_cache(), stale_while_revalidate_transaction);
+
+ EXPECT_EQ(2, cache.network_layer()->transaction_count());
+}

Powered by Google App Engine
This is Rietveld 408576698