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 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
|
// 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.
#import "chrome/browser/ui/cocoa/profiles/profile_chooser_controller.h"
#include "base/command_line.h"
#import "base/mac/foundation_util.h"
#include "base/mac/scoped_nsobject.h"
#include "base/memory/scoped_ptr.h"
#include "base/strings/sys_string_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/prefs/pref_service_syncable.h"
#include "chrome/browser/profiles/avatar_menu.h"
#include "chrome/browser/profiles/profile_info_cache.h"
#include "chrome/browser/services/gcm/fake_gcm_profile_service.h"
#include "chrome/browser/services/gcm/gcm_profile_service_factory.h"
#include "chrome/browser/signin/account_tracker_service_factory.h"
#include "chrome/browser/signin/fake_account_tracker_service.h"
#include "chrome/browser/signin/fake_profile_oauth2_token_service.h"
#include "chrome/browser/signin/fake_profile_oauth2_token_service_builder.h"
#include "chrome/browser/signin/profile_oauth2_token_service_factory.h"
#include "chrome/browser/signin/signin_header_helper.h"
#include "chrome/browser/signin/signin_manager_factory.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/cocoa/cocoa_profile_test.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/pref_names.h"
#include "components/signin/core/browser/profile_oauth2_token_service.h"
#include "components/signin/core/browser/signin_manager.h"
#include "components/signin/core/common/profile_management_switches.h"
const std::string kEmail = "user@gmail.com";
const std::string kSecondaryEmail = "user2@gmail.com";
const std::string kLoginToken = "oauth2_login_token";
class ProfileChooserControllerTest : public CocoaProfileTest {
public:
ProfileChooserControllerTest() {
TestingProfile::TestingFactories factories;
factories.push_back(
std::make_pair(ProfileOAuth2TokenServiceFactory::GetInstance(),
BuildFakeProfileOAuth2TokenService));
factories.push_back(
std::make_pair(AccountTrackerServiceFactory::GetInstance(),
FakeAccountTrackerService::Build));
AddTestingFactories(factories);
}
void SetUp() override {
CocoaProfileTest::SetUp();
ASSERT_TRUE(browser()->profile());
gcm::GCMProfileServiceFactory::GetInstance()->SetTestingFactory(
browser()->profile(), gcm::FakeGCMProfileService::Build);
testing_profile_manager()->
CreateTestingProfile("test1", scoped_ptr<PrefServiceSyncable>(),
base::ASCIIToUTF16("Test 1"), 0, std::string(),
testing_factories());
testing_profile_manager()->
CreateTestingProfile("test2", scoped_ptr<PrefServiceSyncable>(),
base::ASCIIToUTF16("Test 2"), 1, std::string(),
TestingProfile::TestingFactories());
menu_ = new AvatarMenu(testing_profile_manager()->profile_info_cache(),
NULL, NULL);
menu_->RebuildMenu();
// There should be the default profile + two profiles we created.
EXPECT_EQ(3U, menu_->GetNumberOfItems());
}
void TearDown() override {
[controller() close];
controller_.reset();
CocoaProfileTest::TearDown();
}
void StartProfileChooserController() {
NSRect frame = [test_window() frame];
NSPoint point = NSMakePoint(NSMidX(frame), NSMidY(frame));
controller_.reset([[ProfileChooserController alloc]
initWithBrowser:browser()
anchoredAt:point
viewMode:profiles::BUBBLE_VIEW_MODE_PROFILE_CHOOSER
tutorialMode:profiles::TUTORIAL_MODE_NONE
serviceType:signin::GAIA_SERVICE_TYPE_NONE]);
[controller_ showWindow:nil];
}
void EnableFastUserSwitching() {
base::CommandLine::ForCurrentProcess()->AppendSwitch(
switches::kFastUserSwitching);
}
ProfileChooserController* controller() { return controller_; }
AvatarMenu* menu() { return menu_; }
private:
base::scoped_nsobject<ProfileChooserController> controller_;
// Weak; owned by |controller_|.
AvatarMenu* menu_;
DISALLOW_COPY_AND_ASSIGN(ProfileChooserControllerTest);
};
TEST_F(ProfileChooserControllerTest, InitialLayoutWithNewMenu) {
switches::EnableNewAvatarMenuForTesting(
base::CommandLine::ForCurrentProcess());
StartProfileChooserController();
NSArray* subviews = [[[controller() window] contentView] subviews];
ASSERT_EQ(2U, [subviews count]);
subviews = [[subviews objectAtIndex:0] subviews];
// Three profiles means we should have one active card, one separator and
// one option buttons view. We also have an update promo for the new avatar
// menu.
// TODO(noms): Enforcing 4U fails on the waterfall debug bots, but it's not
// reproducible anywhere else.
ASSERT_GE([subviews count], 3U);
// There should be two buttons and a separator in the option buttons view.
NSArray* buttonSubviews = [[subviews objectAtIndex:0] subviews];
ASSERT_EQ(3U, [buttonSubviews count]);
// There should be an incognito button.
NSButton* incognitoButton =
base::mac::ObjCCast<NSButton>([buttonSubviews objectAtIndex:0]);
EXPECT_EQ(@selector(goIncognito:), [incognitoButton action]);
EXPECT_EQ(controller(), [incognitoButton target]);
// There should be a separator.
EXPECT_TRUE([[subviews objectAtIndex:1] isKindOfClass:[NSBox class]]);
// There should be a user switcher button.
NSButton* userSwitcherButton =
base::mac::ObjCCast<NSButton>([buttonSubviews objectAtIndex:2]);
EXPECT_EQ(@selector(showUserManager:), [userSwitcherButton action]);
EXPECT_EQ(controller(), [userSwitcherButton target]);
// There should be a separator.
EXPECT_TRUE([[subviews objectAtIndex:1] isKindOfClass:[NSBox class]]);
// There should be the profile avatar, name and links container in the active
// card view. The links displayed in the container are checked separately.
NSArray* activeCardSubviews = [[subviews objectAtIndex:2] subviews];
ASSERT_EQ(3U, [activeCardSubviews count]);
// Profile icon.
NSView* activeProfileImage = [activeCardSubviews objectAtIndex:2];
EXPECT_TRUE([activeProfileImage isKindOfClass:[NSButton class]]);
// Profile name.
NSView* activeProfileName = [activeCardSubviews objectAtIndex:1];
EXPECT_TRUE([activeProfileName isKindOfClass:[NSButton class]]);
EXPECT_EQ(menu()->GetItemAt(0).name, base::SysNSStringToUTF16(
[base::mac::ObjCCast<NSButton>(activeProfileName) title]));
// Profile links. This is a local profile, so there should be a signin button
// and a signin promo.
NSArray* linksSubviews = [[activeCardSubviews objectAtIndex:0] subviews];
ASSERT_EQ(2U, [linksSubviews count]);
NSButton* link = base::mac::ObjCCast<NSButton>(
[linksSubviews objectAtIndex:0]);
EXPECT_EQ(@selector(showInlineSigninPage:), [link action]);
EXPECT_EQ(controller(), [link target]);
NSTextField* promo = base::mac::ObjCCast<NSTextField>(
[linksSubviews objectAtIndex:1]);
EXPECT_GT([[promo stringValue] length], 0U);
}
TEST_F(ProfileChooserControllerTest, InitialLayoutWithFastUserSwitcher) {
switches::EnableNewAvatarMenuForTesting(
base::CommandLine::ForCurrentProcess());
EnableFastUserSwitching();
StartProfileChooserController();
NSArray* subviews = [[[controller() window] contentView] subviews];
ASSERT_EQ(2U, [subviews count]);
subviews = [[subviews objectAtIndex:0] subviews];
// Three profiles means we should have one active card and a
// fast user switcher which has two "other" profiles and 2 separators, and
// an option buttons view with its separator. We also have a promo for
// the new avatar menu.
// TODO(noms): Enforcing 8U fails on the waterfall debug bots, but it's not
// reproducible anywhere else.
ASSERT_GE([subviews count], 7U);
// There should be two buttons and a separator in the option buttons view.
// These buttons are tested in InitialLayoutWithNewMenu.
NSArray* buttonSubviews = [[subviews objectAtIndex:0] subviews];
ASSERT_EQ(3U, [buttonSubviews count]);
// There should be a separator.
EXPECT_TRUE([[subviews objectAtIndex:1] isKindOfClass:[NSBox class]]);
// There should be two "other profiles" items. The items are drawn from the
// bottom up, so in the opposite order of those in the AvatarMenu.
int profileIndex = 1;
for (int i = 5; i >= 2; i -= 2) {
// Each profile button has a separator.
EXPECT_TRUE([[subviews objectAtIndex:i] isKindOfClass:[NSBox class]]);
NSButton* button = base::mac::ObjCCast<NSButton>(
[subviews objectAtIndex:i-1]);
EXPECT_EQ(menu()->GetItemAt(profileIndex).name,
base::SysNSStringToUTF16([button title]));
EXPECT_EQ(profileIndex, [button tag]);
EXPECT_EQ(@selector(switchToProfile:), [button action]);
EXPECT_EQ(controller(), [button target]);
profileIndex++;
}
// There should be the profile avatar, name and links container in the active
// card view. The links displayed in the container are checked separately.
NSArray* activeCardSubviews = [[subviews objectAtIndex:6] subviews];
ASSERT_EQ(3U, [activeCardSubviews count]);
// Profile icon.
NSView* activeProfileImage = [activeCardSubviews objectAtIndex:2];
EXPECT_TRUE([activeProfileImage isKindOfClass:[NSButton class]]);
// Profile name.
NSView* activeProfileName = [activeCardSubviews objectAtIndex:1];
EXPECT_TRUE([activeProfileName isKindOfClass:[NSButton class]]);
EXPECT_EQ(menu()->GetItemAt(0).name, base::SysNSStringToUTF16(
[base::mac::ObjCCast<NSButton>(activeProfileName) title]));
// Profile links. This is a local profile, so there should be a signin button
// and a signin promo. These are also tested in InitialLayoutWithNewMenu.
NSArray* linksSubviews = [[activeCardSubviews objectAtIndex:0] subviews];
EXPECT_EQ(2U, [linksSubviews count]);
}
TEST_F(ProfileChooserControllerTest, OtherProfilesSortedAlphabetically) {
switches::EnableNewAvatarMenuForTesting(
base::CommandLine::ForCurrentProcess());
EnableFastUserSwitching();
// Add two extra profiles, to make sure sorting is alphabetical and not
// by order of creation.
testing_profile_manager()->
CreateTestingProfile("test3", scoped_ptr<PrefServiceSyncable>(),
base::ASCIIToUTF16("New Profile"), 1, std::string(),
TestingProfile::TestingFactories());
testing_profile_manager()->
CreateTestingProfile("test4", scoped_ptr<PrefServiceSyncable>(),
base::ASCIIToUTF16("Another Test"), 1, std::string(),
TestingProfile::TestingFactories());
StartProfileChooserController();
NSArray* subviews = [[[controller() window] contentView] subviews];
ASSERT_EQ(2U, [subviews count]);
subviews = [[subviews objectAtIndex:0] subviews];
NSString* sortedNames[] = { @"Another Test",
@"New Profile",
@"Test 1",
@"Test 2" };
// There are four "other" profiles, each with a button and a separator, an
// active profile card, and an option buttons view with a separator. We
// also have an update promo for the new avatar menu.
// TODO(noms): Enforcing 12U fails on the waterfall debug bots, but it's not
// reproducible anywhere else.
ASSERT_GE([subviews count], 11U);
// There should be four "other profiles" items, sorted alphabetically. The
// "other profiles" start at index 2 (after the option buttons view and its
// separator), and each have a separator. We need to iterate through the
// profiles in the order displayed in the bubble, which is opposite from the
// drawn order.
int sortedNameIndex = 0;
for (int i = 9; i >= 2; i -= 2) {
// The item at index i is the separator.
NSButton* button = base::mac::ObjCCast<NSButton>(
[subviews objectAtIndex:i-1]);
EXPECT_TRUE(
[[button title] isEqualToString:sortedNames[sortedNameIndex++]]);
}
}
TEST_F(ProfileChooserControllerTest,
LocalProfileActiveCardLinksWithNewMenu) {
switches::EnableNewAvatarMenuForTesting(
base::CommandLine::ForCurrentProcess());
StartProfileChooserController();
NSArray* subviews = [[[controller() window] contentView] subviews];
ASSERT_EQ(2U, [subviews count]);
subviews = [[subviews objectAtIndex:0] subviews];
NSArray* activeCardSubviews = [[subviews objectAtIndex:2] subviews];
NSArray* activeCardLinks = [[activeCardSubviews objectAtIndex:0] subviews];
ASSERT_EQ(2U, [activeCardLinks count]);
// There should be a sign in button.
NSButton* link = base::mac::ObjCCast<NSButton>(
[activeCardLinks objectAtIndex:0]);
EXPECT_EQ(@selector(showInlineSigninPage:), [link action]);
EXPECT_EQ(controller(), [link target]);
// Local profiles have a signin promo.
NSTextField* promo = base::mac::ObjCCast<NSTextField>(
[activeCardLinks objectAtIndex:1]);
EXPECT_GT([[promo stringValue] length], 0U);
}
TEST_F(ProfileChooserControllerTest,
SignedInProfileActiveCardLinksWithAccountConsistency) {
switches::EnableAccountConsistencyForTesting(
base::CommandLine::ForCurrentProcess());
// Sign in the first profile.
ProfileInfoCache* cache = testing_profile_manager()->profile_info_cache();
cache->SetUserNameOfProfileAtIndex(0, base::ASCIIToUTF16(kEmail));
StartProfileChooserController();
NSArray* subviews = [[[controller() window] contentView] subviews];
ASSERT_EQ(2U, [subviews count]);
subviews = [[subviews objectAtIndex:0] subviews];
NSArray* activeCardSubviews = [[subviews objectAtIndex:2] subviews];
NSArray* activeCardLinks = [[activeCardSubviews objectAtIndex:0] subviews];
// There is one link: manage accounts.
ASSERT_EQ(1U, [activeCardLinks count]);
NSButton* manageAccountsLink =
base::mac::ObjCCast<NSButton>([activeCardLinks objectAtIndex:0]);
EXPECT_EQ(@selector(showAccountManagement:), [manageAccountsLink action]);
EXPECT_EQ(controller(), [manageAccountsLink target]);
}
TEST_F(ProfileChooserControllerTest,
SignedInProfileActiveCardLinksWithNewMenu) {
switches::EnableNewAvatarMenuForTesting(
base::CommandLine::ForCurrentProcess());
// Sign in the first profile.
ProfileInfoCache* cache = testing_profile_manager()->profile_info_cache();
cache->SetUserNameOfProfileAtIndex(0, base::ASCIIToUTF16(kEmail));
StartProfileChooserController();
NSArray* subviews = [[[controller() window] contentView] subviews];
ASSERT_EQ(2U, [subviews count]);
subviews = [[subviews objectAtIndex:0] subviews];
NSArray* activeCardSubviews = [[subviews objectAtIndex:2] subviews];
NSArray* activeCardLinks = [[activeCardSubviews objectAtIndex:0] subviews];
// There is one disabled button with the user's email.
ASSERT_EQ(1U, [activeCardLinks count]);
NSButton* emailButton =
base::mac::ObjCCast<NSButton>([activeCardLinks objectAtIndex:0]);
EXPECT_EQ(kEmail, base::SysNSStringToUTF8([emailButton title]));
EXPECT_EQ(nil, [emailButton action]);
EXPECT_FALSE([emailButton isEnabled]);
}
TEST_F(ProfileChooserControllerTest, AccountManagementLayout) {
switches::EnableAccountConsistencyForTesting(
base::CommandLine::ForCurrentProcess());
// Sign in the first profile.
ProfileInfoCache* cache = testing_profile_manager()->profile_info_cache();
cache->SetUserNameOfProfileAtIndex(0, base::ASCIIToUTF16(kEmail));
// Mark that we are using the profile name on purpose, so that we don't
// fallback to testing the algorithm that chooses which default name
// should be used.
cache->SetProfileIsUsingDefaultNameAtIndex(0, false);
// Set up the signin manager and the OAuth2Tokens.
Profile* profile = browser()->profile();
SigninManagerFactory::GetForProfile(profile)->
SetAuthenticatedUsername(kEmail);
ProfileOAuth2TokenServiceFactory::GetForProfile(profile)->
UpdateCredentials(kEmail, kLoginToken);
ProfileOAuth2TokenServiceFactory::GetForProfile(profile)->
UpdateCredentials(kSecondaryEmail, kLoginToken);
StartProfileChooserController();
[controller() initMenuContentsWithView:
profiles::BUBBLE_VIEW_MODE_ACCOUNT_MANAGEMENT];
NSArray* subviews = [[[controller() window] contentView] subviews];
ASSERT_EQ(2U, [subviews count]);
subviews = [[subviews objectAtIndex:0] subviews];
// There should be one active card, one accounts container, two separators
// and one option buttons view.
ASSERT_EQ(5U, [subviews count]);
// There should be three buttons and two separators in the option
// buttons view.
NSArray* buttonSubviews = [[subviews objectAtIndex:0] subviews];
ASSERT_EQ(3U, [buttonSubviews count]);
// There should be a separator.
EXPECT_TRUE([[buttonSubviews objectAtIndex:1] isKindOfClass:[NSBox class]]);
// There should be an incognito button.
NSButton* incognitoButton =
base::mac::ObjCCast<NSButton>([buttonSubviews objectAtIndex:0]);
EXPECT_EQ(@selector(goIncognito:), [incognitoButton action]);
EXPECT_EQ(controller(), [incognitoButton target]);
// There should be a separator.
EXPECT_TRUE([[subviews objectAtIndex:3] isKindOfClass:[NSBox class]]);
// There should be a user switcher button.
NSButton* userSwitcherButton =
base::mac::ObjCCast<NSButton>([buttonSubviews objectAtIndex:2]);
EXPECT_EQ(@selector(showUserManager:), [userSwitcherButton action]);
EXPECT_EQ(controller(), [userSwitcherButton target]);
// In the accounts view, there should be the account list container
// accounts and one "add accounts" button.
NSArray* accountsSubviews = [[subviews objectAtIndex:2] subviews];
ASSERT_EQ(2U, [accountsSubviews count]);
NSButton* addAccountsButton =
base::mac::ObjCCast<NSButton>([accountsSubviews objectAtIndex:0]);
EXPECT_EQ(@selector(addAccount:), [addAccountsButton action]);
EXPECT_EQ(controller(), [addAccountsButton target]);
// There should be two accounts in the account list container.
NSArray* accountsListSubviews = [[accountsSubviews objectAtIndex:1] subviews];
ASSERT_EQ(2U, [accountsListSubviews count]);
NSButton* genericAccount =
base::mac::ObjCCast<NSButton>([accountsListSubviews objectAtIndex:0]);
NSButton* genericAccountDelete = base::mac::ObjCCast<NSButton>(
[[genericAccount subviews] objectAtIndex:0]);
EXPECT_EQ(@selector(showAccountRemovalView:), [genericAccountDelete action]);
EXPECT_EQ(controller(), [genericAccountDelete target]);
EXPECT_NE(-1, [genericAccountDelete tag]);
// Primary accounts are always last.
NSButton* primaryAccount =
base::mac::ObjCCast<NSButton>([accountsListSubviews objectAtIndex:1]);
NSButton* primaryAccountDelete = base::mac::ObjCCast<NSButton>(
[[primaryAccount subviews] objectAtIndex:0]);
EXPECT_EQ(@selector(showAccountRemovalView:), [primaryAccountDelete action]);
EXPECT_EQ(controller(), [primaryAccountDelete target]);
EXPECT_EQ(-1, [primaryAccountDelete tag]);
// There should be another separator.
EXPECT_TRUE([[subviews objectAtIndex:3] isKindOfClass:[NSBox class]]);
// There should be the profile avatar, name and a "hide accounts" link
// container in the active card view.
NSArray* activeCardSubviews = [[subviews objectAtIndex:4] subviews];
ASSERT_EQ(3U, [activeCardSubviews count]);
// Profile icon.
NSView* activeProfileImage = [activeCardSubviews objectAtIndex:2];
EXPECT_TRUE([activeProfileImage isKindOfClass:[NSButton class]]);
// Profile name.
NSView* activeProfileName = [activeCardSubviews objectAtIndex:1];
EXPECT_TRUE([activeProfileName isKindOfClass:[NSButton class]]);
EXPECT_EQ(menu()->GetItemAt(0).name, base::SysNSStringToUTF16(
[base::mac::ObjCCast<NSButton>(activeProfileName) title]));
// Profile links. This is a local profile, so there should be a signin button.
NSArray* linksSubviews = [[activeCardSubviews objectAtIndex:0] subviews];
ASSERT_EQ(1U, [linksSubviews count]);
NSButton* link = base::mac::ObjCCast<NSButton>(
[linksSubviews objectAtIndex:0]);
EXPECT_EQ(@selector(hideAccountManagement:), [link action]);
EXPECT_EQ(controller(), [link target]);
}
TEST_F(ProfileChooserControllerTest, SignedInProfileLockDisabled) {
switches::EnableNewProfileManagementForTesting(
base::CommandLine::ForCurrentProcess());
// Sign in the first profile.
ProfileInfoCache* cache = testing_profile_manager()->profile_info_cache();
cache->SetUserNameOfProfileAtIndex(0, base::ASCIIToUTF16(kEmail));
// The preference, not the email, determines whether the profile can lock.
browser()->profile()->GetPrefs()->SetString(
prefs::kGoogleServicesHostedDomain, "chromium.org");
StartProfileChooserController();
NSArray* subviews = [[[controller() window] contentView] subviews];
ASSERT_EQ(2U, [subviews count]);
subviews = [[subviews objectAtIndex:0] subviews];
// There will be two buttons and one separators in the option buttons view.
NSArray* buttonSubviews = [[subviews objectAtIndex:0] subviews];
ASSERT_EQ(3U, [buttonSubviews count]);
// The last button should not be the lock button.
NSButton* lastButton =
base::mac::ObjCCast<NSButton>([buttonSubviews objectAtIndex:0]);
ASSERT_TRUE(lastButton);
EXPECT_NE(@selector(lockProfile:), [lastButton action]);
}
TEST_F(ProfileChooserControllerTest, SignedInProfileLockEnabled) {
switches::EnableNewProfileManagementForTesting(
base::CommandLine::ForCurrentProcess());
// Sign in the first profile.
ProfileInfoCache* cache = testing_profile_manager()->profile_info_cache();
cache->SetUserNameOfProfileAtIndex(0, base::ASCIIToUTF16(kEmail));
// The preference, not the email, determines whether the profile can lock.
browser()->profile()->GetPrefs()->SetString(
prefs::kGoogleServicesHostedDomain, "google.com");
// Lock is only available where a supervised user is present.
cache->SetSupervisedUserIdOfProfileAtIndex(1, kEmail);
StartProfileChooserController();
NSArray* subviews = [[[controller() window] contentView] subviews];
ASSERT_EQ(2U, [subviews count]);
subviews = [[subviews objectAtIndex:0] subviews];
// There will be three buttons and two separators in the option buttons view.
NSArray* buttonSubviews = [[subviews objectAtIndex:0] subviews];
ASSERT_EQ(5U, [buttonSubviews count]);
// There should be a lock button.
NSButton* lockButton =
base::mac::ObjCCast<NSButton>([buttonSubviews objectAtIndex:0]);
ASSERT_TRUE(lockButton);
EXPECT_EQ(@selector(lockProfile:), [lockButton action]);
EXPECT_EQ(controller(), [lockButton target]);
EXPECT_TRUE([lockButton isEnabled]);
}
|