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

Unified Diff: net/disk_cache/disk_cache_test_util.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/disk_cache_test_util.h ('k') | net/disk_cache/mapped_file_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/disk_cache_test_util.cc
===================================================================
--- net/disk_cache/disk_cache_test_util.cc (revision 60165)
+++ net/disk_cache/disk_cache_test_util.cc (working copy)
@@ -16,6 +16,20 @@
using base::Time;
using base::TimeDelta;
+namespace {
+
+FilePath BuildCachePath(const std::string& name) {
+ FilePath path;
+ PathService::Get(base::DIR_TEMP, &path); // Ignore return value;
+ path = path.AppendASCII(name);
+ if (!file_util::PathExists(path))
+ file_util::CreateDirectory(path);
+
+ return path;
+}
+
+} // namespace.
+
std::string GenerateKey(bool same_length) {
char key[200];
CacheTestFillBuffer(key, sizeof(key), same_length);
@@ -41,6 +55,10 @@
buffer[0] = 'g';
}
+FilePath GetCacheFilePath() {
+ return BuildCachePath("cache_test");
+}
+
bool CreateCacheTestFile(const FilePath& name) {
int flags = base::PLATFORM_FILE_CREATE_ALWAYS |
base::PLATFORM_FILE_READ |
@@ -60,7 +78,7 @@
return true;
}
-bool CopyTestCache(const std::string& name, const FilePath& destination) {
+bool CopyTestCache(const std::string& name) {
FilePath path;
PathService::Get(base::DIR_SOURCE_ROOT, &path);
path = path.AppendASCII("net");
@@ -68,9 +86,10 @@
path = path.AppendASCII("cache_tests");
path = path.AppendASCII(name);
- if (!DeleteCache(destination))
+ FilePath dest = GetCacheFilePath();
+ if (!DeleteCache(dest))
return false;
- return file_util::CopyDirectory(path, destination, false);
+ return file_util::CopyDirectory(path, dest, false);
}
bool CheckCacheIntegrity(const FilePath& path, bool new_eviction) {
@@ -86,11 +105,19 @@
return cache->SelfCheck() >= 0;
}
-ScopedTestCache::ScopedTestCache() {
- temp_dir_.CreateUniqueTempDir();
+ScopedTestCache::ScopedTestCache() : path_(GetCacheFilePath()) {
+ bool result = DeleteCache(path_);
+ DCHECK(result);
}
+ScopedTestCache::ScopedTestCache(const std::string& name)
+ : path_(BuildCachePath(name)) {
+ bool result = DeleteCache(path_);
+ DCHECK(result);
+}
+
ScopedTestCache::~ScopedTestCache() {
+ file_util::Delete(path(), true);
}
// -----------------------------------------------------------------------
« no previous file with comments | « net/disk_cache/disk_cache_test_util.h ('k') | net/disk_cache/mapped_file_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698