blob: 7f07e0c70e8a304a7d427464157f1835fbd32381 [file] [log] [blame]
Geoffrey Pitsch4a7931d2016-09-15 13:11:47 -04001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.systemui.power;
18
19import static android.test.MoreAsserts.assertNotEqual;
Jason Monke9789282016-11-09 08:59:56 -050020
Geoffrey Pitsch4a7931d2016-09-15 13:11:47 -040021import static junit.framework.Assert.assertEquals;
22import static junit.framework.Assert.assertFalse;
23import static junit.framework.Assert.assertTrue;
Jason Monke9789282016-11-09 08:59:56 -050024
Chris Wren5e6c0ff2017-01-05 12:57:06 -050025import static org.mockito.Matchers.eq;
Geoffrey Pitsch4a7931d2016-09-15 13:11:47 -040026import static org.mockito.Mockito.any;
Geoffrey Pitsch4a7931d2016-09-15 13:11:47 -040027import static org.mockito.Mockito.anyString;
28import static org.mockito.Mockito.mock;
29import static org.mockito.Mockito.times;
30import static org.mockito.Mockito.verify;
31
32import android.app.Notification;
33import android.app.NotificationManager;
Geoffrey Pitsch4a7931d2016-09-15 13:11:47 -040034import android.support.test.runner.AndroidJUnit4;
35import android.test.suitebuilder.annotation.SmallTest;
Jason Monke9789282016-11-09 08:59:56 -050036
Chris Wren5e6c0ff2017-01-05 12:57:06 -050037import com.android.internal.messages.nano.SystemMessageProto.SystemMessage;
Jason Monke9789282016-11-09 08:59:56 -050038import com.android.systemui.SysuiTestCase;
Beverly334bc5f2017-07-31 10:37:17 -040039import com.android.systemui.util.NotificationChannels;
Jason Monke9789282016-11-09 08:59:56 -050040
Geoffrey Pitsch4a7931d2016-09-15 13:11:47 -040041import org.junit.Before;
42import org.junit.Test;
43import org.junit.runner.RunWith;
44import org.mockito.ArgumentCaptor;
45
46@SmallTest
47@RunWith(AndroidJUnit4.class)
Jason Monke9789282016-11-09 08:59:56 -050048public class PowerNotificationWarningsTest extends SysuiTestCase {
Geoffrey Pitsch4a7931d2016-09-15 13:11:47 -040049 private final NotificationManager mMockNotificationManager = mock(NotificationManager.class);
50 private PowerNotificationWarnings mPowerNotificationWarnings;
51
52 @Before
53 public void setUp() throws Exception {
54 // Test Instance.
Jason Monkd819c312017-08-11 12:53:36 -040055 mContext.addMockSystemService(NotificationManager.class, mMockNotificationManager);
56 mPowerNotificationWarnings = new PowerNotificationWarnings(mContext);
Geoffrey Pitsch4a7931d2016-09-15 13:11:47 -040057 }
58
59 @Test
60 public void testIsInvalidChargerWarningShowing_DefaultsToFalse() {
61 assertFalse(mPowerNotificationWarnings.isInvalidChargerWarningShowing());
62 }
63
64 @Test
65 public void testIsInvalidChargerWarningShowing_TrueAfterShow() {
66 mPowerNotificationWarnings.showInvalidChargerWarning();
67 assertTrue(mPowerNotificationWarnings.isInvalidChargerWarningShowing());
68 }
69
70 @Test
71 public void testIsInvalidChargerWarningShowing_FalseAfterDismiss() {
72 mPowerNotificationWarnings.showInvalidChargerWarning();
73 mPowerNotificationWarnings.dismissInvalidChargerWarning();
74 assertFalse(mPowerNotificationWarnings.isInvalidChargerWarningShowing());
75 }
76
77 @Test
78 public void testShowInvalidChargerNotification_NotifyAsUser() {
79 mPowerNotificationWarnings.showInvalidChargerWarning();
80 verify(mMockNotificationManager, times(1))
Chris Wren5e6c0ff2017-01-05 12:57:06 -050081 .notifyAsUser(anyString(), eq(SystemMessage.NOTE_BAD_CHARGER), any(), any());
82 verify(mMockNotificationManager, times(1)).cancelAsUser(anyString(),
83 eq(SystemMessage.NOTE_POWER_LOW), any());
Geoffrey Pitsch4a7931d2016-09-15 13:11:47 -040084 }
85
86 @Test
87 public void testDismissInvalidChargerNotification_CancelAsUser() {
88 mPowerNotificationWarnings.showInvalidChargerWarning();
89 mPowerNotificationWarnings.dismissInvalidChargerWarning();
Chris Wren5e6c0ff2017-01-05 12:57:06 -050090 verify(mMockNotificationManager, times(1)).cancelAsUser(anyString(),
91 eq(SystemMessage.NOTE_BAD_CHARGER), any());
Geoffrey Pitsch4a7931d2016-09-15 13:11:47 -040092 }
93
94 @Test
95 public void testShowLowBatteryNotification_NotifyAsUser() {
96 mPowerNotificationWarnings.showLowBatteryWarning(false);
97 verify(mMockNotificationManager, times(1))
Chris Wren5e6c0ff2017-01-05 12:57:06 -050098 .notifyAsUser(anyString(), eq(SystemMessage.NOTE_POWER_LOW), any(), any());
99 verify(mMockNotificationManager, times(1)).cancelAsUser(anyString(),
100 eq(SystemMessage.NOTE_BAD_CHARGER), any());
Geoffrey Pitsch4a7931d2016-09-15 13:11:47 -0400101 }
102
103 @Test
104 public void testDismissLowBatteryNotification_CancelAsUser() {
105 mPowerNotificationWarnings.showLowBatteryWarning(false);
106 mPowerNotificationWarnings.dismissLowBatteryWarning();
Chris Wren5e6c0ff2017-01-05 12:57:06 -0500107 verify(mMockNotificationManager, times(1)).cancelAsUser(anyString(),
108 eq(SystemMessage.NOTE_POWER_LOW), any());
Geoffrey Pitsch4a7931d2016-09-15 13:11:47 -0400109 }
110
111 @Test
Beverly334bc5f2017-07-31 10:37:17 -0400112 public void testShowLowBatteryNotification_BatteryChannel() {
Geoffrey Pitsch4a7931d2016-09-15 13:11:47 -0400113 mPowerNotificationWarnings.showLowBatteryWarning(true);
114 ArgumentCaptor<Notification> captor = ArgumentCaptor.forClass(Notification.class);
115 verify(mMockNotificationManager)
Chris Wren5e6c0ff2017-01-05 12:57:06 -0500116 .notifyAsUser(anyString(), eq(SystemMessage.NOTE_POWER_LOW),
117 captor.capture(), any());
Beverly334bc5f2017-07-31 10:37:17 -0400118 assertTrue(captor.getValue().getChannelId() == NotificationChannels.BATTERY);
Geoffrey Pitsch4a7931d2016-09-15 13:11:47 -0400119 }
Andrew Sappersteinb7caf1d2016-12-14 15:39:20 -0800120
121 @Test
Salvador Martineza6f7b252017-04-10 10:46:15 -0700122 public void testShowHighTemperatureWarning_NotifyAsUser() {
123 mPowerNotificationWarnings.showHighTemperatureWarning();
Andrew Sappersteinb7caf1d2016-12-14 15:39:20 -0800124 verify(mMockNotificationManager, times(1))
Chris Wren5e6c0ff2017-01-05 12:57:06 -0500125 .notifyAsUser(anyString(), eq(SystemMessage.NOTE_HIGH_TEMP), any(), any());
Andrew Sappersteinb7caf1d2016-12-14 15:39:20 -0800126 }
127
128 @Test
Salvador Martineza6f7b252017-04-10 10:46:15 -0700129 public void testDismissHighTemperatureWarning_CancelAsUser() {
130 mPowerNotificationWarnings.showHighTemperatureWarning();
131 mPowerNotificationWarnings.dismissHighTemperatureWarning();
Chris Wren5e6c0ff2017-01-05 12:57:06 -0500132 verify(mMockNotificationManager, times(1)).cancelAsUser(anyString(),
133 eq(SystemMessage.NOTE_HIGH_TEMP), any());
Andrew Sappersteinb7caf1d2016-12-14 15:39:20 -0800134 }
Salvador Martineza6f7b252017-04-10 10:46:15 -0700135
136 @Test
137 public void testShowThermalShutdownWarning_NotifyAsUser() {
138 mPowerNotificationWarnings.showThermalShutdownWarning();
139 verify(mMockNotificationManager, times(1))
140 .notifyAsUser(anyString(), eq(SystemMessage.NOTE_THERMAL_SHUTDOWN), any(), any());
141 }
142
143 @Test
144 public void testDismissThermalShutdownWarning_CancelAsUser() {
145 mPowerNotificationWarnings.showThermalShutdownWarning();
146 mPowerNotificationWarnings.dismissThermalShutdownWarning();
147 verify(mMockNotificationManager, times(1)).cancelAsUser(anyString(),
148 eq(SystemMessage.NOTE_THERMAL_SHUTDOWN), any());
149 }
Geoffrey Pitsch4a7931d2016-09-15 13:11:47 -0400150}