OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 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 "base/message_loop.h" |
| 6 #include "chrome/browser/chromeos/cros/mock_cryptohome_library.h" |
| 7 #include "chrome/browser/chromeos/cros/cros_in_process_browser_test.h" |
| 8 #include "chrome/browser/chromeos/cros/mock_login_library.h" |
| 9 #include "chrome/browser/chromeos/login/login_manager_view.h" |
| 10 #include "chrome/browser/chromeos/login/login_utils.h" |
| 11 #include "chrome/browser/chromeos/login/wizard_controller.h" |
| 12 #include "chrome/browser/chromeos/login/wizard_screen.h" |
| 13 #include "chrome/common/chrome_switches.h" |
| 14 #include "testing/gtest/include/gtest/gtest.h" |
| 15 #include "testing/gmock/include/gmock/gmock.h" |
| 16 |
| 17 namespace chromeos { |
| 18 |
| 19 using ::testing::AnyNumber; |
| 20 using ::testing::Return; |
| 21 |
| 22 const char kUsername[] = "test_user@gmail.com"; |
| 23 const char kPassword[] = "test_password"; |
| 24 |
| 25 class MockAuthenticator : public Authenticator { |
| 26 public: |
| 27 explicit MockAuthenticator(LoginStatusConsumer* consumer, |
| 28 const std::string& expected_username, |
| 29 const std::string& expected_password) |
| 30 : Authenticator(consumer), |
| 31 expected_username_(expected_username), |
| 32 expected_password_(expected_password) { |
| 33 } |
| 34 |
| 35 // Returns true after calling OnLoginSuccess(). |
| 36 virtual bool Authenticate(const std::string& username, |
| 37 const std::string& password) { |
| 38 EXPECT_EQ(expected_username_, username); |
| 39 EXPECT_EQ(expected_password_, password); |
| 40 consumer_->OnLoginSuccess(username, std::vector<std::string>()); |
| 41 return true; |
| 42 } |
| 43 |
| 44 private: |
| 45 std::string expected_username_; |
| 46 std::string expected_password_; |
| 47 |
| 48 DISALLOW_COPY_AND_ASSIGN(MockAuthenticator); |
| 49 }; |
| 50 |
| 51 class MockLoginUtils : public LoginUtils { |
| 52 public: |
| 53 explicit MockLoginUtils(const std::string& expected_username, |
| 54 const std::string& expected_password) |
| 55 : expected_username_(expected_username), |
| 56 expected_password_(expected_password) { |
| 57 } |
| 58 |
| 59 virtual void CompleteLogin(const std::string& username, |
| 60 std::vector<std::string> cookies) { |
| 61 EXPECT_EQ(expected_username_, username); |
| 62 } |
| 63 |
| 64 virtual Authenticator* CreateAuthenticator(LoginStatusConsumer* consumer) { |
| 65 return new MockAuthenticator( |
| 66 consumer, expected_username_, expected_password_); |
| 67 } |
| 68 |
| 69 private: |
| 70 std::string expected_username_; |
| 71 std::string expected_password_; |
| 72 |
| 73 DISALLOW_COPY_AND_ASSIGN(MockLoginUtils); |
| 74 }; |
| 75 |
| 76 class LoginManagerViewTest : public CrosInProcessBrowserTest { |
| 77 public: |
| 78 LoginManagerViewTest() { |
| 79 } |
| 80 |
| 81 protected: |
| 82 virtual void SetUpCommandLine(CommandLine* command_line) { |
| 83 command_line->AppendSwitch(switches::kLoginManager); |
| 84 command_line->AppendSwitchWithValue(switches::kLoginScreen, |
| 85 WizardController::kLoginScreenName); |
| 86 } |
| 87 |
| 88 virtual Browser* CreateBrowser(Profile* profile) { |
| 89 // Don't need to create separate browser window for OOBE wizard. |
| 90 return NULL; |
| 91 } |
| 92 |
| 93 virtual void SetUpInProcessBrowserTestFixture() { |
| 94 CrosInProcessBrowserTest::SetUpInProcessBrowserTestFixture(); |
| 95 |
| 96 chromeos::CrosLibrary::TestApi* test_api = |
| 97 chromeos::CrosLibrary::Get()->GetTestApi(); |
| 98 mock_login_library_ = new MockLoginLibrary(); |
| 99 EXPECT_CALL(*mock_login_library_, EmitLoginPromptReady()) |
| 100 .Times(1); |
| 101 test_api->SetLoginLibrary(mock_login_library_); |
| 102 |
| 103 mock_cryptohome_library_ = new MockCryptohomeLibrary(); |
| 104 EXPECT_CALL(*mock_cryptohome_library_, IsMounted()) |
| 105 .Times(AnyNumber()) |
| 106 .WillRepeatedly((Return(true))); |
| 107 test_api->SetCryptohomeLibrary(mock_cryptohome_library_); |
| 108 |
| 109 LoginUtils::Set(new MockLoginUtils(kUsername, kPassword)); |
| 110 } |
| 111 |
| 112 virtual void TearDownInProcessBrowserTestFixture() { |
| 113 CrosInProcessBrowserTest::TearDownInProcessBrowserTestFixture(); |
| 114 chromeos::CrosLibrary::TestApi* test_api = |
| 115 chromeos::CrosLibrary::Get()->GetTestApi(); |
| 116 test_api->SetLoginLibrary(NULL); |
| 117 } |
| 118 |
| 119 private: |
| 120 MockLoginLibrary* mock_login_library_; |
| 121 MockCryptohomeLibrary* mock_cryptohome_library_; |
| 122 |
| 123 DISALLOW_COPY_AND_ASSIGN(LoginManagerViewTest); |
| 124 }; |
| 125 |
| 126 IN_PROC_BROWSER_TEST_F(LoginManagerViewTest, TestBasic) { |
| 127 WizardController* controller = WizardController::default_controller(); |
| 128 ASSERT_TRUE(controller != NULL); |
| 129 ASSERT_EQ(controller->current_screen(), controller->GetLoginScreen()); |
| 130 LoginManagerView* login = controller->GetLoginScreen()->view(); |
| 131 login->SetUsername(kUsername); |
| 132 login->SetPassword(kPassword); |
| 133 login->Login(); |
| 134 |
| 135 // End the message loop to quit the test. |
| 136 MessageLoop::current()->Quit(); |
| 137 } |
| 138 |
| 139 } // namespace chromeos |
OLD | NEW |