| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ash/system/chromeos/supervised/tray_supervised_user.h" | 5 #include "ash/system/chromeos/supervised/tray_supervised_user.h" |
| 6 | 6 |
| 7 #include "ash/shell.h" | |
| 8 #include "ash/system/user/login_status.h" | 7 #include "ash/system/user/login_status.h" |
| 9 #include "ash/test/ash_test_base.h" | 8 #include "ash/test/ash_test_base.h" |
| 10 #include "ash/test/test_system_tray_delegate.h" | 9 #include "ash/test/test_system_tray_delegate.h" |
| 11 #include "ui/message_center/message_center.h" | 10 #include "ui/message_center/message_center.h" |
| 12 #include "ui/message_center/notification.h" | 11 #include "ui/message_center/notification.h" |
| 13 #include "ui/message_center/notification_list.h" | 12 #include "ui/message_center/notification_list.h" |
| 14 #include "ui/message_center/notification_types.h" | 13 #include "ui/message_center/notification_types.h" |
| 15 | 14 |
| 16 using message_center::NotificationList; | 15 using message_center::NotificationList; |
| 17 | 16 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 test::TestSystemTrayDelegate::SetInitialLoginStatus(LoginStatus::SUPERVISED); | 55 test::TestSystemTrayDelegate::SetInitialLoginStatus(LoginStatus::SUPERVISED); |
| 57 test::AshTestBase::SetUp(); | 56 test::AshTestBase::SetUp(); |
| 58 } | 57 } |
| 59 | 58 |
| 60 void TraySupervisedUserInitialTest::TearDown() { | 59 void TraySupervisedUserInitialTest::TearDown() { |
| 61 test::AshTestBase::TearDown(); | 60 test::AshTestBase::TearDown(); |
| 62 // SetInitialLoginStatus() is reset in AshTestHelper::TearDown(). | 61 // SetInitialLoginStatus() is reset in AshTestHelper::TearDown(). |
| 63 } | 62 } |
| 64 | 63 |
| 65 TEST_F(TraySupervisedUserTest, SupervisedUserHasNotification) { | 64 TEST_F(TraySupervisedUserTest, SupervisedUserHasNotification) { |
| 66 test::TestSystemTrayDelegate* delegate = | 65 test::TestSystemTrayDelegate* delegate = GetSystemTrayDelegate(); |
| 67 static_cast<test::TestSystemTrayDelegate*>( | |
| 68 ash::Shell::GetInstance()->system_tray_delegate()); | |
| 69 delegate->SetLoginStatus(LoginStatus::SUPERVISED); | 66 delegate->SetLoginStatus(LoginStatus::SUPERVISED); |
| 70 | 67 |
| 71 message_center::Notification* notification = GetPopup(); | 68 message_center::Notification* notification = GetPopup(); |
| 72 ASSERT_NE(static_cast<message_center::Notification*>(NULL), notification); | 69 ASSERT_NE(static_cast<message_center::Notification*>(NULL), notification); |
| 73 EXPECT_EQ(static_cast<int>(message_center::SYSTEM_PRIORITY), | 70 EXPECT_EQ(static_cast<int>(message_center::SYSTEM_PRIORITY), |
| 74 notification->rich_notification_data().priority); | 71 notification->rich_notification_data().priority); |
| 75 } | 72 } |
| 76 | 73 |
| 77 TEST_F(TraySupervisedUserInitialTest, SupervisedUserNoCrash) { | 74 TEST_F(TraySupervisedUserInitialTest, SupervisedUserNoCrash) { |
| 78 // Initial login status is already SUPERVISED, which should create | 75 // Initial login status is already SUPERVISED, which should create |
| 79 // the notification and should not cause crashes. | 76 // the notification and should not cause crashes. |
| 80 message_center::Notification* notification = GetPopup(); | 77 message_center::Notification* notification = GetPopup(); |
| 81 ASSERT_NE(static_cast<message_center::Notification*>(NULL), notification); | 78 ASSERT_NE(static_cast<message_center::Notification*>(NULL), notification); |
| 82 EXPECT_EQ(static_cast<int>(message_center::SYSTEM_PRIORITY), | 79 EXPECT_EQ(static_cast<int>(message_center::SYSTEM_PRIORITY), |
| 83 notification->rich_notification_data().priority); | 80 notification->rich_notification_data().priority); |
| 84 } | 81 } |
| 85 | 82 |
| 86 } // namespace | 83 } // namespace ash |
| OLD | NEW |