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
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/extensions/test_blocklist.h"
#include <set>
#include "base/containers/contains.h"
#include "base/functional/bind.h"
#include "base/run_loop.h"
#include "base/task/single_thread_task_runner.h"
#include "chrome/browser/extensions/blocklist.h"
#include "chrome/browser/extensions/blocklist_state_fetcher.h"
#include "chrome/browser/extensions/fake_safe_browsing_database_manager.h"
namespace extensions {
namespace {
void Assign(BlocklistState* out, BlocklistState in) {
*out = in;
}
} // namespace
BlocklistStateFetcherMock::BlocklistStateFetcherMock() : request_count_(0) {}
BlocklistStateFetcherMock::~BlocklistStateFetcherMock() = default;
void BlocklistStateFetcherMock::Request(const std::string& id,
RequestCallback callback) {
++request_count_;
BlocklistState result = NOT_BLOCKLISTED;
if (base::Contains(states_, id))
result = states_[id];
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, base::BindOnce(std::move(callback), result));
}
void BlocklistStateFetcherMock::SetState(const std::string& id,
BlocklistState state) {
states_[id] = state;
}
void BlocklistStateFetcherMock::Clear() {
states_.clear();
}
TestBlocklist::TestBlocklist()
: blocklist_(nullptr),
blocklist_db_(new FakeSafeBrowsingDatabaseManager(true)),
scoped_blocklist_db_(blocklist_db_) {}
TestBlocklist::TestBlocklist(Blocklist* blocklist)
: blocklist_(nullptr),
blocklist_db_(new FakeSafeBrowsingDatabaseManager(true)),
scoped_blocklist_db_(blocklist_db_) {
Attach(blocklist);
}
TestBlocklist::~TestBlocklist() {
Detach();
}
void TestBlocklist::Attach(Blocklist* blocklist) {
if (blocklist_)
Detach();
blocklist_ = blocklist;
blocklist_->SetBlocklistStateFetcherForTest(&state_fetcher_mock_);
}
void TestBlocklist::Detach() {
blocklist_->ResetBlocklistStateFetcherForTest();
blocklist_->ResetDatabaseUpdatedListenerForTest();
}
void TestBlocklist::SetBlocklistState(const std::string& extension_id,
BlocklistState state,
bool notify) {
state_fetcher_mock_.SetState(extension_id, state);
switch (state) {
case NOT_BLOCKLISTED:
blocklist_db_->RemoveUnsafe(extension_id);
break;
case BLOCKLISTED_MALWARE:
case BLOCKLISTED_SECURITY_VULNERABILITY:
case BLOCKLISTED_CWS_POLICY_VIOLATION:
case BLOCKLISTED_POTENTIALLY_UNWANTED:
blocklist_db_->AddUnsafe(extension_id);
break;
default:
break;
}
if (notify)
blocklist_db_->NotifyUpdate();
}
void TestBlocklist::Clear(bool notify) {
state_fetcher_mock_.Clear();
blocklist_db_->ClearUnsafe();
if (notify)
blocklist_db_->NotifyUpdate();
}
BlocklistState TestBlocklist::GetBlocklistState(
const std::string& extension_id) {
BlocklistState blocklist_state;
blocklist_->IsBlocklisted(extension_id,
base::BindOnce(&Assign, &blocklist_state));
base::RunLoop().RunUntilIdle();
return blocklist_state;
}
void TestBlocklist::DisableSafeBrowsing() {
blocklist_db_->Disable();
}
void TestBlocklist::EnableSafeBrowsing() {
blocklist_db_->Enable();
}
void TestBlocklist::NotifyUpdate() {
blocklist_db_->NotifyUpdate();
}
} // namespace extensions
|