OLD | NEW |
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 #ifndef NET_DISK_CACHE_DISK_CACHE_TEST_BASE_H_ | 5 #ifndef NET_DISK_CACHE_DISK_CACHE_TEST_BASE_H_ |
6 #define NET_DISK_CACHE_DISK_CACHE_TEST_BASE_H_ | 6 #define NET_DISK_CACHE_DISK_CACHE_TEST_BASE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/thread.h" | 10 #include "base/thread.h" |
11 #include "net/base/cache_type.h" | 11 #include "net/base/cache_type.h" |
12 #include "net/disk_cache/disk_cache_test_util.h" | |
13 #include "testing/gtest/include/gtest/gtest.h" | 12 #include "testing/gtest/include/gtest/gtest.h" |
14 #include "testing/platform_test.h" | 13 #include "testing/platform_test.h" |
15 | 14 |
16 class FilePath; | 15 class FilePath; |
17 | 16 |
18 namespace net { | 17 namespace net { |
19 | 18 |
20 class IOBuffer; | 19 class IOBuffer; |
21 | 20 |
22 } // namespace net | 21 } // namespace net |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 } | 85 } |
87 | 86 |
88 void UseCurrentThread() { | 87 void UseCurrentThread() { |
89 use_current_thread_ = true; | 88 use_current_thread_ = true; |
90 } | 89 } |
91 | 90 |
92 void SetCacheType(net::CacheType type) { | 91 void SetCacheType(net::CacheType type) { |
93 type_ = type; | 92 type_ = type; |
94 } | 93 } |
95 | 94 |
96 FilePath path() const { | |
97 return test_cache_.path(); | |
98 } | |
99 | |
100 // Utility methods to access the cache and wait for each operation to finish. | 95 // Utility methods to access the cache and wait for each operation to finish. |
101 int OpenEntry(const std::string& key, disk_cache::Entry** entry); | 96 int OpenEntry(const std::string& key, disk_cache::Entry** entry); |
102 int CreateEntry(const std::string& key, disk_cache::Entry** entry); | 97 int CreateEntry(const std::string& key, disk_cache::Entry** entry); |
103 int DoomEntry(const std::string& key); | 98 int DoomEntry(const std::string& key); |
104 int DoomAllEntries(); | 99 int DoomAllEntries(); |
105 int DoomEntriesBetween(const base::Time initial_time, | 100 int DoomEntriesBetween(const base::Time initial_time, |
106 const base::Time end_time); | 101 const base::Time end_time); |
107 int DoomEntriesSince(const base::Time initial_time); | 102 int DoomEntriesSince(const base::Time initial_time); |
108 int OpenNextEntry(void** iter, disk_cache::Entry** next_entry); | 103 int OpenNextEntry(void** iter, disk_cache::Entry** next_entry); |
109 void FlushQueueForTest(); | 104 void FlushQueueForTest(); |
(...skipping 24 matching lines...) Expand all Loading... |
134 bool integrity_; | 129 bool integrity_; |
135 bool use_current_thread_; | 130 bool use_current_thread_; |
136 // This is intentionally left uninitialized, to be used by any test. | 131 // This is intentionally left uninitialized, to be used by any test. |
137 bool success_; | 132 bool success_; |
138 | 133 |
139 private: | 134 private: |
140 void InitMemoryCache(); | 135 void InitMemoryCache(); |
141 void InitDiskCache(); | 136 void InitDiskCache(); |
142 void InitDiskCacheImpl(const FilePath& path); | 137 void InitDiskCacheImpl(const FilePath& path); |
143 | 138 |
144 ScopedTestCache test_cache_; | |
145 base::Thread cache_thread_; | 139 base::Thread cache_thread_; |
146 | |
147 DISALLOW_COPY_AND_ASSIGN(DiskCacheTestWithCache); | 140 DISALLOW_COPY_AND_ASSIGN(DiskCacheTestWithCache); |
148 }; | 141 }; |
149 | 142 |
150 #endif // NET_DISK_CACHE_DISK_CACHE_TEST_BASE_H_ | 143 #endif // NET_DISK_CACHE_DISK_CACHE_TEST_BASE_H_ |
OLD | NEW |