OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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_cache.h" | 5 #include "net/http/http_cache.h" |
6 | 6 |
7 #include "base/hash_tables.h" | 7 #include "base/hash_tables.h" |
8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
9 #include "base/string_util.h" | 9 #include "base/string_util.h" |
10 #include "net/base/net_errors.h" | 10 #include "net/base/net_errors.h" |
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
387 const MockTransaction& trans_info, | 387 const MockTransaction& trans_info, |
388 const MockHttpRequest& request, | 388 const MockHttpRequest& request, |
389 std::string* response_headers) { | 389 std::string* response_headers) { |
390 TestCompletionCallback callback; | 390 TestCompletionCallback callback; |
391 | 391 |
392 // write to the cache | 392 // write to the cache |
393 | 393 |
394 scoped_ptr<net::HttpTransaction> trans(cache->CreateTransaction()); | 394 scoped_ptr<net::HttpTransaction> trans(cache->CreateTransaction()); |
395 ASSERT_TRUE(trans.get()); | 395 ASSERT_TRUE(trans.get()); |
396 | 396 |
397 int rv = trans->Start(&request, &callback); | 397 int rv = trans->Start(NULL, &request, &callback); |
398 if (rv == net::ERR_IO_PENDING) | 398 if (rv == net::ERR_IO_PENDING) |
399 rv = callback.WaitForResult(); | 399 rv = callback.WaitForResult(); |
400 ASSERT_EQ(net::OK, rv); | 400 ASSERT_EQ(net::OK, rv); |
401 | 401 |
402 const net::HttpResponseInfo* response = trans->GetResponseInfo(); | 402 const net::HttpResponseInfo* response = trans->GetResponseInfo(); |
403 ASSERT_TRUE(response); | 403 ASSERT_TRUE(response); |
404 | 404 |
405 if (response_headers) | 405 if (response_headers) |
406 response->headers->GetNormalizedHeaders(response_headers); | 406 response->headers->GetNormalizedHeaders(response_headers); |
407 | 407 |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
673 MockTransaction transaction(kSimpleGET_Transaction); | 673 MockTransaction transaction(kSimpleGET_Transaction); |
674 transaction.load_flags |= net::LOAD_ONLY_FROM_CACHE; | 674 transaction.load_flags |= net::LOAD_ONLY_FROM_CACHE; |
675 | 675 |
676 MockHttpRequest request(transaction); | 676 MockHttpRequest request(transaction); |
677 TestCompletionCallback callback; | 677 TestCompletionCallback callback; |
678 | 678 |
679 scoped_ptr<net::HttpTransaction> trans( | 679 scoped_ptr<net::HttpTransaction> trans( |
680 cache.http_cache()->CreateTransaction()); | 680 cache.http_cache()->CreateTransaction()); |
681 ASSERT_TRUE(trans.get()); | 681 ASSERT_TRUE(trans.get()); |
682 | 682 |
683 int rv = trans->Start(&request, &callback); | 683 int rv = trans->Start(NULL, &request, &callback); |
684 if (rv == net::ERR_IO_PENDING) | 684 if (rv == net::ERR_IO_PENDING) |
685 rv = callback.WaitForResult(); | 685 rv = callback.WaitForResult(); |
686 ASSERT_EQ(net::ERR_CACHE_MISS, rv); | 686 ASSERT_EQ(net::ERR_CACHE_MISS, rv); |
687 | 687 |
688 trans.reset(); | 688 trans.reset(); |
689 | 689 |
690 EXPECT_EQ(0, cache.network_layer()->transaction_count()); | 690 EXPECT_EQ(0, cache.network_layer()->transaction_count()); |
691 EXPECT_EQ(0, cache.disk_cache()->open_count()); | 691 EXPECT_EQ(0, cache.disk_cache()->open_count()); |
692 EXPECT_EQ(0, cache.disk_cache()->create_count()); | 692 EXPECT_EQ(0, cache.disk_cache()->create_count()); |
693 } | 693 } |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
830 MockHttpRequest request(kSimpleGET_Transaction); | 830 MockHttpRequest request(kSimpleGET_Transaction); |
831 | 831 |
832 std::vector<Context*> context_list; | 832 std::vector<Context*> context_list; |
833 const int kNumTransactions = 5; | 833 const int kNumTransactions = 5; |
834 | 834 |
835 for (int i = 0; i < kNumTransactions; ++i) { | 835 for (int i = 0; i < kNumTransactions; ++i) { |
836 context_list.push_back( | 836 context_list.push_back( |
837 new Context(cache.http_cache()->CreateTransaction())); | 837 new Context(cache.http_cache()->CreateTransaction())); |
838 | 838 |
839 Context* c = context_list[i]; | 839 Context* c = context_list[i]; |
840 int rv = c->trans->Start(&request, &c->callback); | 840 int rv = c->trans->Start(NULL, &request, &c->callback); |
841 if (rv != net::ERR_IO_PENDING) | 841 if (rv != net::ERR_IO_PENDING) |
842 c->result = rv; | 842 c->result = rv; |
843 } | 843 } |
844 | 844 |
845 // the first request should be a writer at this point, and the subsequent | 845 // the first request should be a writer at this point, and the subsequent |
846 // requests should be pending. | 846 // requests should be pending. |
847 | 847 |
848 EXPECT_EQ(1, cache.network_layer()->transaction_count()); | 848 EXPECT_EQ(1, cache.network_layer()->transaction_count()); |
849 EXPECT_EQ(0, cache.disk_cache()->open_count()); | 849 EXPECT_EQ(0, cache.disk_cache()->open_count()); |
850 EXPECT_EQ(1, cache.disk_cache()->create_count()); | 850 EXPECT_EQ(1, cache.disk_cache()->create_count()); |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
884 | 884 |
885 for (int i = 0; i < kNumTransactions; ++i) { | 885 for (int i = 0; i < kNumTransactions; ++i) { |
886 context_list.push_back( | 886 context_list.push_back( |
887 new Context(cache.http_cache()->CreateTransaction())); | 887 new Context(cache.http_cache()->CreateTransaction())); |
888 | 888 |
889 Context* c = context_list[i]; | 889 Context* c = context_list[i]; |
890 MockHttpRequest* this_request = &request; | 890 MockHttpRequest* this_request = &request; |
891 if (i == 1 || i == 2) | 891 if (i == 1 || i == 2) |
892 this_request = &reader_request; | 892 this_request = &reader_request; |
893 | 893 |
894 int rv = c->trans->Start(this_request, &c->callback); | 894 int rv = c->trans->Start(NULL, this_request, &c->callback); |
895 if (rv != net::ERR_IO_PENDING) | 895 if (rv != net::ERR_IO_PENDING) |
896 c->result = rv; | 896 c->result = rv; |
897 } | 897 } |
898 | 898 |
899 // The first request should be a writer at this point, and the subsequent | 899 // The first request should be a writer at this point, and the subsequent |
900 // requests should be pending. | 900 // requests should be pending. |
901 | 901 |
902 EXPECT_EQ(1, cache.network_layer()->transaction_count()); | 902 EXPECT_EQ(1, cache.network_layer()->transaction_count()); |
903 EXPECT_EQ(0, cache.disk_cache()->open_count()); | 903 EXPECT_EQ(0, cache.disk_cache()->open_count()); |
904 EXPECT_EQ(1, cache.disk_cache()->create_count()); | 904 EXPECT_EQ(1, cache.disk_cache()->create_count()); |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
956 AddMockTransaction(&kFastNoStoreGET_Transaction); | 956 AddMockTransaction(&kFastNoStoreGET_Transaction); |
957 | 957 |
958 std::vector<Context*> context_list; | 958 std::vector<Context*> context_list; |
959 const int kNumTransactions = 3; | 959 const int kNumTransactions = 3; |
960 | 960 |
961 for (int i = 0; i < kNumTransactions; ++i) { | 961 for (int i = 0; i < kNumTransactions; ++i) { |
962 context_list.push_back( | 962 context_list.push_back( |
963 new Context(cache.http_cache()->CreateTransaction())); | 963 new Context(cache.http_cache()->CreateTransaction())); |
964 | 964 |
965 Context* c = context_list[i]; | 965 Context* c = context_list[i]; |
966 int rv = c->trans->Start(&request, &c->callback); | 966 int rv = c->trans->Start(NULL, &request, &c->callback); |
967 if (rv != net::ERR_IO_PENDING) | 967 if (rv != net::ERR_IO_PENDING) |
968 c->result = rv; | 968 c->result = rv; |
969 } | 969 } |
970 | 970 |
971 // The first request should be a writer at this point, and the subsequent | 971 // The first request should be a writer at this point, and the subsequent |
972 // requests should be pending. | 972 // requests should be pending. |
973 | 973 |
974 EXPECT_EQ(1, cache.network_layer()->transaction_count()); | 974 EXPECT_EQ(1, cache.network_layer()->transaction_count()); |
975 EXPECT_EQ(0, cache.disk_cache()->open_count()); | 975 EXPECT_EQ(0, cache.disk_cache()->open_count()); |
976 EXPECT_EQ(1, cache.disk_cache()->create_count()); | 976 EXPECT_EQ(1, cache.disk_cache()->create_count()); |
(...skipping 22 matching lines...) Expand all Loading... |
999 MockHttpRequest request(kSimpleGET_Transaction); | 999 MockHttpRequest request(kSimpleGET_Transaction); |
1000 | 1000 |
1001 std::vector<Context*> context_list; | 1001 std::vector<Context*> context_list; |
1002 const int kNumTransactions = 2; | 1002 const int kNumTransactions = 2; |
1003 | 1003 |
1004 for (int i = 0; i < kNumTransactions; ++i) { | 1004 for (int i = 0; i < kNumTransactions; ++i) { |
1005 context_list.push_back( | 1005 context_list.push_back( |
1006 new Context(cache.http_cache()->CreateTransaction())); | 1006 new Context(cache.http_cache()->CreateTransaction())); |
1007 | 1007 |
1008 Context* c = context_list[i]; | 1008 Context* c = context_list[i]; |
1009 int rv = c->trans->Start(&request, &c->callback); | 1009 int rv = c->trans->Start(NULL, &request, &c->callback); |
1010 if (rv != net::ERR_IO_PENDING) | 1010 if (rv != net::ERR_IO_PENDING) |
1011 c->result = rv; | 1011 c->result = rv; |
1012 } | 1012 } |
1013 | 1013 |
1014 // the first request should be a writer at this point, and the subsequent | 1014 // the first request should be a writer at this point, and the subsequent |
1015 // requests should be pending. | 1015 // requests should be pending. |
1016 | 1016 |
1017 EXPECT_EQ(1, cache.network_layer()->transaction_count()); | 1017 EXPECT_EQ(1, cache.network_layer()->transaction_count()); |
1018 EXPECT_EQ(0, cache.disk_cache()->open_count()); | 1018 EXPECT_EQ(0, cache.disk_cache()->open_count()); |
1019 EXPECT_EQ(1, cache.disk_cache()->create_count()); | 1019 EXPECT_EQ(1, cache.disk_cache()->create_count()); |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1051 MockHttpCache cache; | 1051 MockHttpCache cache; |
1052 | 1052 |
1053 // write to the cache | 1053 // write to the cache |
1054 RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction); | 1054 RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction); |
1055 | 1055 |
1056 MockHttpRequest request(kSimpleGET_Transaction); | 1056 MockHttpRequest request(kSimpleGET_Transaction); |
1057 TestCompletionCallback callback; | 1057 TestCompletionCallback callback; |
1058 | 1058 |
1059 scoped_ptr<net::HttpTransaction> trans( | 1059 scoped_ptr<net::HttpTransaction> trans( |
1060 cache.http_cache()->CreateTransaction()); | 1060 cache.http_cache()->CreateTransaction()); |
1061 int rv = trans->Start(&request, &callback); | 1061 int rv = trans->Start(NULL, &request, &callback); |
1062 if (rv == net::ERR_IO_PENDING) | 1062 if (rv == net::ERR_IO_PENDING) |
1063 rv = callback.WaitForResult(); | 1063 rv = callback.WaitForResult(); |
1064 ASSERT_EQ(net::OK, rv); | 1064 ASSERT_EQ(net::OK, rv); |
1065 | 1065 |
1066 scoped_refptr<net::IOBuffer> buf = new net::IOBuffer(256); | 1066 scoped_refptr<net::IOBuffer> buf = new net::IOBuffer(256); |
1067 rv = trans->Read(buf, 256, &callback); | 1067 rv = trans->Read(buf, 256, &callback); |
1068 EXPECT_EQ(net::ERR_IO_PENDING, rv); | 1068 EXPECT_EQ(net::ERR_IO_PENDING, rv); |
1069 | 1069 |
1070 // Test that destroying the transaction while it is reading from the cache | 1070 // Test that destroying the transaction while it is reading from the cache |
1071 // works properly. | 1071 // works properly. |
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1566 MockTransaction transaction(kSimplePOST_Transaction); | 1566 MockTransaction transaction(kSimplePOST_Transaction); |
1567 transaction.load_flags |= net::LOAD_ONLY_FROM_CACHE; | 1567 transaction.load_flags |= net::LOAD_ONLY_FROM_CACHE; |
1568 | 1568 |
1569 MockHttpRequest request(transaction); | 1569 MockHttpRequest request(transaction); |
1570 TestCompletionCallback callback; | 1570 TestCompletionCallback callback; |
1571 | 1571 |
1572 scoped_ptr<net::HttpTransaction> trans( | 1572 scoped_ptr<net::HttpTransaction> trans( |
1573 cache.http_cache()->CreateTransaction()); | 1573 cache.http_cache()->CreateTransaction()); |
1574 ASSERT_TRUE(trans.get()); | 1574 ASSERT_TRUE(trans.get()); |
1575 | 1575 |
1576 int rv = trans->Start(&request, &callback); | 1576 int rv = trans->Start(NULL, &request, &callback); |
1577 if (rv == net::ERR_IO_PENDING) | 1577 if (rv == net::ERR_IO_PENDING) |
1578 rv = callback.WaitForResult(); | 1578 rv = callback.WaitForResult(); |
1579 ASSERT_EQ(net::ERR_CACHE_MISS, rv); | 1579 ASSERT_EQ(net::ERR_CACHE_MISS, rv); |
1580 | 1580 |
1581 trans.reset(); | 1581 trans.reset(); |
1582 | 1582 |
1583 EXPECT_EQ(0, cache.network_layer()->transaction_count()); | 1583 EXPECT_EQ(0, cache.network_layer()->transaction_count()); |
1584 EXPECT_EQ(0, cache.disk_cache()->open_count()); | 1584 EXPECT_EQ(0, cache.disk_cache()->open_count()); |
1585 EXPECT_EQ(0, cache.disk_cache()->create_count()); | 1585 EXPECT_EQ(0, cache.disk_cache()->create_count()); |
1586 } | 1586 } |
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1970 TEST_MODE_SYNC_CACHE_READ); | 1970 TEST_MODE_SYNC_CACHE_READ); |
1971 | 1971 |
1972 MockHttpRequest r1(transaction), | 1972 MockHttpRequest r1(transaction), |
1973 r2(transaction), | 1973 r2(transaction), |
1974 r3(transaction); | 1974 r3(transaction); |
1975 | 1975 |
1976 TestTransactionConsumer c1(cache.http_cache()), | 1976 TestTransactionConsumer c1(cache.http_cache()), |
1977 c2(cache.http_cache()), | 1977 c2(cache.http_cache()), |
1978 c3(cache.http_cache()); | 1978 c3(cache.http_cache()); |
1979 | 1979 |
1980 c1.Start(&r1); | 1980 c1.Start(NULL, &r1); |
1981 | 1981 |
1982 r2.load_flags |= net::LOAD_ONLY_FROM_CACHE; | 1982 r2.load_flags |= net::LOAD_ONLY_FROM_CACHE; |
1983 c2.Start(&r2); | 1983 c2.Start(NULL, &r2); |
1984 | 1984 |
1985 r3.load_flags |= net::LOAD_ONLY_FROM_CACHE; | 1985 r3.load_flags |= net::LOAD_ONLY_FROM_CACHE; |
1986 c3.Start(&r3); | 1986 c3.Start(NULL, &r3); |
1987 | 1987 |
1988 MessageLoop::current()->Run(); | 1988 MessageLoop::current()->Run(); |
1989 | 1989 |
1990 EXPECT_TRUE(c1.is_done()); | 1990 EXPECT_TRUE(c1.is_done()); |
1991 EXPECT_TRUE(c2.is_done()); | 1991 EXPECT_TRUE(c2.is_done()); |
1992 EXPECT_TRUE(c3.is_done()); | 1992 EXPECT_TRUE(c3.is_done()); |
1993 | 1993 |
1994 EXPECT_EQ(net::OK, c1.error()); | 1994 EXPECT_EQ(net::OK, c1.error()); |
1995 EXPECT_EQ(net::OK, c2.error()); | 1995 EXPECT_EQ(net::OK, c2.error()); |
1996 EXPECT_EQ(net::OK, c3.error()); | 1996 EXPECT_EQ(net::OK, c3.error()); |
(...skipping 26 matching lines...) Expand all Loading... |
2023 | 2023 |
2024 MockHttpRequest request(kTestTransaction); | 2024 MockHttpRequest request(kTestTransaction); |
2025 TestCompletionCallback callback; | 2025 TestCompletionCallback callback; |
2026 | 2026 |
2027 // write to the cache | 2027 // write to the cache |
2028 { | 2028 { |
2029 scoped_ptr<net::HttpTransaction> trans( | 2029 scoped_ptr<net::HttpTransaction> trans( |
2030 cache.http_cache()->CreateTransaction()); | 2030 cache.http_cache()->CreateTransaction()); |
2031 ASSERT_TRUE(trans.get()); | 2031 ASSERT_TRUE(trans.get()); |
2032 | 2032 |
2033 int rv = trans->Start(&request, &callback); | 2033 int rv = trans->Start(NULL, &request, &callback); |
2034 if (rv == net::ERR_IO_PENDING) | 2034 if (rv == net::ERR_IO_PENDING) |
2035 rv = callback.WaitForResult(); | 2035 rv = callback.WaitForResult(); |
2036 ASSERT_EQ(net::OK, rv); | 2036 ASSERT_EQ(net::OK, rv); |
2037 | 2037 |
2038 const net::HttpResponseInfo* info = trans->GetResponseInfo(); | 2038 const net::HttpResponseInfo* info = trans->GetResponseInfo(); |
2039 ASSERT_TRUE(info); | 2039 ASSERT_TRUE(info); |
2040 | 2040 |
2041 EXPECT_EQ(info->headers->response_code(), 301); | 2041 EXPECT_EQ(info->headers->response_code(), 301); |
2042 | 2042 |
2043 std::string location; | 2043 std::string location; |
2044 info->headers->EnumerateHeader(NULL, "Location", &location); | 2044 info->headers->EnumerateHeader(NULL, "Location", &location); |
2045 EXPECT_EQ(location, "http://www.bar.com/"); | 2045 EXPECT_EQ(location, "http://www.bar.com/"); |
2046 | 2046 |
2047 // Destroy transaction when going out of scope. We have not actually | 2047 // Destroy transaction when going out of scope. We have not actually |
2048 // read the response body -- want to test that it is still getting cached. | 2048 // read the response body -- want to test that it is still getting cached. |
2049 } | 2049 } |
2050 EXPECT_EQ(1, cache.network_layer()->transaction_count()); | 2050 EXPECT_EQ(1, cache.network_layer()->transaction_count()); |
2051 EXPECT_EQ(0, cache.disk_cache()->open_count()); | 2051 EXPECT_EQ(0, cache.disk_cache()->open_count()); |
2052 EXPECT_EQ(1, cache.disk_cache()->create_count()); | 2052 EXPECT_EQ(1, cache.disk_cache()->create_count()); |
2053 | 2053 |
2054 // read from the cache | 2054 // read from the cache |
2055 { | 2055 { |
2056 scoped_ptr<net::HttpTransaction> trans( | 2056 scoped_ptr<net::HttpTransaction> trans( |
2057 cache.http_cache()->CreateTransaction()); | 2057 cache.http_cache()->CreateTransaction()); |
2058 ASSERT_TRUE(trans.get()); | 2058 ASSERT_TRUE(trans.get()); |
2059 | 2059 |
2060 int rv = trans->Start(&request, &callback); | 2060 int rv = trans->Start(NULL, &request, &callback); |
2061 if (rv == net::ERR_IO_PENDING) | 2061 if (rv == net::ERR_IO_PENDING) |
2062 rv = callback.WaitForResult(); | 2062 rv = callback.WaitForResult(); |
2063 ASSERT_EQ(net::OK, rv); | 2063 ASSERT_EQ(net::OK, rv); |
2064 | 2064 |
2065 const net::HttpResponseInfo* info = trans->GetResponseInfo(); | 2065 const net::HttpResponseInfo* info = trans->GetResponseInfo(); |
2066 ASSERT_TRUE(info); | 2066 ASSERT_TRUE(info); |
2067 | 2067 |
2068 EXPECT_EQ(info->headers->response_code(), 301); | 2068 EXPECT_EQ(info->headers->response_code(), 301); |
2069 | 2069 |
2070 std::string location; | 2070 std::string location; |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2177 // Test that it was not cached. | 2177 // Test that it was not cached. |
2178 transaction.load_flags |= net::LOAD_ONLY_FROM_CACHE; | 2178 transaction.load_flags |= net::LOAD_ONLY_FROM_CACHE; |
2179 | 2179 |
2180 MockHttpRequest request(transaction); | 2180 MockHttpRequest request(transaction); |
2181 TestCompletionCallback callback; | 2181 TestCompletionCallback callback; |
2182 | 2182 |
2183 scoped_ptr<net::HttpTransaction> trans( | 2183 scoped_ptr<net::HttpTransaction> trans( |
2184 cache.http_cache()->CreateTransaction()); | 2184 cache.http_cache()->CreateTransaction()); |
2185 ASSERT_TRUE(trans.get()); | 2185 ASSERT_TRUE(trans.get()); |
2186 | 2186 |
2187 int rv = trans->Start(&request, &callback); | 2187 int rv = trans->Start(NULL, &request, &callback); |
2188 if (rv == net::ERR_IO_PENDING) | 2188 if (rv == net::ERR_IO_PENDING) |
2189 rv = callback.WaitForResult(); | 2189 rv = callback.WaitForResult(); |
2190 ASSERT_EQ(net::ERR_CACHE_MISS, rv); | 2190 ASSERT_EQ(net::ERR_CACHE_MISS, rv); |
2191 } | 2191 } |
2192 | 2192 |
2193 // Ensure that we don't crash by if left-behind transactions. | 2193 // Ensure that we don't crash by if left-behind transactions. |
2194 TEST(HttpCache, OutlivedTransactions) { | 2194 TEST(HttpCache, OutlivedTransactions) { |
2195 MockHttpCache* cache = new MockHttpCache; | 2195 MockHttpCache* cache = new MockHttpCache; |
2196 | 2196 |
2197 net::HttpTransaction* trans = cache->http_cache()->CreateTransaction(); | 2197 net::HttpTransaction* trans = cache->http_cache()->CreateTransaction(); |
(...skipping 13 matching lines...) Expand all Loading... |
2211 | 2211 |
2212 // force this transaction to write to the cache again | 2212 // force this transaction to write to the cache again |
2213 MockTransaction transaction(kSimpleGET_Transaction); | 2213 MockTransaction transaction(kSimpleGET_Transaction); |
2214 | 2214 |
2215 RunTransactionTest(cache.http_cache(), transaction); | 2215 RunTransactionTest(cache.http_cache(), transaction); |
2216 | 2216 |
2217 EXPECT_EQ(2, cache.network_layer()->transaction_count()); | 2217 EXPECT_EQ(2, cache.network_layer()->transaction_count()); |
2218 EXPECT_EQ(0, cache.disk_cache()->open_count()); | 2218 EXPECT_EQ(0, cache.disk_cache()->open_count()); |
2219 EXPECT_EQ(1, cache.disk_cache()->create_count()); | 2219 EXPECT_EQ(1, cache.disk_cache()->create_count()); |
2220 } | 2220 } |
OLD | NEW |