Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
Signed-off-by: alperozturk <[email protected]>
  • Loading branch information
alperozturk96 authored and backportbot-nextcloud[bot] committed Jan 15, 2024
1 parent 8bcdfce commit 32bc97a
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,13 @@

package com.nextcloud.client.device

import android.annotation.SuppressLint
import android.content.Context
import android.content.Intent
import android.os.BatteryManager
import android.os.Build
import android.os.PowerManager
import com.nextcloud.client.preferences.AppPreferences
import com.nextcloud.utils.extensions.registerBroadcastReceiver
import com.owncloud.android.datamodel.ReceiverFlag
import org.junit.Assert.assertEquals
import org.junit.Assert.assertFalse
import org.junit.Assert.assertTrue
Expand Down Expand Up @@ -128,6 +127,7 @@ class TestPowerManagementService {
}
}

@SuppressLint("UnspecifiedRegisterReceiverFlag")
class Battery : Base() {

companion object {
Expand All @@ -139,7 +139,7 @@ class TestPowerManagementService {

@Before
fun setUp() {
whenever(context.registerBroadcastReceiver(anyOrNull(), anyOrNull(), ReceiverFlag.NotExported)).thenReturn(
whenever(context.registerReceiver(anyOrNull(), anyOrNull())).thenReturn(
intent
)
}
Expand Down Expand Up @@ -197,14 +197,14 @@ class TestPowerManagementService {
// device has API level P or below
// battery status sticky intent is NOT available
whenever(deviceInfo.apiLevel).thenReturn(Build.VERSION_CODES.P)
whenever(context.registerBroadcastReceiver(anyOrNull(), anyOrNull(), ReceiverFlag.NotExported)).thenReturn(
whenever(context.registerReceiver(anyOrNull(), anyOrNull())).thenReturn(
null
)

// THEN
// charging flag is false
assertFalse(powerManagementService.battery.isCharging)
verify(context).registerBroadcastReceiver(anyOrNull(), any(), ReceiverFlag.NotExported)
verify(context).registerReceiver(anyOrNull(), any())
}

@Test
Expand Down

0 comments on commit 32bc97a

Please sign in to comment.