-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release-2.5.11: Bump versionCOde and versionName for 2.5.11 NotificationHelper: test that function to make sure it doesn't break in the future hotfix: NotificationHelper: fix crash on vibration preference parsing
- Loading branch information
Showing
3 changed files
with
76 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
...la/src/test/java/es/usc/citius/servando/calendula/notifications/NotificationHelperTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* Calendula - An assistant for personal medication management. | ||
* Copyright (C) 2014-2018 CiTIUS - University of Santiago de Compostela | ||
* | ||
* Calendula is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this software. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package es.usc.citius.servando.calendula.notifications | ||
|
||
import es.usc.citius.servando.calendula.util.PreferenceKeys | ||
import es.usc.citius.servando.calendula.util.PreferenceUtils | ||
import org.junit.Assert.assertFalse | ||
import org.junit.Assert.assertTrue | ||
import org.junit.Test | ||
import org.junit.runner.RunWith | ||
import org.robolectric.RobolectricTestRunner | ||
import org.robolectric.RuntimeEnvironment | ||
|
||
|
||
@RunWith(RobolectricTestRunner::class) | ||
class NotificationHelperTest { | ||
|
||
|
||
@Test | ||
fun `Vibration is enabled when the vibration preference is the default value`() { | ||
PreferenceUtils.edit().remove(PreferenceKeys.SETTINGS_NOTIFICATION_VIBRATION.key()).apply() | ||
|
||
val notificationVibrationEnabled = | ||
NotificationHelper.isNotificationVibrationEnabled(RuntimeEnvironment.systemContext) | ||
|
||
assertTrue(notificationVibrationEnabled) | ||
} | ||
|
||
@Test | ||
fun `Vibration is enabled when the vibration preference is set to vibrate`() { | ||
PreferenceUtils.edit().putString(PreferenceKeys.SETTINGS_NOTIFICATION_VIBRATION.key(), "0").apply() | ||
|
||
val notificationVibrationEnabled = | ||
NotificationHelper.isNotificationVibrationEnabled(RuntimeEnvironment.systemContext) | ||
|
||
assertTrue(notificationVibrationEnabled) | ||
} | ||
|
||
|
||
@Test | ||
fun `Vibration is disabled when the vibration preference is set to off`() { | ||
PreferenceUtils.edit().putString(PreferenceKeys.SETTINGS_NOTIFICATION_VIBRATION.key(), "3").apply() | ||
|
||
val notificationVibrationEnabled = | ||
NotificationHelper.isNotificationVibrationEnabled(RuntimeEnvironment.systemContext) | ||
|
||
assertFalse(notificationVibrationEnabled) | ||
} | ||
} |