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

Side by Side Diff: net/http/http_response_info_unittest.cc

Issue 1039263002: //net changes for stale-while-revalidate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@s-w-r-remove-old-impl
Patch Set: Changes suggested by rvargas. Created 5 years, 4 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 unified diff | Download patch
« no previous file with comments | « net/http/http_response_info.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/http/http_response_info.h" 5 #include "net/http/http_response_info.h"
6 6
7 #include "base/pickle.h" 7 #include "base/pickle.h"
8 #include "net/http/http_response_headers.h" 8 #include "net/http/http_response_headers.h"
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 10
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 EXPECT_FALSE(restored_response_info.unused_since_prefetch); 45 EXPECT_FALSE(restored_response_info.unused_since_prefetch);
46 } 46 }
47 47
48 TEST_F(HttpResponseInfoTest, UnusedSincePrefetchPersistTrue) { 48 TEST_F(HttpResponseInfoTest, UnusedSincePrefetchPersistTrue) {
49 response_info_.unused_since_prefetch = true; 49 response_info_.unused_since_prefetch = true;
50 HttpResponseInfo restored_response_info; 50 HttpResponseInfo restored_response_info;
51 PickleAndRestore(response_info_, &restored_response_info); 51 PickleAndRestore(response_info_, &restored_response_info);
52 EXPECT_TRUE(restored_response_info.unused_since_prefetch); 52 EXPECT_TRUE(restored_response_info.unused_since_prefetch);
53 } 53 }
54 54
55 TEST_F(HttpResponseInfoTest, AsyncRevalidationRequiredDefault) {
56 EXPECT_FALSE(response_info_.async_revalidation_required);
57 }
58
59 TEST_F(HttpResponseInfoTest, AsyncRevalidationRequiredCopy) {
60 response_info_.async_revalidation_required = true;
61 net::HttpResponseInfo response_info_clone(response_info_);
62 EXPECT_TRUE(response_info_clone.async_revalidation_required);
63 }
64
65 TEST_F(HttpResponseInfoTest, AsyncRevalidationRequiredAssign) {
66 response_info_.async_revalidation_required = true;
67 net::HttpResponseInfo response_info_clone;
68 response_info_clone = response_info_;
69 EXPECT_TRUE(response_info_clone.async_revalidation_required);
70 }
71
72 TEST_F(HttpResponseInfoTest, AsyncRevalidationRequiredNotPersisted) {
73 response_info_.async_revalidation_required = true;
74 net::HttpResponseInfo restored_response_info;
75 PickleAndRestore(response_info_, &restored_response_info);
76 EXPECT_FALSE(restored_response_info.async_revalidation_required);
77 }
78
55 } // namespace 79 } // namespace
56 80
57 } // namespace net 81 } // namespace net
OLDNEW
« no previous file with comments | « net/http/http_response_info.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698