OLD | NEW |
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 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 // Note that this file only tests the basic behavior of the cache counter, as in | 5 // Note that this file only tests the basic behavior of the cache counter, as in |
6 // when it counts and when not, when result is nonzero and when not. It does not | 6 // when it counts and when not, when result is nonzero and when not. It does not |
7 // test whether the result of the counting is correct. This is the | 7 // test whether the result of the counting is correct. This is the |
8 // responsibility of a lower layer, and is tested in | 8 // responsibility of a lower layer, and is tested in |
9 // DiskCacheBackendTest.CalculateSizeOfAllEntries in net_unittests. | 9 // DiskCacheBackendTest.CalculateSizeOfAllEntries in net_unittests. |
10 | 10 |
11 #include "chrome/browser/browsing_data/cache_counter.h" | 11 #include "chrome/browser/browsing_data/cache_counter.h" |
12 | 12 |
13 #include "base/run_loop.h" | 13 #include "base/run_loop.h" |
14 #include "chrome/browser/profiles/profile.h" | 14 #include "chrome/browser/profiles/profile.h" |
15 #include "chrome/browser/ui/browser.h" | 15 #include "chrome/browser/ui/browser.h" |
16 #include "chrome/test/base/in_process_browser_test.h" | 16 #include "chrome/test/base/in_process_browser_test.h" |
17 #include "chrome/test/base/ui_test_utils.h" | 17 #include "chrome/test/base/ui_test_utils.h" |
18 #include "components/browsing_data/content/storage_partition_http_cache_data_rem
over.h" | |
19 #include "components/browsing_data/core/browsing_data_utils.h" | 18 #include "components/browsing_data/core/browsing_data_utils.h" |
20 #include "components/browsing_data/core/pref_names.h" | 19 #include "components/browsing_data/core/pref_names.h" |
21 #include "components/prefs/pref_service.h" | 20 #include "components/prefs/pref_service.h" |
22 #include "content/public/browser/storage_partition.h" | 21 #include "content/public/browser/storage_partition.h" |
23 #include "net/disk_cache/disk_cache.h" | 22 #include "net/disk_cache/disk_cache.h" |
24 #include "net/http/http_cache.h" | 23 #include "net/http/http_cache.h" |
25 #include "net/url_request/url_request_context.h" | 24 #include "net/url_request/url_request_context.h" |
26 #include "net/url_request/url_request_context_getter.h" | 25 #include "net/url_request/url_request_context_getter.h" |
27 | 26 |
28 using content::BrowserContext; | 27 using content::BrowserContext; |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 // Tests that after dooming a nonempty cache, the result is zero. | 209 // Tests that after dooming a nonempty cache, the result is zero. |
211 IN_PROC_BROWSER_TEST_F(CacheCounterTest, AfterDoom) { | 210 IN_PROC_BROWSER_TEST_F(CacheCounterTest, AfterDoom) { |
212 CreateCacheEntry(); | 211 CreateCacheEntry(); |
213 | 212 |
214 Profile* profile = browser()->profile(); | 213 Profile* profile = browser()->profile(); |
215 CacheCounter counter(profile); | 214 CacheCounter counter(profile); |
216 counter.Init( | 215 counter.Init( |
217 profile->GetPrefs(), browsing_data::ClearBrowsingDataTab::ADVANCED, | 216 profile->GetPrefs(), browsing_data::ClearBrowsingDataTab::ADVANCED, |
218 base::Bind(&CacheCounterTest::CountingCallback, base::Unretained(this))); | 217 base::Bind(&CacheCounterTest::CountingCallback, base::Unretained(this))); |
219 | 218 |
220 browsing_data::StoragePartitionHttpCacheDataRemover::CreateForRange( | 219 content::BrowserContext::GetDefaultStoragePartition(browser()->profile()) |
221 content::BrowserContext::GetDefaultStoragePartition(browser()->profile()), | 220 ->ClearHttpAndMediaCaches( |
222 base::Time(), | 221 base::Time(), base::Time::Max(), base::Callback<bool(const GURL&)>(), |
223 base::Time::Max())->Remove( | 222 base::Bind(&CacheCounter::Restart, base::Unretained(&counter))); |
224 base::Bind(&CacheCounter::Restart, | |
225 base::Unretained(&counter))); | |
226 | 223 |
227 WaitForIOThread(); | 224 WaitForIOThread(); |
228 EXPECT_EQ(0u, GetResult()); | 225 EXPECT_EQ(0u, GetResult()); |
229 } | 226 } |
230 | 227 |
231 // Tests that the counter starts counting automatically when the deletion | 228 // Tests that the counter starts counting automatically when the deletion |
232 // pref changes to true. | 229 // pref changes to true. |
233 IN_PROC_BROWSER_TEST_F(CacheCounterTest, PrefChanged) { | 230 IN_PROC_BROWSER_TEST_F(CacheCounterTest, PrefChanged) { |
234 SetCacheDeletionPref(false); | 231 SetCacheDeletionPref(false); |
235 | 232 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 WaitForIOThread(); | 267 WaitForIOThread(); |
271 EXPECT_EQ(result, GetResult()); | 268 EXPECT_EQ(result, GetResult()); |
272 | 269 |
273 SetDeletionPeriodPref(browsing_data::TimePeriod::ALL_TIME); | 270 SetDeletionPeriodPref(browsing_data::TimePeriod::ALL_TIME); |
274 WaitForIOThread(); | 271 WaitForIOThread(); |
275 EXPECT_EQ(result, GetResult()); | 272 EXPECT_EQ(result, GetResult()); |
276 EXPECT_FALSE(IsUpperLimit()); | 273 EXPECT_FALSE(IsUpperLimit()); |
277 } | 274 } |
278 | 275 |
279 } // namespace | 276 } // namespace |
OLD | NEW |