1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
|
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// Note that this file only tests the basic behavior of the cache counter, as in
// when it counts and when not, when result is nonzero and when not. It does not
// test whether the result of the counting is correct. This is the
// responsibility of a lower layer, and is tested in
// DiskCacheBackendTest.CalculateSizeOfAllEntries in net_unittests.
#include "chrome/browser/browsing_data/counters/cache_counter.h"
#include <memory>
#include "base/functional/bind.h"
#include "base/test/test_future.h"
#include "build/build_config.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/ui_test_utils.h"
#include "components/browsing_data/core/browsing_data_utils.h"
#include "components/browsing_data/core/counters/browsing_data_counter.h"
#include "components/browsing_data/core/pref_names.h"
#include "components/prefs/pref_service.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/storage_partition.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/simple_url_loader_test_helper.h"
#include "net/test/embedded_test_server/default_handlers.h"
#include "net/test/embedded_test_server/embedded_test_server.h"
#include "net/traffic_annotation/network_traffic_annotation_test_helper.h"
#include "services/network/public/cpp/resource_request.h"
#include "services/network/public/cpp/simple_url_loader.h"
#include "services/network/public/mojom/clear_data_filter.mojom.h"
#include "services/network/public/mojom/network_context.mojom.h"
using content::BrowserContext;
using content::BrowserThread;
namespace {
typedef base::test::TestFuture<
std::unique_ptr<browsing_data::BrowsingDataCounter::Result>>
CounterFuture;
class CacheCounterTest : public InProcessBrowserTest {
public:
CacheCounterTest() = default;
void SetUpOnMainThread() override {
SetCacheDeletionPref(true);
SetDeletionPeriodPref(browsing_data::TimePeriod::ALL_TIME);
ASSERT_TRUE(embedded_test_server()->InitializeAndListen());
net::test_server::RegisterDefaultHandlers(embedded_test_server());
embedded_test_server()->StartAcceptingConnections();
}
void SetCacheDeletionPref(bool value) {
browser()->profile()->GetPrefs()->SetBoolean(
browsing_data::prefs::kDeleteCache, value);
}
void SetDeletionPeriodPref(browsing_data::TimePeriod period) {
browser()->profile()->GetPrefs()->SetInteger(
browsing_data::prefs::kDeleteTimePeriod, static_cast<int>(period));
}
void CreateCacheEntry() {
// A cache entry is synthesized by fetching a cacheable URL
// from the test server.
std::unique_ptr<network::ResourceRequest> request =
std::make_unique<network::ResourceRequest>();
request->url = embedded_test_server()->GetURL("/cachetime/yay");
// Populate the Network Isolation Key so that it is cacheable.
url::Origin origin =
url::Origin::Create(embedded_test_server()->base_url());
request->trusted_params = network::ResourceRequest::TrustedParams();
request->trusted_params->isolation_info =
net::IsolationInfo::CreateForInternalRequest(origin);
request->site_for_cookies =
request->trusted_params->isolation_info.site_for_cookies();
content::SimpleURLLoaderTestHelper simple_loader_helper;
std::unique_ptr<network::SimpleURLLoader> simple_loader =
network::SimpleURLLoader::Create(std::move(request),
TRAFFIC_ANNOTATION_FOR_TESTS);
simple_loader->DownloadToStringOfUnboundedSizeUntilCrashAndDie(
browser()
->profile()
->GetDefaultStoragePartition()
->GetURLLoaderFactoryForBrowserProcess()
.get(),
simple_loader_helper.GetCallbackDeprecated());
simple_loader_helper.WaitForCallback();
}
protected:
CounterFuture future;
};
int64_t WaitForCountingResultAndReturnCacheSize(CounterFuture& future) {
std::unique_ptr<browsing_data::BrowsingDataCounter::Result> result =
future.Take();
while (!result->Finished()) {
future.Clear();
result = future.Take();
}
CacheCounter::CacheResult* finished_result =
static_cast<CacheCounter::CacheResult*>(result.get());
return finished_result->cache_size();
}
void WaitForCountingResult(CounterFuture& future) {
std::unique_ptr<browsing_data::BrowsingDataCounter::Result> result =
future.Take();
while (!result->Finished()) {
future.Clear();
result = future.Take();
}
}
// Tests that for the empty cache, the result is zero.
IN_PROC_BROWSER_TEST_F(CacheCounterTest, Empty) {
base::test::TestFuture<void> clean_cache_future;
Profile* profile = browser()->profile();
// Clear the |profile| to ensure that there was no data added from other
// processes unrelated to this test.
browser()
->profile()
->GetDefaultStoragePartition()
->GetNetworkContext()
->ClearHttpCache(base::Time(), base::Time::Max(), nullptr,
clean_cache_future.GetRepeatingCallback());
// This test occasionally flakes, where the cache size is still seen as
// non-zero after deletion. However, the exact value is consistent across all
// flakes observed within the same day, which indicates that there is a
// deterministic process writing into cache but with indeterministic timing,
// so as to cause this test to flake. Wait until the value is 0 as opposed to
// checking it immediately. If this never happens, the test will fail with a
// timeout. Note that this only works if the process that populates the cache
// runs before our deletion - in that case the delay ensures that the deletion
// finishes. If this process happens after deletion, then this doesn't help
// and the test will still fail.
int64_t result_cache_size;
while (true) {
CacheCounter counter(profile);
counter.Init(profile->GetPrefs(),
browsing_data::ClearBrowsingDataTab::ADVANCED,
future.GetRepeatingCallback());
counter.Restart();
result_cache_size = WaitForCountingResultAndReturnCacheSize(future);
if (result_cache_size == 0u) {
break;
}
base::PlatformThread::Sleep(base::Milliseconds(100));
}
EXPECT_EQ(0u, result_cache_size);
}
// Tests that for a non-empty cache, the result is nonzero.
IN_PROC_BROWSER_TEST_F(CacheCounterTest, NonEmpty) {
CreateCacheEntry();
Profile* profile = browser()->profile();
CacheCounter counter(profile);
counter.Init(profile->GetPrefs(),
browsing_data::ClearBrowsingDataTab::ADVANCED,
future.GetRepeatingCallback());
counter.Restart();
EXPECT_NE(0u, WaitForCountingResultAndReturnCacheSize(future));
}
// Tests that after dooming a nonempty cache, the result is zero.
IN_PROC_BROWSER_TEST_F(CacheCounterTest, AfterDoom) {
base::test::TestFuture<void> clean_cache_future;
CreateCacheEntry();
Profile* profile = browser()->profile();
CacheCounter counter(profile);
counter.Init(profile->GetPrefs(),
browsing_data::ClearBrowsingDataTab::ADVANCED,
future.GetRepeatingCallback());
browser()
->profile()
->GetDefaultStoragePartition()
->GetNetworkContext()
->ClearHttpCache(
base::Time(), base::Time::Max(), nullptr,
base::BindOnce(&CacheCounter::Restart, base::Unretained(&counter)));
EXPECT_EQ(0u, WaitForCountingResultAndReturnCacheSize(future));
}
// Tests that the counter starts counting automatically when the deletion
// pref changes to true.
IN_PROC_BROWSER_TEST_F(CacheCounterTest, PrefChanged) {
SetCacheDeletionPref(false);
Profile* profile = browser()->profile();
CacheCounter counter(profile);
counter.Init(profile->GetPrefs(),
browsing_data::ClearBrowsingDataTab::ADVANCED,
future.GetRepeatingCallback());
SetCacheDeletionPref(true);
// Test that changing the pref causes the counter to be restarted. If it
// doesn't, future.Wait() statement will time out. The actual
// value returned by the counter is not important.
ASSERT_TRUE(future.Wait()) << "Init did not call back";
}
// Tests that the counting is restarted when the time period changes.
IN_PROC_BROWSER_TEST_F(CacheCounterTest, PeriodChanged) {
CreateCacheEntry();
Profile* profile = browser()->profile();
CacheCounter counter(profile);
counter.Init(profile->GetPrefs(),
browsing_data::ClearBrowsingDataTab::ADVANCED,
future.GetRepeatingCallback());
SetDeletionPeriodPref(browsing_data::TimePeriod::LAST_HOUR);
WaitForCountingResult(future);
SetDeletionPeriodPref(browsing_data::TimePeriod::LAST_DAY);
WaitForCountingResult(future);
SetDeletionPeriodPref(browsing_data::TimePeriod::LAST_WEEK);
WaitForCountingResult(future);
SetDeletionPeriodPref(browsing_data::TimePeriod::FOUR_WEEKS);
WaitForCountingResult(future);
SetDeletionPeriodPref(browsing_data::TimePeriod::ALL_TIME);
WaitForCountingResult(future);
}
} // namespace
|