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

Unified Diff: net/disk_cache/block_files_unittest.cc

Issue 3387012: Revert 60165 - GTTF: Make net_unittests run successfully with parallel test l... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 3 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
« no previous file with comments | « net/disk_cache/backend_unittest.cc ('k') | net/disk_cache/disk_cache_test_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/block_files_unittest.cc
===================================================================
--- net/disk_cache/block_files_unittest.cc (revision 60165)
+++ net/disk_cache/block_files_unittest.cc (working copy)
@@ -28,9 +28,11 @@
namespace disk_cache {
TEST_F(DiskCacheTest, BlockFiles_Grow) {
- ScopedTestCache test_cache;
+ FilePath path = GetCacheFilePath();
+ ASSERT_TRUE(DeleteCache(path));
+ ASSERT_TRUE(file_util::CreateDirectory(path));
- BlockFiles files(test_cache.path());
+ BlockFiles files(path);
ASSERT_TRUE(files.Init(true));
const int kMaxSize = 35000;
@@ -40,7 +42,7 @@
for (int i = 0; i < kMaxSize; i++) {
EXPECT_TRUE(files.CreateBlock(RANKINGS, 4, &address[i]));
}
- EXPECT_EQ(6, NumberOfFiles(test_cache.path()));
+ EXPECT_EQ(6, NumberOfFiles(path));
// Make sure we don't keep adding files.
for (int i = 0; i < kMaxSize * 4; i += 2) {
@@ -48,14 +50,16 @@
files.DeleteBlock(address[target], false);
EXPECT_TRUE(files.CreateBlock(RANKINGS, 4, &address[target]));
}
- EXPECT_EQ(6, NumberOfFiles(test_cache.path()));
+ EXPECT_EQ(6, NumberOfFiles(path));
}
// We should be able to delete empty block files.
TEST_F(DiskCacheTest, BlockFiles_Shrink) {
- ScopedTestCache test_cache;
+ FilePath path = GetCacheFilePath();
+ ASSERT_TRUE(DeleteCache(path));
+ ASSERT_TRUE(file_util::CreateDirectory(path));
- BlockFiles files(test_cache.path());
+ BlockFiles files(path);
ASSERT_TRUE(files.Init(true));
const int kMaxSize = 35000;
@@ -70,14 +74,16 @@
for (int i = 0; i < kMaxSize; i++) {
files.DeleteBlock(address[i], false);
}
- EXPECT_EQ(4, NumberOfFiles(test_cache.path()));
+ EXPECT_EQ(4, NumberOfFiles(path));
}
// Handling of block files not properly closed.
TEST_F(DiskCacheTest, BlockFiles_Recover) {
- ScopedTestCache test_cache;
+ FilePath path = GetCacheFilePath();
+ ASSERT_TRUE(DeleteCache(path));
+ ASSERT_TRUE(file_util::CreateDirectory(path));
- BlockFiles files(test_cache.path());
+ BlockFiles files(path);
ASSERT_TRUE(files.Init(true));
const int kNumEntries = 2000;
@@ -151,9 +157,11 @@
// Handling of truncated files.
TEST_F(DiskCacheTest, BlockFiles_ZeroSizeFile) {
- ScopedTestCache test_cache;
+ FilePath path = GetCacheFilePath();
+ ASSERT_TRUE(DeleteCache(path));
+ ASSERT_TRUE(file_util::CreateDirectory(path));
- BlockFiles files(test_cache.path());
+ BlockFiles files(path);
ASSERT_TRUE(files.Init(true));
FilePath filename = files.Name(0);
@@ -171,9 +179,11 @@
// An invalid file can be detected after init.
TEST_F(DiskCacheTest, BlockFiles_InvalidFile) {
- ScopedTestCache test_cache;
+ FilePath path = GetCacheFilePath();
+ ASSERT_TRUE(DeleteCache(path));
+ ASSERT_TRUE(file_util::CreateDirectory(path));
- BlockFiles files(test_cache.path());
+ BlockFiles files(path);
ASSERT_TRUE(files.Init(true));
// Let's access block 10 of file 5. (There is no file).
@@ -195,11 +205,10 @@
// Tests that we generate the correct file stats.
TEST_F(DiskCacheTest, BlockFiles_Stats) {
- ScopedTestCache test_cache;
+ ASSERT_TRUE(CopyTestCache("remove_load1"));
+ FilePath path = GetCacheFilePath();
- ASSERT_TRUE(CopyTestCache("remove_load1", test_cache.path()));
-
- BlockFiles files(test_cache.path());
+ BlockFiles files(path);
ASSERT_TRUE(files.Init(false));
int used, load;
@@ -218,9 +227,11 @@
// Tests that we add and remove blocks correctly.
TEST_F(DiskCacheTest, AllocationMap) {
- ScopedTestCache test_cache;
+ FilePath path = GetCacheFilePath();
+ ASSERT_TRUE(DeleteCache(path));
+ ASSERT_TRUE(file_util::CreateDirectory(path));
- BlockFiles files(test_cache.path());
+ BlockFiles files(path);
ASSERT_TRUE(files.Init(true));
// Create a bunch of entries.
« no previous file with comments | « net/disk_cache/backend_unittest.cc ('k') | net/disk_cache/disk_cache_test_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698