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
|
// Copyright (c) 2012 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 <cstdlib>
#include <cstring>
#include "base/memory/scoped_ptr.h"
#include "base/message_loop.h"
#include "base/values.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/chromeos/cros/cros_library.h"
#include "chrome/browser/chromeos/cros/mock_cert_library.h"
#include "chrome/browser/chromeos/cros_settings.h"
#include "chrome/browser/chromeos/cros_settings_names.h"
#include "chrome/browser/chromeos/cros_settings_provider.h"
#include "chrome/browser/chromeos/login/user.h"
#include "chrome/browser/chromeos/login/user_manager.h"
#include "chrome/browser/chromeos/login/user_manager_impl.h"
#include "chrome/browser/chromeos/stub_cros_settings_provider.h"
#include "chrome/browser/prefs/pref_service.h"
#include "chrome/test/base/testing_browser_process.h"
#include "chrome/test/base/testing_pref_service.h"
#include "content/public/test/test_browser_thread.h"
#include "testing/gtest/include/gtest/gtest.h"
using ::testing::AnyNumber;
namespace chromeos {
class UserManagerTest : public testing::Test {
public:
UserManagerTest()
: message_loop_(MessageLoop::TYPE_UI),
ui_thread_(content::BrowserThread::UI, &message_loop_),
file_thread_(content::BrowserThread::FILE, &message_loop_) {
}
virtual void SetUp() {
MockCertLibrary* mock_cert_library = new MockCertLibrary();
EXPECT_CALL(*mock_cert_library, LoadKeyStore()).Times(AnyNumber());
chromeos::CrosLibrary::Get()->GetTestApi()->SetCertLibrary(
mock_cert_library, true);
cros_settings_ = CrosSettings::Get();
// Replace the real DeviceSettingsProvider with a stub.
device_settings_provider_ =
cros_settings_->GetProvider(chromeos::kReportDeviceVersionInfo);
EXPECT_TRUE(device_settings_provider_ != NULL);
EXPECT_TRUE(
cros_settings_->RemoveSettingsProvider(device_settings_provider_));
cros_settings_->AddSettingsProvider(&stub_settings_provider_);
// Populate the stub DeviceSettingsProvider with valid values.
SetDeviceSettings(false, "");
// Register an in-memory local settings instance.
local_state_.reset(new TestingPrefService);
reinterpret_cast<TestingBrowserProcess*>(g_browser_process)
->SetLocalState(local_state_.get());
UserManager::RegisterPrefs(local_state_.get());
old_user_manager_ = UserManager::Get();
// A stub user is automatically logged in by UserManager. Reset this.
ResetUserManager();
}
virtual void TearDown() {
// Unregister the in-memory local settings instance.
reinterpret_cast<TestingBrowserProcess*>(g_browser_process)
->SetLocalState(0);
// Restore the real DeviceSettingsProvider.
EXPECT_TRUE(
cros_settings_->RemoveSettingsProvider(&stub_settings_provider_));
cros_settings_->AddSettingsProvider(device_settings_provider_);
UserManager::Set(old_user_manager_);
}
bool GetUserManagerEphemeralUsersEnabled() const {
return reinterpret_cast<UserManagerImpl*>(UserManager::Get())->
ephemeral_users_enabled_;
}
void SetUserManagerEphemeralUsersEnabled(bool ephemeral_users_enabled) {
reinterpret_cast<UserManagerImpl*>(UserManager::Get())->
ephemeral_users_enabled_ = ephemeral_users_enabled;
}
const std::string& GetUserManagerOwnerEmail() const {
return reinterpret_cast<UserManagerImpl*>(UserManager::Get())->
owner_email_;
}
void SetUserManagerOwnerEmail(const std::string& owner_email) {
reinterpret_cast<UserManagerImpl*>(UserManager::Get())->
owner_email_ = owner_email;
}
void ResetUserManager() {
user_manager_impl.reset(new UserManagerImpl());
// Clean up the stub user that gets created in the UserManagerImpl
// constructor.
delete user_manager_impl->logged_in_user_;
user_manager_impl->logged_in_user_ = NULL;
user_manager_impl->is_current_user_ephemeral_ = false;
UserManager::Set(user_manager_impl.get());
}
void SetDeviceSettings(bool ephemeral_users_enabled,
const std::string &owner) {
base::FundamentalValue
ephemeral_users_enabled_value(ephemeral_users_enabled);
stub_settings_provider_.Set(kAccountsPrefEphemeralUsersEnabled,
ephemeral_users_enabled_value);
base::StringValue owner_value(owner);
stub_settings_provider_.Set(kDeviceOwner, owner_value);
}
void RetrieveTrustedDevicePolicies() {
reinterpret_cast<UserManagerImpl*>(UserManager::Get())->
RetrieveTrustedDevicePolicies();
}
protected:
MessageLoop message_loop_;
content::TestBrowserThread ui_thread_;
content::TestBrowserThread file_thread_;
CrosSettings* cros_settings_;
CrosSettingsProvider* device_settings_provider_;
StubCrosSettingsProvider stub_settings_provider_;
scoped_ptr<TestingPrefService> local_state_;
// Initializes / shuts down a stub CrosLibrary.
chromeos::ScopedStubCrosEnabler stub_cros_enabler_;
scoped_ptr<UserManagerImpl> user_manager_impl;
UserManager* old_user_manager_;
};
TEST_F(UserManagerTest, RetrieveTrustedDevicePolicies) {
SetUserManagerEphemeralUsersEnabled(true);
SetUserManagerOwnerEmail("");
SetDeviceSettings(false, "owner@invalid.domain");
RetrieveTrustedDevicePolicies();
EXPECT_FALSE(GetUserManagerEphemeralUsersEnabled());
EXPECT_EQ(GetUserManagerOwnerEmail(), "owner@invalid.domain");
}
TEST_F(UserManagerTest, RemoveAllExceptOwnerFromList) {
UserManager::Get()->UserLoggedIn("owner@invalid.domain", true);
ResetUserManager();
UserManager::Get()->UserLoggedIn("user0@invalid.domain", true);
ResetUserManager();
UserManager::Get()->UserLoggedIn("user1@invalid.domain", true);
ResetUserManager();
const UserList* users = &UserManager::Get()->GetUsers();
ASSERT_TRUE(users->size() == 3);
EXPECT_EQ((*users)[0]->email(), "user1@invalid.domain");
EXPECT_EQ((*users)[1]->email(), "user0@invalid.domain");
EXPECT_EQ((*users)[2]->email(), "owner@invalid.domain");
SetDeviceSettings(true, "owner@invalid.domain");
RetrieveTrustedDevicePolicies();
users = &UserManager::Get()->GetUsers();
EXPECT_TRUE(users->size() == 1);
EXPECT_EQ((*users)[0]->email(), "owner@invalid.domain");
}
TEST_F(UserManagerTest, EphemeralUserLoggedIn) {
SetDeviceSettings(true, "owner@invalid.domain");
RetrieveTrustedDevicePolicies();
UserManager::Get()->UserLoggedIn("owner@invalid.domain", true);
ResetUserManager();
UserManager::Get()->UserLoggedIn("user0@invalid.domain", true);
ResetUserManager();
const UserList* users = &UserManager::Get()->GetUsers();
EXPECT_TRUE(users->size() == 1);
EXPECT_EQ((*users)[0]->email(), "owner@invalid.domain");
}
} // namespace chromeos
|