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

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

Issue 2976004: Http Cache: chain GetLoadState from transactions waiting for... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/http/http_cache_transaction.cc ('k') | net/http/http_transaction_unittest.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2010 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/scoped_vector.h" 9 #include "base/scoped_vector.h"
10 #include "base/string_util.h" 10 #include "base/string_util.h"
(...skipping 1378 matching lines...) Expand 10 before | Expand all | Expand 10 after
1389 1389
1390 std::vector<Context*> context_list; 1390 std::vector<Context*> context_list;
1391 const int kNumTransactions = 5; 1391 const int kNumTransactions = 5;
1392 1392
1393 for (int i = 0; i < kNumTransactions; ++i) { 1393 for (int i = 0; i < kNumTransactions; ++i) {
1394 context_list.push_back(new Context()); 1394 context_list.push_back(new Context());
1395 Context* c = context_list[i]; 1395 Context* c = context_list[i];
1396 1396
1397 c->result = cache.http_cache()->CreateTransaction(&c->trans); 1397 c->result = cache.http_cache()->CreateTransaction(&c->trans);
1398 EXPECT_EQ(net::OK, c->result); 1398 EXPECT_EQ(net::OK, c->result);
1399 EXPECT_EQ(net::LOAD_STATE_IDLE, c->trans->GetLoadState());
1399 1400
1400 c->result = c->trans->Start(&request, &c->callback, net::BoundNetLog()); 1401 c->result = c->trans->Start(&request, &c->callback, net::BoundNetLog());
1401 } 1402 }
1402 1403
1404 // All requests are waiting for the active entry.
1405 for (int i = 0; i < kNumTransactions; ++i) {
1406 Context* c = context_list[i];
1407 EXPECT_EQ(net::LOAD_STATE_WAITING_FOR_CACHE, c->trans->GetLoadState());
1408 }
1409
1403 // Allow all requests to move from the Create queue to the active entry. 1410 // Allow all requests to move from the Create queue to the active entry.
1404 MessageLoop::current()->RunAllPending(); 1411 MessageLoop::current()->RunAllPending();
1405 1412
1406 // The first request should be a writer at this point, and the subsequent 1413 // The first request should be a writer at this point, and the subsequent
1407 // requests should be pending. 1414 // requests should be pending.
1408 1415
1409 EXPECT_EQ(1, cache.network_layer()->transaction_count()); 1416 EXPECT_EQ(1, cache.network_layer()->transaction_count());
1410 EXPECT_EQ(0, cache.disk_cache()->open_count()); 1417 EXPECT_EQ(0, cache.disk_cache()->open_count());
1411 EXPECT_EQ(1, cache.disk_cache()->create_count()); 1418 EXPECT_EQ(1, cache.disk_cache()->create_count());
1412 1419
1420 // All requests depend on the writer, and the writer is between Start and
1421 // Read, i.e. idle.
1422 for (int i = 0; i < kNumTransactions; ++i) {
1423 Context* c = context_list[i];
1424 EXPECT_EQ(net::LOAD_STATE_IDLE, c->trans->GetLoadState());
1425 }
1426
1413 for (int i = 0; i < kNumTransactions; ++i) { 1427 for (int i = 0; i < kNumTransactions; ++i) {
1414 Context* c = context_list[i]; 1428 Context* c = context_list[i];
1415 if (c->result == net::ERR_IO_PENDING) 1429 if (c->result == net::ERR_IO_PENDING)
1416 c->result = c->callback.WaitForResult(); 1430 c->result = c->callback.WaitForResult();
1417 ReadAndVerifyTransaction(c->trans.get(), kSimpleGET_Transaction); 1431 ReadAndVerifyTransaction(c->trans.get(), kSimpleGET_Transaction);
1418 } 1432 }
1419 1433
1420 // We should not have had to re-open the disk entry 1434 // We should not have had to re-open the disk entry
1421 1435
1422 EXPECT_EQ(1, cache.network_layer()->transaction_count()); 1436 EXPECT_EQ(1, cache.network_layer()->transaction_count());
(...skipping 3254 matching lines...) Expand 10 before | Expand all | Expand 10 after
4677 // Now return 200 when validating the entry so the metadata will be lost. 4691 // Now return 200 when validating the entry so the metadata will be lost.
4678 MockTransaction trans2(kTypicalGET_Transaction); 4692 MockTransaction trans2(kTypicalGET_Transaction);
4679 trans2.load_flags = net::LOAD_VALIDATE_CACHE; 4693 trans2.load_flags = net::LOAD_VALIDATE_CACHE;
4680 RunTransactionTestWithResponseInfo(cache.http_cache(), trans2, &response); 4694 RunTransactionTestWithResponseInfo(cache.http_cache(), trans2, &response);
4681 EXPECT_TRUE(response.metadata.get() == NULL); 4695 EXPECT_TRUE(response.metadata.get() == NULL);
4682 4696
4683 EXPECT_EQ(3, cache.network_layer()->transaction_count()); 4697 EXPECT_EQ(3, cache.network_layer()->transaction_count());
4684 EXPECT_EQ(4, cache.disk_cache()->open_count()); 4698 EXPECT_EQ(4, cache.disk_cache()->open_count());
4685 EXPECT_EQ(1, cache.disk_cache()->create_count()); 4699 EXPECT_EQ(1, cache.disk_cache()->create_count());
4686 } 4700 }
OLDNEW
« no previous file with comments | « net/http/http_cache_transaction.cc ('k') | net/http/http_transaction_unittest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698