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

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: Also tests use the right namespace 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
« no previous file with comments | « no previous file | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..0903255b9929772e1cbdd9a592740125dbe6a61f
--- /dev/null
+++ b/chrome/browser/password_manager/password_manager_internals_service_unittest.cc
@@ -0,0 +1,79 @@
+// 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 "components/password_manager/core/browser/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/content/browser/password_manager_internals_service_factory.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"
+
+using password_manager::PasswordManagerInternalsService;
+using password_manager::PasswordManagerInternalsServiceFactory;
+
+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 =
+ PasswordManagerInternalsServiceFactory::GetForBrowserContext(
+ 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 =
+ PasswordManagerInternalsServiceFactory::GetForBrowserContext(
+ profile.get());
+ // BrowserContextKeyedBaseFactory::GetBrowserContextToUse should return NULL
+ // for |profile|, because |profile| is incognito. Therefore the returned
+ // |service| should also be NULL.
+ EXPECT_FALSE(service);
+}
« no previous file with comments | « no previous file | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698