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
|
// Copyright 2015 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 <stddef.h>
#include <sstream>
#include "base/command_line.h"
#include "base/macros.h"
#include "base/memory/ptr_util.h"
#include "base/observer_list.h"
#include "base/strings/utf_string_conversions.h"
#include "base/values.h"
#include "chrome/browser/extensions/api/passwords_private/passwords_private_delegate.h"
#include "chrome/browser/extensions/api/passwords_private/passwords_private_delegate_factory.h"
#include "chrome/browser/extensions/api/passwords_private/passwords_private_event_router.h"
#include "chrome/browser/extensions/api/passwords_private/passwords_private_event_router_factory.h"
#include "chrome/browser/extensions/extension_apitest.h"
#include "chrome/common/extensions/api/passwords_private.h"
#include "chrome/test/base/testing_profile.h"
#include "components/keyed_service/core/keyed_service.h"
#include "content/public/test/test_utils.h"
#include "extensions/common/switches.h"
namespace extensions {
namespace {
static const size_t kNumMocks = 3;
static const int kNumCharactersInPassword = 10;
static const char kPlaintextPassword[] = "plaintext";
api::passwords_private::PasswordUiEntry CreateEntry(size_t num) {
api::passwords_private::PasswordUiEntry entry;
std::stringstream ss;
ss << "http://test" << num << ".com";
entry.login_pair.origin_url = ss.str();
ss << "/login";
entry.link_url = ss.str();
ss.clear();
ss << "testName" << num;
entry.login_pair.username = ss.str();
entry.num_characters_in_password = kNumCharactersInPassword;
return entry;
}
api::passwords_private::ExceptionPair CreateException(size_t num) {
api::passwords_private::ExceptionPair exception;
std::stringstream ss;
ss << "http://exception" << num << ".com";
exception.exception_url = ss.str();
ss << "/login";
exception.link_url = ss.str();
return exception;
}
// A test PasswordsPrivateDelegate implementation which uses mock data.
// TestDelegate starts out with kNumMocks mocks of each type (saved password
// and password exception) and removes one mock each time RemoveSavedPassword()
// or RemovePasswordException() is called.
class TestDelegate : public PasswordsPrivateDelegate {
public:
TestDelegate() : profile_(nullptr) {
// Create mock data.
for (size_t i = 0; i < kNumMocks; i++) {
current_entries_.push_back(CreateEntry(i));
current_exceptions_.push_back(CreateException(i));
}
}
~TestDelegate() override {}
void SendSavedPasswordsList() override {
PasswordsPrivateEventRouter* router =
PasswordsPrivateEventRouterFactory::GetForProfile(profile_);
if (router)
router->OnSavedPasswordsListChanged(current_entries_);
}
void GetSavedPasswordsList(const UiEntriesCallback& callback) override {
callback.Run(current_entries_);
}
void SendPasswordExceptionsList() override {
PasswordsPrivateEventRouter* router =
PasswordsPrivateEventRouterFactory::GetForProfile(profile_);
if (router)
router->OnPasswordExceptionsListChanged(current_exceptions_);
}
void GetPasswordExceptionsList(
const ExceptionPairsCallback& callback) override {
callback.Run(current_exceptions_);
}
void RemoveSavedPassword(
const std::string& origin_url, const std::string& username) override {
if (current_entries_.empty())
return;
// Since this is just mock data, remove the first entry regardless of
// the data contained.
current_entries_.erase(current_entries_.begin());
SendSavedPasswordsList();
}
void RemovePasswordException(const std::string& exception_url) override {
if (current_exceptions_.empty())
return;
// Since this is just mock data, remove the first entry regardless of
// the data contained.
current_exceptions_.erase(current_exceptions_.begin());
SendPasswordExceptionsList();
}
void RequestShowPassword(const std::string& origin_url,
const std::string& username,
content::WebContents* web_contents) override {
// Return a mocked password value.
std::string plaintext_password(kPlaintextPassword);
PasswordsPrivateEventRouter* router =
PasswordsPrivateEventRouterFactory::GetForProfile(profile_);
if (router) {
router->OnPlaintextPasswordFetched(origin_url, username,
plaintext_password);
}
}
void SetProfile(Profile* profile) { profile_ = profile; }
private:
// The current list of entries/exceptions. Cached here so that when new
// observers are added, this delegate can send the current lists without
// having to request them from |password_manager_presenter_| again.
std::vector<api::passwords_private::PasswordUiEntry> current_entries_;
std::vector<api::passwords_private::ExceptionPair> current_exceptions_;
Profile* profile_;
};
class PasswordsPrivateApiTest : public ExtensionApiTest {
public:
PasswordsPrivateApiTest() {
if (!s_test_delegate_) {
s_test_delegate_ = new TestDelegate();
}
}
~PasswordsPrivateApiTest() override {}
static std::unique_ptr<KeyedService> GetPasswordsPrivateDelegate(
content::BrowserContext* profile) {
CHECK(s_test_delegate_);
return base::WrapUnique(s_test_delegate_);
}
void SetUpCommandLine(base::CommandLine* command_line) override {
ExtensionApiTest::SetUpCommandLine(command_line);
}
void SetUp() override {
ExtensionApiTest::SetUp();
}
void SetUpOnMainThread() override {
ExtensionApiTest::SetUpOnMainThread();
PasswordsPrivateDelegateFactory::GetInstance()->SetTestingFactory(
profile(), &PasswordsPrivateApiTest::GetPasswordsPrivateDelegate);
s_test_delegate_->SetProfile(profile());
content::RunAllPendingInMessageLoop();
}
protected:
bool RunPasswordsSubtest(const std::string& subtest) {
return RunExtensionSubtest("passwords_private",
"main.html?" + subtest,
kFlagLoadAsComponent);
}
private:
static TestDelegate* s_test_delegate_;
DISALLOW_COPY_AND_ASSIGN(PasswordsPrivateApiTest);
};
// static
TestDelegate* PasswordsPrivateApiTest::s_test_delegate_ = nullptr;
} // namespace
IN_PROC_BROWSER_TEST_F(PasswordsPrivateApiTest, RemoveSavedPassword) {
EXPECT_TRUE(RunPasswordsSubtest("removeSavedPassword")) << message_;
}
IN_PROC_BROWSER_TEST_F(PasswordsPrivateApiTest, RemovePasswordException) {
EXPECT_TRUE(RunPasswordsSubtest("removePasswordException")) << message_;
}
IN_PROC_BROWSER_TEST_F(PasswordsPrivateApiTest, RequestPlaintextPassword) {
EXPECT_TRUE(RunPasswordsSubtest("requestPlaintextPassword")) << message_;
}
IN_PROC_BROWSER_TEST_F(PasswordsPrivateApiTest, GetSavedPasswordList) {
EXPECT_TRUE(RunPasswordsSubtest("getSavedPasswordList")) << message_;
}
IN_PROC_BROWSER_TEST_F(PasswordsPrivateApiTest, GetPasswordExceptionList) {
EXPECT_TRUE(RunPasswordsSubtest("getPasswordExceptionList")) << message_;
}
} // namespace extensions
|