Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(172)

Unified Diff: chrome/browser/password_manager/password_manager_internals_service_unittest.cc

Issue 262583007: Password manager internals page service: introduction (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments addressed Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/password_manager/password_manager_internals_service_unittest.cc
diff --git a/chrome/browser/password_manager/password_manager_internals_service_unittest.cc b/chrome/browser/password_manager/password_manager_internals_service_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..d83238d9a3fd2b865666cc2624b956f5c99fa00b
--- /dev/null
+++ b/chrome/browser/password_manager/password_manager_internals_service_unittest.cc
@@ -0,0 +1,73 @@
+// Copyright 2014 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/password_manager/password_manager_internals_service.h"
+
+#include "chrome/test/base/testing_profile.h"
+#include "components/keyed_service/content/browser_context_dependency_manager.h"
+#include "components/password_manager/core/browser/password_manager_logger.h"
+#include "testing/gmock/include/gmock/gmock.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace {
+
+const char kTestText[] = "abcd1234";
+
+class MockLogReceiver : public password_manager::PasswordManagerLogger {
+ public:
+ MockLogReceiver() {}
+
+ MOCK_METHOD1(LogSavePasswordProgress, void(const std::string&));
+};
+
+enum ProfileType { NORMAL_PROFILE, INCOGNITO_PROFILE };
+
+scoped_ptr<TestingProfile> CreateProfile(ProfileType type) {
+ TestingProfile::Builder builder;
+ if (type == INCOGNITO_PROFILE)
+ builder.SetIncognito();
+ scoped_ptr<TestingProfile> profile(builder.Build());
+#if !defined(NDEBUG)
+ // During the test cases, the profiles may get created on the same address. To
+ // avoid over-zealous asserts we need to mark the newly created one as "live".
+ // See declaration of MarkBrowserContextLiveForTesting for more details.
+ BrowserContextDependencyManager::GetInstance()
+ ->MarkBrowserContextLiveForTesting(profile.get());
+#endif
+ return profile.Pass();
+}
+
+} // namespace
+
+// When the profile is not incognito, it should be possible to activate the
+// service.
+TEST(PasswordManagerInternalsServiceTest, ServiceActiveNonIncognito) {
+ scoped_ptr<TestingProfile> profile(CreateProfile(NORMAL_PROFILE));
+ PasswordManagerInternalsService* service =
+ PasswordManagerInternalsService::Get(profile.get());
+ testing::StrictMock<MockLogReceiver> receiver;
+
+ ASSERT_TRUE(profile);
+ ASSERT_TRUE(service);
+ EXPECT_EQ(std::string(), service->RegisterReceiver(&receiver));
+
+ // TODO(vabr): Use a MockPasswordManagerClient to detect activity changes.
+ EXPECT_CALL(receiver, LogSavePasswordProgress(kTestText)).Times(1);
+ service->ProcessLog(kTestText);
+
+ service->UnregisterReceiver(&receiver);
+}
+
+// When the browser profile is incognito, it should not be possible to activate
+// the service.
+TEST(PasswordManagerInternalsServiceTest, ServiceNotActiveIncognito) {
+ scoped_ptr<TestingProfile> profile(CreateProfile(INCOGNITO_PROFILE));
+ ASSERT_TRUE(profile);
+ PasswordManagerInternalsService* service =
+ PasswordManagerInternalsService::Get(profile.get());
+ // BrowserContextKeyedBaseFactory::GetBrowserContextToUse should return NULL
+ // for |profile|, because |profile| is incognito. Therefore the returned
+ // |service| should also be NULL.
+ EXPECT_FALSE(service);
+}

Powered by Google App Engine
This is Rietveld 408576698