blob: ef59333ee2b28cb03d2c3e021fc08f0439c0626c [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/browsing_data/mock_browsing_data_indexed_db_helper.h"
#include "base/callback.h"
#include "base/logging.h"
#include "base/stl_util.h"
#include "chrome/browser/profiles/profile.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/storage_partition.h"
#include "content/public/browser/storage_usage_info.h"
#include "testing/gtest/include/gtest/gtest.h"
MockBrowsingDataIndexedDBHelper::MockBrowsingDataIndexedDBHelper(
Profile* profile)
: BrowsingDataIndexedDBHelper(
content::BrowserContext::GetDefaultStoragePartition(profile)->
GetIndexedDBContext()) {
}
MockBrowsingDataIndexedDBHelper::~MockBrowsingDataIndexedDBHelper() {
}
void MockBrowsingDataIndexedDBHelper::StartFetching(FetchCallback callback) {
ASSERT_FALSE(callback.is_null());
ASSERT_TRUE(callback_.is_null());
callback_ = std::move(callback);
}
void MockBrowsingDataIndexedDBHelper::DeleteIndexedDB(
const GURL& origin) {
ASSERT_TRUE(base::ContainsKey(origins_, origin));
origins_[origin] = false;
}
void MockBrowsingDataIndexedDBHelper::AddIndexedDBSamples() {
const GURL kOrigin1("http://idbhost1:1/");
const GURL kOrigin2("http://idbhost2:2/");
content::StorageUsageInfo info1(url::Origin::Create(kOrigin1), 1,
base::Time());
response_.push_back(info1);
origins_[kOrigin1] = true;
content::StorageUsageInfo info2(url::Origin::Create(kOrigin2), 2,
base::Time());
response_.push_back(info2);
origins_[kOrigin2] = true;
}
void MockBrowsingDataIndexedDBHelper::Notify() {
std::move(callback_).Run(response_);
}
void MockBrowsingDataIndexedDBHelper::Reset() {
for (auto& pair : origins_)
pair.second = true;
}
bool MockBrowsingDataIndexedDBHelper::AllDeleted() {
for (const auto& pair : origins_) {
if (pair.second)
return false;
}
return true;
}