blob: 63a79d7e23a0581138fd3f912e0966f64e52f624 [file] [log] [blame]
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_SUBRESOURCE_FILTER_CONTENT_BROWSER_FAKE_SAFE_BROWSING_DATABASE_MANAGER_H_
#define COMPONENTS_SUBRESOURCE_FILTER_CONTENT_BROWSER_FAKE_SAFE_BROWSING_DATABASE_MANAGER_H_
#include <map>
#include <set>
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "components/safe_browsing/core/browser/db/test_database_manager.h"
#include "services/network/public/mojom/fetch_api.mojom.h"
class GURL;
// Database manager that allows any URL to be configured as blocklisted for
// testing.
class FakeSafeBrowsingDatabaseManager
: public safe_browsing::TestSafeBrowsingDatabaseManager {
public:
FakeSafeBrowsingDatabaseManager();
FakeSafeBrowsingDatabaseManager(const FakeSafeBrowsingDatabaseManager&) =
delete;
FakeSafeBrowsingDatabaseManager& operator=(
const FakeSafeBrowsingDatabaseManager&) = delete;
void AddBlocklistedUrl(const GURL& url,
safe_browsing::SBThreatType threat_type,
const safe_browsing::ThreatMetadata& metadata);
void AddBlocklistedUrl(const GURL& url,
safe_browsing::SBThreatType threat_type,
safe_browsing::ThreatPatternType pattern_type =
safe_browsing::ThreatPatternType::NONE);
void RemoveBlocklistedUrl(const GURL& url);
void RemoveAllBlocklistedUrls();
void SimulateTimeout();
// If set, will synchronously fail from CheckUrlForSubresourceFilter rather
// than posting a task to fail if the URL does not match the blocklist.
void set_synchronous_failure() { synchronous_failure_ = true; }
protected:
~FakeSafeBrowsingDatabaseManager() override;
// safe_browsing::TestSafeBrowsingDatabaseManager:
bool CheckUrlForSubresourceFilter(const GURL& url, Client* client) override;
bool CheckResourceUrl(const GURL& url, Client* client) override;
void CancelCheck(Client* client) override;
bool CanCheckRequestDestination(
network::mojom::RequestDestination /* request_destination */)
const override;
safe_browsing::ThreatSource GetBrowseUrlThreatSource(
safe_browsing::CheckBrowseUrlType check_type) const override;
safe_browsing::ThreatSource GetNonBrowseUrlThreatSource() const override;
bool CheckExtensionIDs(const std::set<std::string>& extension_ids,
Client* client) override;
private:
void OnCheckUrlForSubresourceFilterComplete(base::WeakPtr<Client> client,
const GURL& url);
std::set<raw_ptr<Client, SetExperimental>> checks_;
std::map<
GURL,
std::pair<safe_browsing::SBThreatType, safe_browsing::ThreatMetadata>>
url_to_threat_type_;
bool simulate_timeout_ = false;
bool synchronous_failure_ = false;
base::WeakPtrFactory<FakeSafeBrowsingDatabaseManager> weak_factory_{this};
};
#endif // COMPONENTS_SUBRESOURCE_FILTER_CONTENT_BROWSER_FAKE_SAFE_BROWSING_DATABASE_MANAGER_H_