blob: 5e110f65983a6ea4079d13ad179e4e5f0bdd9f4b [file] [log] [blame]
[email protected]ca591072012-03-27 01:54:441// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]dee810e2011-06-27 19:43:392// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
[email protected]d4f5d1162011-11-30 01:41:525#include "chrome/browser/profiles/profile_info_cache_unittest.h"
[email protected]dee810e2011-06-27 19:43:396
[email protected]047481802013-09-16 22:26:387#include <vector>
8
[email protected]e5ba874f2013-02-14 17:20:199#include "base/prefs/testing_pref_service.h"
[email protected]76fb05c2013-06-11 04:38:0510#include "base/strings/stringprintf.h"
[email protected]e309f312013-06-07 21:50:0811#include "base/strings/utf_string_conversions.h"
[email protected]85503a02014-01-16 17:27:2212#include "base/time/time.h"
[email protected]583844c2011-08-27 00:38:3513#include "chrome/browser/browser_process.h"
[email protected]25ff0862013-07-12 00:59:0314#include "chrome/browser/chrome_notification_types.h"
[email protected]0aa018a2013-07-31 15:08:5415#include "chrome/browser/prefs/pref_service_syncable.h"
[email protected]d4f5d1162011-11-30 01:41:5216#include "chrome/browser/profiles/profile_info_cache.h"
[email protected]6730b1e2011-09-29 05:23:5217#include "chrome/browser/profiles/profile_manager.h"
[email protected]583844c2011-08-27 00:38:3518#include "chrome/test/base/testing_browser_process.h"
[email protected]cb114f142011-11-23 20:18:0419#include "content/public/browser/notification_observer.h"
20#include "content/public/browser/notification_registrar.h"
[email protected]c0b030902011-12-19 16:21:0521#include "content/public/browser/notification_service.h"
[email protected]371662e372013-10-17 22:05:2222#include "content/public/test/test_browser_thread_bundle.h"
[email protected]a7fe9112012-07-20 02:34:4523#include "content/public/test/test_utils.h"
[email protected]dee810e2011-06-27 19:43:3924#include "third_party/skia/include/core/SkBitmap.h"
25#include "ui/base/resource/resource_bundle.h"
26#include "ui/gfx/image/image.h"
[email protected]d4f5d1162011-11-30 01:41:5227#include "ui/gfx/image/image_unittest_util.h"
[email protected]dee810e2011-06-27 19:43:3928
[email protected]6778fed2013-12-24 20:09:3729using base::ASCIIToUTF16;
[email protected]f729d7a2013-12-26 07:07:5630using base::UTF8ToUTF16;
[email protected]cb114f142011-11-23 20:18:0431using content::BrowserThread;
32
[email protected]6a460662011-12-22 22:05:1633ProfileNameVerifierObserver::ProfileNameVerifierObserver(
34 TestingProfileManager* testing_profile_manager)
35 : testing_profile_manager_(testing_profile_manager) {
36 DCHECK(testing_profile_manager_);
[email protected]590e189b2011-12-13 22:07:0337}
38
39ProfileNameVerifierObserver::~ProfileNameVerifierObserver() {
40}
41
42void ProfileNameVerifierObserver::OnProfileAdded(
[email protected]650b2d52013-02-10 03:41:4543 const base::FilePath& profile_path) {
[email protected]a04db822013-12-11 19:14:4044 base::string16 profile_name = GetCache()->GetNameOfProfileAtIndex(
[email protected]6a460662011-12-22 22:05:1645 GetCache()->GetIndexOfProfileWithPath(profile_path));
[email protected]590e189b2011-12-13 22:07:0346 EXPECT_TRUE(profile_names_.find(profile_name) == profile_names_.end());
47 profile_names_.insert(profile_name);
48}
49
[email protected]7b0af152011-12-16 17:02:0650void ProfileNameVerifierObserver::OnProfileWillBeRemoved(
[email protected]650b2d52013-02-10 03:41:4551 const base::FilePath& profile_path) {
[email protected]a04db822013-12-11 19:14:4052 base::string16 profile_name = GetCache()->GetNameOfProfileAtIndex(
[email protected]6a460662011-12-22 22:05:1653 GetCache()->GetIndexOfProfileWithPath(profile_path));
[email protected]590e189b2011-12-13 22:07:0354 EXPECT_TRUE(profile_names_.find(profile_name) != profile_names_.end());
55 profile_names_.erase(profile_name);
56}
57
[email protected]7b0af152011-12-16 17:02:0658void ProfileNameVerifierObserver::OnProfileWasRemoved(
[email protected]650b2d52013-02-10 03:41:4559 const base::FilePath& profile_path,
[email protected]a04db822013-12-11 19:14:4060 const base::string16& profile_name) {
[email protected]7b0af152011-12-16 17:02:0661 EXPECT_TRUE(profile_names_.find(profile_name) == profile_names_.end());
62}
63
[email protected]590e189b2011-12-13 22:07:0364void ProfileNameVerifierObserver::OnProfileNameChanged(
[email protected]650b2d52013-02-10 03:41:4565 const base::FilePath& profile_path,
[email protected]a04db822013-12-11 19:14:4066 const base::string16& old_profile_name) {
67 base::string16 new_profile_name = GetCache()->GetNameOfProfileAtIndex(
[email protected]6a460662011-12-22 22:05:1668 GetCache()->GetIndexOfProfileWithPath(profile_path));
[email protected]590e189b2011-12-13 22:07:0369 EXPECT_TRUE(profile_names_.find(old_profile_name) != profile_names_.end());
70 EXPECT_TRUE(profile_names_.find(new_profile_name) == profile_names_.end());
71 profile_names_.erase(old_profile_name);
72 profile_names_.insert(new_profile_name);
73}
74
75void ProfileNameVerifierObserver::OnProfileAvatarChanged(
[email protected]650b2d52013-02-10 03:41:4576 const base::FilePath& profile_path) {
[email protected]a04db822013-12-11 19:14:4077 base::string16 profile_name = GetCache()->GetNameOfProfileAtIndex(
[email protected]6a460662011-12-22 22:05:1678 GetCache()->GetIndexOfProfileWithPath(profile_path));
[email protected]590e189b2011-12-13 22:07:0379 EXPECT_TRUE(profile_names_.find(profile_name) != profile_names_.end());
80}
81
[email protected]6a460662011-12-22 22:05:1682ProfileInfoCache* ProfileNameVerifierObserver::GetCache() {
83 return testing_profile_manager_->profile_info_cache();
84}
85
[email protected]d4f5d1162011-11-30 01:41:5286ProfileInfoCacheTest::ProfileInfoCacheTest()
[email protected]0aa018a2013-07-31 15:08:5487 : testing_profile_manager_(TestingBrowserProcess::GetGlobal()),
[email protected]6a460662011-12-22 22:05:1688 name_observer_(&testing_profile_manager_) {
[email protected]d4f5d1162011-11-30 01:41:5289}
90
91ProfileInfoCacheTest::~ProfileInfoCacheTest() {
92}
93
94void ProfileInfoCacheTest::SetUp() {
95 ASSERT_TRUE(testing_profile_manager_.SetUp());
[email protected]590e189b2011-12-13 22:07:0396 testing_profile_manager_.profile_info_cache()->AddObserver(&name_observer_);
[email protected]d4f5d1162011-11-30 01:41:5297}
98
[email protected]1302dcf2011-11-30 21:47:0599void ProfileInfoCacheTest::TearDown() {
100 // Drain the UI thread to make sure all tasks are completed. This prevents
101 // memory leaks.
[email protected]0aa018a2013-07-31 15:08:54102 base::RunLoop().RunUntilIdle();
[email protected]1302dcf2011-11-30 21:47:05103}
104
[email protected]d4f5d1162011-11-30 01:41:52105ProfileInfoCache* ProfileInfoCacheTest::GetCache() {
106 return testing_profile_manager_.profile_info_cache();
107}
108
[email protected]650b2d52013-02-10 03:41:45109base::FilePath ProfileInfoCacheTest::GetProfilePath(
[email protected]d4f5d1162011-11-30 01:41:52110 const std::string& base_name) {
111 return testing_profile_manager_.profile_manager()->user_data_dir().
112 AppendASCII(base_name);
113}
114
115void ProfileInfoCacheTest::ResetCache() {
116 testing_profile_manager_.DeleteProfileInfoCache();
117}
118
[email protected]dee810e2011-06-27 19:43:39119namespace {
120
[email protected]d4f5d1162011-11-30 01:41:52121TEST_F(ProfileInfoCacheTest, AddProfiles) {
[email protected]6730b1e2011-09-29 05:23:52122 EXPECT_EQ(0u, GetCache()->GetNumberOfProfiles());
[email protected]dee810e2011-06-27 19:43:39123
[email protected]ca591072012-03-27 01:54:44124 ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance();
[email protected]dee810e2011-06-27 19:43:39125 for (uint32 i = 0; i < 4; ++i) {
[email protected]7d3cbc92013-03-18 22:33:04126 base::FilePath profile_path =
127 GetProfilePath(base::StringPrintf("path_%ud", i));
[email protected]a04db822013-12-11 19:14:40128 base::string16 profile_name =
129 ASCIIToUTF16(base::StringPrintf("name_%ud", i));
[email protected]ca591072012-03-27 01:54:44130 const SkBitmap* icon = rb.GetImageNamed(
131 ProfileInfoCache::GetDefaultAvatarIconResourceIDAtIndex(
132 i)).ToSkBitmap();
[email protected]a6e01b42013-08-05 14:13:13133 std::string managed_user_id = i == 3 ? "TEST_ID" : "";
[email protected]dee810e2011-06-27 19:43:39134
[email protected]a04db822013-12-11 19:14:40135 GetCache()->AddProfileToCache(profile_path, profile_name, base::string16(),
136 i, managed_user_id);
[email protected]cb114f142011-11-23 20:18:04137 GetCache()->SetBackgroundStatusOfProfileAtIndex(i, true);
[email protected]a04db822013-12-11 19:14:40138 base::string16 gaia_name = ASCIIToUTF16(base::StringPrintf("gaia_%ud", i));
[email protected]cb114f142011-11-23 20:18:04139 GetCache()->SetGAIANameOfProfileAtIndex(i, gaia_name);
[email protected]dee810e2011-06-27 19:43:39140
[email protected]6730b1e2011-09-29 05:23:52141 EXPECT_EQ(i + 1, GetCache()->GetNumberOfProfiles());
142 EXPECT_EQ(profile_name, GetCache()->GetNameOfProfileAtIndex(i));
143 EXPECT_EQ(profile_path, GetCache()->GetPathOfProfileAtIndex(i));
[email protected]0aa018a2013-07-31 15:08:54144 const SkBitmap* actual_icon =
145 GetCache()->GetAvatarIconOfProfileAtIndex(i).ToSkBitmap();
[email protected]ca591072012-03-27 01:54:44146 EXPECT_EQ(icon->width(), actual_icon->width());
147 EXPECT_EQ(icon->height(), actual_icon->height());
[email protected]a6e01b42013-08-05 14:13:13148 EXPECT_EQ(i == 3, GetCache()->ProfileIsManagedAtIndex(i));
149 EXPECT_EQ(managed_user_id, GetCache()->GetManagedUserIdOfProfileAtIndex(i));
[email protected]dee810e2011-06-27 19:43:39150 }
[email protected]cb114f142011-11-23 20:18:04151
152 // Reset the cache and test the it reloads correctly.
153 ResetCache();
154
155 EXPECT_EQ(4u, GetCache()->GetNumberOfProfiles());
156 for (uint32 i = 0; i < 4; ++i) {
[email protected]7d3cbc92013-03-18 22:33:04157 base::FilePath profile_path =
158 GetProfilePath(base::StringPrintf("path_%ud", i));
[email protected]cb114f142011-11-23 20:18:04159 EXPECT_EQ(i, GetCache()->GetIndexOfProfileWithPath(profile_path));
[email protected]a04db822013-12-11 19:14:40160 base::string16 profile_name =
161 ASCIIToUTF16(base::StringPrintf("name_%ud", i));
[email protected]cb114f142011-11-23 20:18:04162 EXPECT_EQ(profile_name, GetCache()->GetNameOfProfileAtIndex(i));
163 EXPECT_EQ(i, GetCache()->GetAvatarIconIndexOfProfileAtIndex(i));
164 EXPECT_EQ(true, GetCache()->GetBackgroundStatusOfProfileAtIndex(i));
[email protected]a04db822013-12-11 19:14:40165 base::string16 gaia_name = ASCIIToUTF16(base::StringPrintf("gaia_%ud", i));
[email protected]cb114f142011-11-23 20:18:04166 EXPECT_EQ(gaia_name, GetCache()->GetGAIANameOfProfileAtIndex(i));
167 }
[email protected]dee810e2011-06-27 19:43:39168}
169
[email protected]d4f5d1162011-11-30 01:41:52170TEST_F(ProfileInfoCacheTest, DeleteProfile) {
[email protected]6730b1e2011-09-29 05:23:52171 EXPECT_EQ(0u, GetCache()->GetNumberOfProfiles());
[email protected]dee810e2011-06-27 19:43:39172
[email protected]650b2d52013-02-10 03:41:45173 base::FilePath path_1 = GetProfilePath("path_1");
[email protected]a04db822013-12-11 19:14:40174 GetCache()->AddProfileToCache(path_1, ASCIIToUTF16("name_1"),
175 base::string16(), 0, std::string());
[email protected]6730b1e2011-09-29 05:23:52176 EXPECT_EQ(1u, GetCache()->GetNumberOfProfiles());
[email protected]dee810e2011-06-27 19:43:39177
[email protected]650b2d52013-02-10 03:41:45178 base::FilePath path_2 = GetProfilePath("path_2");
[email protected]a04db822013-12-11 19:14:40179 base::string16 name_2 = ASCIIToUTF16("name_2");
180 GetCache()->AddProfileToCache(path_2, name_2, base::string16(), 0,
181 std::string());
[email protected]6730b1e2011-09-29 05:23:52182 EXPECT_EQ(2u, GetCache()->GetNumberOfProfiles());
[email protected]dee810e2011-06-27 19:43:39183
[email protected]6730b1e2011-09-29 05:23:52184 GetCache()->DeleteProfileFromCache(path_1);
185 EXPECT_EQ(1u, GetCache()->GetNumberOfProfiles());
186 EXPECT_EQ(name_2, GetCache()->GetNameOfProfileAtIndex(0));
[email protected]dee810e2011-06-27 19:43:39187
[email protected]6730b1e2011-09-29 05:23:52188 GetCache()->DeleteProfileFromCache(path_2);
189 EXPECT_EQ(0u, GetCache()->GetNumberOfProfiles());
[email protected]dee810e2011-06-27 19:43:39190}
191
[email protected]d4f5d1162011-11-30 01:41:52192TEST_F(ProfileInfoCacheTest, MutateProfile) {
193 GetCache()->AddProfileToCache(
[email protected]a6e01b42013-08-05 14:13:13194 GetProfilePath("path_1"), ASCIIToUTF16("name_1"),
[email protected]a04db822013-12-11 19:14:40195 base::string16(), 0, std::string());
[email protected]d4f5d1162011-11-30 01:41:52196 GetCache()->AddProfileToCache(
[email protected]a6e01b42013-08-05 14:13:13197 GetProfilePath("path_2"), ASCIIToUTF16("name_2"),
[email protected]a04db822013-12-11 19:14:40198 base::string16(), 0, std::string());
[email protected]dee810e2011-06-27 19:43:39199
[email protected]a04db822013-12-11 19:14:40200 base::string16 new_name = ASCIIToUTF16("new_name");
[email protected]6730b1e2011-09-29 05:23:52201 GetCache()->SetNameOfProfileAtIndex(1, new_name);
202 EXPECT_EQ(new_name, GetCache()->GetNameOfProfileAtIndex(1));
203 EXPECT_NE(new_name, GetCache()->GetNameOfProfileAtIndex(0));
[email protected]dee810e2011-06-27 19:43:39204
[email protected]a04db822013-12-11 19:14:40205 base::string16 new_user_name = ASCIIToUTF16("user_name");
[email protected]e8e78092011-09-29 18:15:38206 GetCache()->SetUserNameOfProfileAtIndex(1, new_user_name);
207 EXPECT_EQ(new_user_name, GetCache()->GetUserNameOfProfileAtIndex(1));
208 EXPECT_NE(new_user_name, GetCache()->GetUserNameOfProfileAtIndex(0));
209
[email protected]dee810e2011-06-27 19:43:39210 size_t new_icon_index = 3;
[email protected]6730b1e2011-09-29 05:23:52211 GetCache()->SetAvatarIconOfProfileAtIndex(1, new_icon_index);
[email protected]dee810e2011-06-27 19:43:39212 // Not much to test.
[email protected]6730b1e2011-09-29 05:23:52213 GetCache()->GetAvatarIconOfProfileAtIndex(1);
[email protected]dee810e2011-06-27 19:43:39214}
215
[email protected]d4f5d1162011-11-30 01:41:52216TEST_F(ProfileInfoCacheTest, Sort) {
[email protected]a04db822013-12-11 19:14:40217 base::string16 name_a = ASCIIToUTF16("apple");
[email protected]d4f5d1162011-11-30 01:41:52218 GetCache()->AddProfileToCache(
[email protected]a04db822013-12-11 19:14:40219 GetProfilePath("path_a"), name_a, base::string16(), 0, std::string());
[email protected]cb114f142011-11-23 20:18:04220
[email protected]a04db822013-12-11 19:14:40221 base::string16 name_c = ASCIIToUTF16("cat");
[email protected]d4f5d1162011-11-30 01:41:52222 GetCache()->AddProfileToCache(
[email protected]a04db822013-12-11 19:14:40223 GetProfilePath("path_c"), name_c, base::string16(), 0, std::string());
[email protected]cb114f142011-11-23 20:18:04224
225 // Sanity check the initial order.
226 EXPECT_EQ(name_a, GetCache()->GetNameOfProfileAtIndex(0));
227 EXPECT_EQ(name_c, GetCache()->GetNameOfProfileAtIndex(1));
228
229 // Add a new profile (start with a capital to test case insensitive sorting.
[email protected]a04db822013-12-11 19:14:40230 base::string16 name_b = ASCIIToUTF16("Banana");
[email protected]d4f5d1162011-11-30 01:41:52231 GetCache()->AddProfileToCache(
[email protected]a04db822013-12-11 19:14:40232 GetProfilePath("path_b"), name_b, base::string16(), 0, std::string());
[email protected]cb114f142011-11-23 20:18:04233
234 // Verify the new order.
235 EXPECT_EQ(name_a, GetCache()->GetNameOfProfileAtIndex(0));
236 EXPECT_EQ(name_b, GetCache()->GetNameOfProfileAtIndex(1));
237 EXPECT_EQ(name_c, GetCache()->GetNameOfProfileAtIndex(2));
238
239 // Change the name of an existing profile.
240 name_a = UTF8ToUTF16("dog");
241 GetCache()->SetNameOfProfileAtIndex(0, name_a);
242
243 // Verify the new order.
244 EXPECT_EQ(name_b, GetCache()->GetNameOfProfileAtIndex(0));
245 EXPECT_EQ(name_c, GetCache()->GetNameOfProfileAtIndex(1));
246 EXPECT_EQ(name_a, GetCache()->GetNameOfProfileAtIndex(2));
247
248 // Delete a profile.
[email protected]d4f5d1162011-11-30 01:41:52249 GetCache()->DeleteProfileFromCache(GetProfilePath("path_c"));
[email protected]cb114f142011-11-23 20:18:04250
251 // Verify the new order.
252 EXPECT_EQ(name_b, GetCache()->GetNameOfProfileAtIndex(0));
253 EXPECT_EQ(name_a, GetCache()->GetNameOfProfileAtIndex(1));
254}
255
[email protected]d4f5d1162011-11-30 01:41:52256TEST_F(ProfileInfoCacheTest, BackgroundModeStatus) {
[email protected]279170832011-10-12 23:38:03257 GetCache()->AddProfileToCache(
[email protected]a6e01b42013-08-05 14:13:13258 GetProfilePath("path_1"), ASCIIToUTF16("name_1"),
[email protected]a04db822013-12-11 19:14:40259 base::string16(), 0, std::string());
[email protected]279170832011-10-12 23:38:03260 GetCache()->AddProfileToCache(
[email protected]a6e01b42013-08-05 14:13:13261 GetProfilePath("path_2"), ASCIIToUTF16("name_2"),
[email protected]a04db822013-12-11 19:14:40262 base::string16(), 0, std::string());
[email protected]279170832011-10-12 23:38:03263
264 EXPECT_FALSE(GetCache()->GetBackgroundStatusOfProfileAtIndex(0));
265 EXPECT_FALSE(GetCache()->GetBackgroundStatusOfProfileAtIndex(1));
266
267 GetCache()->SetBackgroundStatusOfProfileAtIndex(1, true);
268
269 EXPECT_FALSE(GetCache()->GetBackgroundStatusOfProfileAtIndex(0));
270 EXPECT_TRUE(GetCache()->GetBackgroundStatusOfProfileAtIndex(1));
271
272 GetCache()->SetBackgroundStatusOfProfileAtIndex(0, true);
273
274 EXPECT_TRUE(GetCache()->GetBackgroundStatusOfProfileAtIndex(0));
275 EXPECT_TRUE(GetCache()->GetBackgroundStatusOfProfileAtIndex(1));
276
277 GetCache()->SetBackgroundStatusOfProfileAtIndex(1, false);
278
279 EXPECT_TRUE(GetCache()->GetBackgroundStatusOfProfileAtIndex(0));
280 EXPECT_FALSE(GetCache()->GetBackgroundStatusOfProfileAtIndex(1));
281}
282
[email protected]d4f5d1162011-11-30 01:41:52283TEST_F(ProfileInfoCacheTest, HasMigrated) {
[email protected]cb114f142011-11-23 20:18:04284 GetCache()->AddProfileToCache(
[email protected]a6e01b42013-08-05 14:13:13285 GetProfilePath("path_1"), ASCIIToUTF16("name_1"),
[email protected]a04db822013-12-11 19:14:40286 base::string16(), 0, std::string());
[email protected]cb114f142011-11-23 20:18:04287 GetCache()->AddProfileToCache(
[email protected]a6e01b42013-08-05 14:13:13288 GetProfilePath("path_2"), ASCIIToUTF16("name_2"),
[email protected]a04db822013-12-11 19:14:40289 base::string16(), 0, std::string());
[email protected]cb114f142011-11-23 20:18:04290
291 // Sanity check.
292 EXPECT_FALSE(GetCache()->GetHasMigratedToGAIAInfoOfProfileAtIndex(0));
293 EXPECT_FALSE(GetCache()->GetHasMigratedToGAIAInfoOfProfileAtIndex(1));
294
295 // Set migrated state for 2nd profile.
296 GetCache()->SetHasMigratedToGAIAInfoOfProfileAtIndex(1, true);
297 EXPECT_FALSE(GetCache()->GetHasMigratedToGAIAInfoOfProfileAtIndex(0));
298 EXPECT_TRUE(GetCache()->GetHasMigratedToGAIAInfoOfProfileAtIndex(1));
299
300 // Set migrated state for 1st profile.
301 GetCache()->SetHasMigratedToGAIAInfoOfProfileAtIndex(0, true);
302 EXPECT_TRUE(GetCache()->GetHasMigratedToGAIAInfoOfProfileAtIndex(0));
303 EXPECT_TRUE(GetCache()->GetHasMigratedToGAIAInfoOfProfileAtIndex(1));
304
305 // Unset migrated state for 2nd profile.
306 GetCache()->SetHasMigratedToGAIAInfoOfProfileAtIndex(1, false);
307 EXPECT_TRUE(GetCache()->GetHasMigratedToGAIAInfoOfProfileAtIndex(0));
308 EXPECT_FALSE(GetCache()->GetHasMigratedToGAIAInfoOfProfileAtIndex(1));
309}
310
[email protected]85503a02014-01-16 17:27:22311TEST_F(ProfileInfoCacheTest, ProfileActiveTime) {
312 GetCache()->AddProfileToCache(
313 GetProfilePath("path_1"), ASCIIToUTF16("name_1"),
314 base::string16(), 0, std::string());
315 EXPECT_EQ(base::Time(), GetCache()->GetProfileActiveTimeAtIndex(0));
316 base::Time before = base::Time::Now();
317 GetCache()->SetProfileActiveTimeAtIndex(0);
318 base::Time after = base::Time::Now();
319 EXPECT_LE(before, GetCache()->GetProfileActiveTimeAtIndex(0));
320 EXPECT_GE(after, GetCache()->GetProfileActiveTimeAtIndex(0));
321}
322
[email protected]d4f5d1162011-11-30 01:41:52323TEST_F(ProfileInfoCacheTest, GAIAName) {
[email protected]cb114f142011-11-23 20:18:04324 GetCache()->AddProfileToCache(
[email protected]a6e01b42013-08-05 14:13:13325 GetProfilePath("path_1"), ASCIIToUTF16("name_1"),
[email protected]a04db822013-12-11 19:14:40326 base::string16(), 0, std::string());
327 base::string16 profile_name(ASCIIToUTF16("profile name 2"));
[email protected]cb114f142011-11-23 20:18:04328 GetCache()->AddProfileToCache(
[email protected]a04db822013-12-11 19:14:40329 GetProfilePath("path_2"), profile_name, base::string16(), 0,
330 std::string());
[email protected]cb114f142011-11-23 20:18:04331
332 // Sanity check.
333 EXPECT_TRUE(GetCache()->GetGAIANameOfProfileAtIndex(0).empty());
334 EXPECT_TRUE(GetCache()->GetGAIANameOfProfileAtIndex(1).empty());
335 EXPECT_FALSE(GetCache()->IsUsingGAIANameOfProfileAtIndex(0));
336 EXPECT_FALSE(GetCache()->IsUsingGAIANameOfProfileAtIndex(1));
337
338 // Set GAIA name.
[email protected]a04db822013-12-11 19:14:40339 base::string16 gaia_name(ASCIIToUTF16("Pat Smith"));
[email protected]cb114f142011-11-23 20:18:04340 GetCache()->SetGAIANameOfProfileAtIndex(1, gaia_name);
341 EXPECT_TRUE(GetCache()->GetGAIANameOfProfileAtIndex(0).empty());
342 EXPECT_EQ(gaia_name, GetCache()->GetGAIANameOfProfileAtIndex(1));
343 EXPECT_EQ(profile_name, GetCache()->GetNameOfProfileAtIndex(1));
344
345 // Use GAIA name as profile name.
346 GetCache()->SetIsUsingGAIANameOfProfileAtIndex(1, true);
347
348 EXPECT_EQ(gaia_name, GetCache()->GetNameOfProfileAtIndex(1));
349 EXPECT_EQ(gaia_name, GetCache()->GetGAIANameOfProfileAtIndex(1));
350
351 // Don't use GAIA name as profile name.
352 GetCache()->SetIsUsingGAIANameOfProfileAtIndex(1, false);
353 EXPECT_EQ(profile_name, GetCache()->GetNameOfProfileAtIndex(1));
354 EXPECT_EQ(gaia_name, GetCache()->GetGAIANameOfProfileAtIndex(1));
355}
356
[email protected]d4f5d1162011-11-30 01:41:52357TEST_F(ProfileInfoCacheTest, GAIAPicture) {
[email protected]cb114f142011-11-23 20:18:04358 GetCache()->AddProfileToCache(
[email protected]a6e01b42013-08-05 14:13:13359 GetProfilePath("path_1"), ASCIIToUTF16("name_1"),
[email protected]a04db822013-12-11 19:14:40360 base::string16(), 0, std::string());
[email protected]cb114f142011-11-23 20:18:04361 GetCache()->AddProfileToCache(
[email protected]a6e01b42013-08-05 14:13:13362 GetProfilePath("path_2"), ASCIIToUTF16("name_2"),
[email protected]a04db822013-12-11 19:14:40363 base::string16(), 0, std::string());
[email protected]cb114f142011-11-23 20:18:04364
365 // Sanity check.
[email protected]2f3c00f2011-11-30 04:36:22366 EXPECT_EQ(NULL, GetCache()->GetGAIAPictureOfProfileAtIndex(0));
367 EXPECT_EQ(NULL, GetCache()->GetGAIAPictureOfProfileAtIndex(1));
[email protected]cb114f142011-11-23 20:18:04368 EXPECT_FALSE(GetCache()->IsUsingGAIAPictureOfProfileAtIndex(0));
369 EXPECT_FALSE(GetCache()->IsUsingGAIAPictureOfProfileAtIndex(1));
370
371 // The profile icon should be the default one.
372 int id = ProfileInfoCache::GetDefaultAvatarIconResourceIDAtIndex(0);
373 const gfx::Image& profile_image(
374 ResourceBundle::GetSharedInstance().GetImageNamed(id));
[email protected]d4f5d1162011-11-30 01:41:52375 EXPECT_TRUE(gfx::test::IsEqual(
[email protected]cb114f142011-11-23 20:18:04376 profile_image, GetCache()->GetAvatarIconOfProfileAtIndex(1)));
377
378 // Set GAIA picture.
[email protected]d4f5d1162011-11-30 01:41:52379 gfx::Image gaia_image(gfx::test::CreateImage());
[email protected]2f3c00f2011-11-30 04:36:22380 GetCache()->SetGAIAPictureOfProfileAtIndex(1, &gaia_image);
381 EXPECT_EQ(NULL, GetCache()->GetGAIAPictureOfProfileAtIndex(0));
[email protected]d4f5d1162011-11-30 01:41:52382 EXPECT_TRUE(gfx::test::IsEqual(
[email protected]2f3c00f2011-11-30 04:36:22383 gaia_image, *GetCache()->GetGAIAPictureOfProfileAtIndex(1)));
[email protected]d4f5d1162011-11-30 01:41:52384 EXPECT_TRUE(gfx::test::IsEqual(
[email protected]cb114f142011-11-23 20:18:04385 profile_image, GetCache()->GetAvatarIconOfProfileAtIndex(1)));
386
387 // Use GAIA picture as profile picture.
388 GetCache()->SetIsUsingGAIAPictureOfProfileAtIndex(1, true);
[email protected]d4f5d1162011-11-30 01:41:52389 EXPECT_TRUE(gfx::test::IsEqual(
[email protected]2f3c00f2011-11-30 04:36:22390 gaia_image, *GetCache()->GetGAIAPictureOfProfileAtIndex(1)));
[email protected]d4f5d1162011-11-30 01:41:52391 EXPECT_TRUE(gfx::test::IsEqual(
[email protected]cb114f142011-11-23 20:18:04392 gaia_image, GetCache()->GetAvatarIconOfProfileAtIndex(1)));
393
394 // Don't use GAIA picture as profile picture.
395 GetCache()->SetIsUsingGAIAPictureOfProfileAtIndex(1, false);
[email protected]d4f5d1162011-11-30 01:41:52396 EXPECT_TRUE(gfx::test::IsEqual(
[email protected]2f3c00f2011-11-30 04:36:22397 gaia_image, *GetCache()->GetGAIAPictureOfProfileAtIndex(1)));
[email protected]d4f5d1162011-11-30 01:41:52398 EXPECT_TRUE(gfx::test::IsEqual(
[email protected]cb114f142011-11-23 20:18:04399 profile_image, GetCache()->GetAvatarIconOfProfileAtIndex(1)));
400}
401
[email protected]754bebc2011-12-01 16:42:16402TEST_F(ProfileInfoCacheTest, PersistGAIAPicture) {
[email protected]cb114f142011-11-23 20:18:04403 GetCache()->AddProfileToCache(
[email protected]a6e01b42013-08-05 14:13:13404 GetProfilePath("path_1"), ASCIIToUTF16("name_1"),
[email protected]a04db822013-12-11 19:14:40405 base::string16(), 0, std::string());
[email protected]d4f5d1162011-11-30 01:41:52406 gfx::Image gaia_image(gfx::test::CreateImage());
[email protected]cb114f142011-11-23 20:18:04407
[email protected]a7fe9112012-07-20 02:34:45408 content::WindowedNotificationObserver save_observer(
[email protected]cb114f142011-11-23 20:18:04409 chrome::NOTIFICATION_PROFILE_CACHE_PICTURE_SAVED,
410 content::NotificationService::AllSources());
[email protected]2f3c00f2011-11-30 04:36:22411 GetCache()->SetGAIAPictureOfProfileAtIndex(0, &gaia_image);
[email protected]d4f5d1162011-11-30 01:41:52412 EXPECT_TRUE(gfx::test::IsEqual(
[email protected]2f3c00f2011-11-30 04:36:22413 gaia_image, *GetCache()->GetGAIAPictureOfProfileAtIndex(0)));
[email protected]cb114f142011-11-23 20:18:04414
415 // Wait for the file to be written to disk then reset the cache.
416 save_observer.Wait();
417 ResetCache();
418
419 // Try to get the GAIA picture. This should return NULL until the read from
420 // disk is done.
[email protected]a7fe9112012-07-20 02:34:45421 content::WindowedNotificationObserver read_observer(
[email protected]cb114f142011-11-23 20:18:04422 chrome::NOTIFICATION_PROFILE_CACHED_INFO_CHANGED,
423 content::NotificationService::AllSources());
[email protected]2f3c00f2011-11-30 04:36:22424 EXPECT_EQ(NULL, GetCache()->GetGAIAPictureOfProfileAtIndex(0));
[email protected]cb114f142011-11-23 20:18:04425 read_observer.Wait();
[email protected]d4f5d1162011-11-30 01:41:52426 EXPECT_TRUE(gfx::test::IsEqual(
[email protected]2f3c00f2011-11-30 04:36:22427 gaia_image, *GetCache()->GetGAIAPictureOfProfileAtIndex(0)));
428}
429
[email protected]a6e01b42013-08-05 14:13:13430TEST_F(ProfileInfoCacheTest, SetManagedUserId) {
[email protected]0aa018a2013-07-31 15:08:54431 GetCache()->AddProfileToCache(
[email protected]a6e01b42013-08-05 14:13:13432 GetProfilePath("test"), ASCIIToUTF16("Test"),
[email protected]a04db822013-12-11 19:14:40433 base::string16(), 0, std::string());
[email protected]0aa018a2013-07-31 15:08:54434 EXPECT_FALSE(GetCache()->ProfileIsManagedAtIndex(0));
435
[email protected]a6e01b42013-08-05 14:13:13436 GetCache()->SetManagedUserIdOfProfileAtIndex(0, "TEST_ID");
[email protected]0aa018a2013-07-31 15:08:54437 EXPECT_TRUE(GetCache()->ProfileIsManagedAtIndex(0));
[email protected]a6e01b42013-08-05 14:13:13438 EXPECT_EQ("TEST_ID", GetCache()->GetManagedUserIdOfProfileAtIndex(0));
[email protected]0aa018a2013-07-31 15:08:54439
440 ResetCache();
441 EXPECT_TRUE(GetCache()->ProfileIsManagedAtIndex(0));
442
[email protected]a6e01b42013-08-05 14:13:13443 GetCache()->SetManagedUserIdOfProfileAtIndex(0, std::string());
[email protected]0aa018a2013-07-31 15:08:54444 EXPECT_FALSE(GetCache()->ProfileIsManagedAtIndex(0));
[email protected]a6e01b42013-08-05 14:13:13445 EXPECT_EQ("", GetCache()->GetManagedUserIdOfProfileAtIndex(0));
[email protected]0aa018a2013-07-31 15:08:54446}
447
[email protected]2f3c00f2011-11-30 04:36:22448TEST_F(ProfileInfoCacheTest, EmptyGAIAInfo) {
[email protected]a04db822013-12-11 19:14:40449 base::string16 profile_name = ASCIIToUTF16("name_1");
[email protected]2f3c00f2011-11-30 04:36:22450 int id = ProfileInfoCache::GetDefaultAvatarIconResourceIDAtIndex(0);
451 const gfx::Image& profile_image(
452 ResourceBundle::GetSharedInstance().GetImageNamed(id));
453
454 GetCache()->AddProfileToCache(
[email protected]a04db822013-12-11 19:14:40455 GetProfilePath("path_1"), profile_name, base::string16(), 0,
456 std::string());
[email protected]2f3c00f2011-11-30 04:36:22457
458 // Set empty GAIA info.
[email protected]a04db822013-12-11 19:14:40459 GetCache()->SetGAIANameOfProfileAtIndex(0, base::string16());
[email protected]2f3c00f2011-11-30 04:36:22460 GetCache()->SetGAIAPictureOfProfileAtIndex(0, NULL);
461 GetCache()->SetIsUsingGAIANameOfProfileAtIndex(0, true);
462 GetCache()->SetIsUsingGAIAPictureOfProfileAtIndex(0, true);
463
464 // Verify that the profile name and picture are not empty.
465 EXPECT_EQ(profile_name, GetCache()->GetNameOfProfileAtIndex(0));
466 EXPECT_TRUE(gfx::test::IsEqual(
467 profile_image, GetCache()->GetAvatarIconOfProfileAtIndex(0)));
[email protected]cb114f142011-11-23 20:18:04468}
469
[email protected]0aa018a2013-07-31 15:08:54470TEST_F(ProfileInfoCacheTest, CreateManagedTestingProfile) {
471 testing_profile_manager_.CreateTestingProfile("default");
[email protected]a04db822013-12-11 19:14:40472 base::string16 managed_user_name = ASCIIToUTF16("Supervised User");
[email protected]0aa018a2013-07-31 15:08:54473 testing_profile_manager_.CreateTestingProfile(
[email protected]a6e01b42013-08-05 14:13:13474 "test1", scoped_ptr<PrefServiceSyncable>(),
[email protected]cb0323d2013-11-22 23:21:26475 managed_user_name, 0, "TEST_ID", TestingProfile::TestingFactories());
[email protected]0aa018a2013-07-31 15:08:54476 for (size_t i = 0; i < GetCache()->GetNumberOfProfiles(); i++) {
477 bool is_managed =
478 GetCache()->GetNameOfProfileAtIndex(i) == managed_user_name;
479 EXPECT_EQ(is_managed, GetCache()->ProfileIsManagedAtIndex(i));
[email protected]a6e01b42013-08-05 14:13:13480 std::string managed_user_id = is_managed ? "TEST_ID" : "";
481 EXPECT_EQ(managed_user_id, GetCache()->GetManagedUserIdOfProfileAtIndex(i));
[email protected]0aa018a2013-07-31 15:08:54482 }
[email protected]371662e372013-10-17 22:05:22483
484 // Managed profiles have a custom theme, which needs to be deleted on the FILE
485 // thread. Reset the profile manager now so everything is deleted while we
486 // still have a FILE thread.
487 TestingBrowserProcess::GetGlobal()->SetProfileManager(NULL);
[email protected]0aa018a2013-07-31 15:08:54488}
489
[email protected]047481802013-09-16 22:26:38490TEST_F(ProfileInfoCacheTest, AddStubProfile) {
491 EXPECT_EQ(0u, GetCache()->GetNumberOfProfiles());
492
493 // Add some profiles with and without a '.' in their paths.
494 const struct {
495 const char* profile_path;
496 const char* profile_name;
497 } kTestCases[] = {
498 { "path.test0", "name_0" },
499 { "path_test1", "name_1" },
500 { "path.test2", "name_2" },
501 { "path_test3", "name_3" },
502 };
503
504 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kTestCases); ++i) {
505 base::FilePath profile_path = GetProfilePath(kTestCases[i].profile_path);
[email protected]a04db822013-12-11 19:14:40506 base::string16 profile_name = ASCIIToUTF16(kTestCases[i].profile_name);
[email protected]047481802013-09-16 22:26:38507
[email protected]a04db822013-12-11 19:14:40508 GetCache()->AddProfileToCache(profile_path, profile_name, base::string16(),
509 i, "");
[email protected]047481802013-09-16 22:26:38510
511 EXPECT_EQ(profile_path, GetCache()->GetPathOfProfileAtIndex(i));
512 EXPECT_EQ(profile_name, GetCache()->GetNameOfProfileAtIndex(i));
513 }
514
515 ASSERT_EQ(4U, GetCache()->GetNumberOfProfiles());
516
517 // Check that the profiles can be extracted from the local state.
[email protected]d2065e062013-12-12 23:49:52518 std::vector<base::string16> names = ProfileInfoCache::GetProfileNames();
[email protected]047481802013-09-16 22:26:38519 for (size_t i = 0; i < 4; i++)
520 ASSERT_FALSE(names[i].empty());
521}
522
[email protected]6730b1e2011-09-29 05:23:52523} // namespace