| OLD | NEW |
| (Empty) |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/chrome_notification_types.h" | |
| 6 #include "chrome/browser/chromeos/login/lock/screen_locker.h" | |
| 7 #include "chrome/browser/chromeos/login/users/user.h" | |
| 8 #include "chrome/browser/extensions/extension_apitest.h" | |
| 9 #include "chrome/browser/signin/signin_manager_factory.h" | |
| 10 #include "components/signin/core/browser/signin_manager.h" | |
| 11 #include "content/public/browser/notification_service.h" | |
| 12 #include "extensions/browser/api/test/test_api.h" | |
| 13 | |
| 14 namespace extensions { | |
| 15 | |
| 16 namespace { | |
| 17 | |
| 18 const char kAttemptClickAuthMessage[] = "attemptClickAuth"; | |
| 19 | |
| 20 } // namespace | |
| 21 | |
| 22 class ScreenlockPrivateApiTest : public ExtensionApiTest, | |
| 23 public content::NotificationObserver { | |
| 24 public: | |
| 25 ScreenlockPrivateApiTest() {} | |
| 26 | |
| 27 virtual ~ScreenlockPrivateApiTest() {} | |
| 28 | |
| 29 // ExtensionApiTest | |
| 30 virtual void SetUpOnMainThread() OVERRIDE { | |
| 31 SigninManagerFactory::GetForProfile(profile()) | |
| 32 ->SetAuthenticatedUsername("testuser@gmail.com"); | |
| 33 ExtensionApiTest::SetUpOnMainThread(); | |
| 34 } | |
| 35 | |
| 36 protected: | |
| 37 chromeos::ScreenLocker* GetScreenLocker() { | |
| 38 chromeos::ScreenLocker* locker = | |
| 39 chromeos::ScreenLocker::default_screen_locker(); | |
| 40 EXPECT_TRUE(locker); | |
| 41 return locker; | |
| 42 } | |
| 43 | |
| 44 // ExtensionApiTest override: | |
| 45 virtual void RunTestOnMainThreadLoop() OVERRIDE { | |
| 46 registrar_.Add(this, | |
| 47 chrome::NOTIFICATION_EXTENSION_TEST_MESSAGE, | |
| 48 content::NotificationService::AllSources()); | |
| 49 ExtensionApiTest::RunTestOnMainThreadLoop(); | |
| 50 registrar_.RemoveAll(); | |
| 51 } | |
| 52 | |
| 53 // content::NotificationObserver override: | |
| 54 virtual void Observe(int type, | |
| 55 const content::NotificationSource& source, | |
| 56 const content::NotificationDetails& details) OVERRIDE { | |
| 57 const std::string& content = *content::Details<std::string>(details).ptr(); | |
| 58 if (content == kAttemptClickAuthMessage) { | |
| 59 chromeos::ScreenLocker* locker = GetScreenLocker(); | |
| 60 const chromeos::UserList& users = locker->users(); | |
| 61 EXPECT_GE(1u, users.size()); | |
| 62 GetScreenLocker()->Authenticate(chromeos::UserContext(users[0]->email())); | |
| 63 } | |
| 64 } | |
| 65 | |
| 66 content::NotificationRegistrar registrar_; | |
| 67 }; | |
| 68 | |
| 69 IN_PROC_BROWSER_TEST_F(ScreenlockPrivateApiTest, LockUnlock) { | |
| 70 ASSERT_TRUE(RunExtensionTest("screenlock_private/lock_unlock")) << message_; | |
| 71 } | |
| 72 | |
| 73 IN_PROC_BROWSER_TEST_F(ScreenlockPrivateApiTest, AuthType) { | |
| 74 ASSERT_TRUE(RunExtensionTest("screenlock_private/auth_type")) << message_; | |
| 75 } | |
| 76 | |
| 77 } // namespace extensions | |
| OLD | NEW |