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
|
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/system/unified/user_chooser_detailed_view_controller.h"
#include <memory>
#include "ash/public/cpp/ash_view_ids.h"
#include "ash/public/cpp/system_tray_test_api.h"
#include "ash/root_window_controller.h"
#include "ash/session/session_controller_impl.h"
#include "ash/shell.h"
#include "ash/system/unified/quick_settings_footer.h"
#include "ash/system/unified/quick_settings_view.h"
#include "ash/system/unified/unified_system_tray.h"
#include "ash/system/unified/unified_system_tray_bubble.h"
#include "ash/test/ash_test_base.h"
#include "ash/wm/overview/overview_controller.h"
#include "components/account_id/account_id.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/compositor/scoped_animation_duration_scale_mode.h"
#include "ui/views/controls/menu/menu_item_view.h"
#include "ui/views/widget/widget.h"
namespace ash {
namespace {
class UserChooserDetailedViewControllerTest : public AshTestBase {
public:
UserChooserDetailedViewControllerTest() = default;
UserChooserDetailedViewControllerTest(
const UserChooserDetailedViewControllerTest&) = delete;
UserChooserDetailedViewControllerTest& operator=(
const UserChooserDetailedViewControllerTest&) = delete;
~UserChooserDetailedViewControllerTest() override = default;
// AshTestBase
void SetUp() override {
AshTestBase::SetUp();
tray_test_api_ = std::make_unique<SystemTrayTestApi>();
disable_animations_ =
std::make_unique<ui::ScopedAnimationDurationScaleMode>(
ui::ScopedAnimationDurationScaleMode::ZERO_DURATION);
}
bool IsBubbleViewVisible(ViewID view_id) const {
return tray_test_api_->IsBubbleViewVisible(view_id, /*open_tray=*/false);
}
void ShowUserChooserView() {
// Click the power button to show the menu.
ASSERT_TRUE(IsBubbleViewVisible(VIEW_ID_QS_POWER_BUTTON));
tray_test_api()->ClickBubbleView(VIEW_ID_QS_POWER_BUTTON);
PowerButton* power_button = GetPrimaryUnifiedSystemTray()
->bubble()
->quick_settings_view()
->footer_for_testing()
->power_button_for_testing();
ASSERT_TRUE(power_button->IsMenuShowing());
// Click the user email address.
views::View* email_item =
power_button->GetMenuViewForTesting()->GetMenuItemByID(
VIEW_ID_QS_POWER_EMAIL_MENU_BUTTON);
ASSERT_TRUE(email_item);
LeftClickOn(email_item);
}
SystemTrayTestApi* tray_test_api() { return tray_test_api_.get(); }
private:
std::unique_ptr<ui::ScopedAnimationDurationScaleMode> disable_animations_;
std::unique_ptr<SystemTrayTestApi> tray_test_api_;
};
TEST_F(UserChooserDetailedViewControllerTest,
ShowMultiProfileLoginWithOverview) {
// Enter overview mode.
EnterOverview();
ASSERT_TRUE(Shell::Get()->overview_controller()->InOverviewSession());
// Show system tray.
tray_test_api()->ShowBubble();
ASSERT_TRUE(tray_test_api()->IsTrayBubbleOpen());
// Show the user chooser view.
ShowUserChooserView();
// Click on add user button to show multi profile login window.
ASSERT_TRUE(tray_test_api()->IsBubbleViewVisible(VIEW_ID_ADD_USER_BUTTON,
/*open_tray=*/false));
tray_test_api()->ClickBubbleView(VIEW_ID_ADD_USER_BUTTON);
}
TEST_F(UserChooserDetailedViewControllerTest, SwitchUserWithOverview) {
auto* session_controller = Shell::Get()->session_controller();
auto first_user = session_controller->GetActiveAccountId();
// Add a secondary user then switch back to first user.
auto secondary_user = SimulateUserLogin({"secondary@gmail.com"});
SwitchActiveUser(first_user);
ASSERT_NE(session_controller->GetActiveAccountId(), secondary_user);
// Create an activatable widget.
std::unique_ptr<views::Widget> widget =
CreateTestWidget(views::Widget::InitParams::WIDGET_OWNS_NATIVE_WIDGET);
// Enter overview mode.
EnterOverview();
ASSERT_TRUE(Shell::Get()->overview_controller()->InOverviewSession());
// Show system tray.
tray_test_api()->ShowBubble();
ASSERT_TRUE(tray_test_api()->IsTrayBubbleOpen());
// Show the user chooser view.
ShowUserChooserView();
const int secondary_user_button_id = VIEW_ID_USER_ITEM_BUTTON_START + 1;
ASSERT_TRUE(tray_test_api()->IsBubbleViewVisible(secondary_user_button_id,
/*open_tray=*/false));
tray_test_api()->ClickBubbleView(secondary_user_button_id);
// Active user is switched.
EXPECT_EQ(session_controller->GetActiveAccountId(), secondary_user);
}
TEST_F(UserChooserDetailedViewControllerTest,
MultiProfileLoginDisabledForFamilyLinkUsers) {
EXPECT_TRUE(UserChooserDetailedViewController::IsUserChooserEnabled());
ClearLogin();
// Log in as a child user.
SimulateUserLogin({"child@gmail.com", user_manager::UserType::kChild});
EXPECT_FALSE(UserChooserDetailedViewController::IsUserChooserEnabled());
}
} // namespace
} // namespace ash
|