1 // Copyright 2014 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.
5 #include "ash/system/chromeos/supervised/tray_supervised_user.h"
8 #include "ash/system/user/login_status.h"
9 #include "ash/test/ash_test_base.h"
10 #include "ash/test/test_system_tray_delegate.h"
11 #include "ui/message_center/message_center.h"
12 #include "ui/message_center/notification.h"
13 #include "ui/message_center/notification_list.h"
14 #include "ui/message_center/notification_types.h"
16 using message_center::NotificationList
;
20 class TraySupervisedUserTest
: public test::AshTestBase
{
22 TraySupervisedUserTest() {}
23 ~TraySupervisedUserTest() override
{}
26 message_center::Notification
* GetPopup();
29 DISALLOW_COPY_AND_ASSIGN(TraySupervisedUserTest
);
32 message_center::Notification
* TraySupervisedUserTest::GetPopup() {
33 NotificationList::PopupNotifications popups
=
34 message_center::MessageCenter::Get()->GetPopupNotifications();
35 for (NotificationList::PopupNotifications::const_iterator iter
=
36 popups
.begin(); iter
!= popups
.end(); ++iter
) {
37 if ((*iter
)->id() == TraySupervisedUser::kNotificationId
)
43 class TraySupervisedUserInitialTest
: public TraySupervisedUserTest
{
45 TraySupervisedUserInitialTest() {}
46 ~TraySupervisedUserInitialTest() override
{}
48 void SetUp() override
;
49 void TearDown() override
;
52 DISALLOW_COPY_AND_ASSIGN(TraySupervisedUserInitialTest
);
55 void TraySupervisedUserInitialTest::SetUp() {
56 test::TestSystemTrayDelegate::SetInitialLoginStatus(
57 user::LOGGED_IN_SUPERVISED
);
58 test::AshTestBase::SetUp();
61 void TraySupervisedUserInitialTest::TearDown() {
62 test::AshTestBase::TearDown();
63 // SetInitialLoginStatus() is reset in AshTestHelper::TearDown().
66 TEST_F(TraySupervisedUserTest
, SupervisedUserHasNotification
) {
67 test::TestSystemTrayDelegate
* delegate
=
68 static_cast<test::TestSystemTrayDelegate
*>(
69 ash::Shell::GetInstance()->system_tray_delegate());
70 delegate
->SetLoginStatus(user::LOGGED_IN_SUPERVISED
);
72 message_center::Notification
* notification
= GetPopup();
73 ASSERT_NE(static_cast<message_center::Notification
*>(NULL
), notification
);
74 EXPECT_EQ(static_cast<int>(message_center::SYSTEM_PRIORITY
),
75 notification
->rich_notification_data().priority
);
78 TEST_F(TraySupervisedUserInitialTest
, SupervisedUserNoCrash
) {
79 // Initial login status is already SUPERVISED, which should create
80 // the notification and should not cause crashes.
81 message_center::Notification
* notification
= GetPopup();
82 ASSERT_NE(static_cast<message_center::Notification
*>(NULL
), notification
);
83 EXPECT_EQ(static_cast<int>(message_center::SYSTEM_PRIORITY
),
84 notification
->rich_notification_data().priority
);