Media is a bundled process which contains the following packages: com.android.providers.downloads com.android.mtp com.android.providers.media com.android.providers.downloads.ui This cl moves them to advanced battery page. 1. Bluetooth lives in category bluetooth 2. Media lives in category system Bug: 35811926 Test: RunSettingsRoboTests Change-Id: Ie229fa15e2e62b67d571988f7f4e7788a665bcdd
118 lines
4.3 KiB
Java
118 lines
4.3 KiB
Java
/*
|
|
* Copyright (C) 2017 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.android.settings.fuelgauge;
|
|
|
|
import android.content.Context;
|
|
import android.content.pm.PackageManager;
|
|
import android.os.Process;
|
|
import com.android.internal.os.BatterySipper;
|
|
import com.android.settings.SettingsRobolectricTestRunner;
|
|
import com.android.settings.TestConfig;
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.mockito.Mock;
|
|
import org.mockito.MockitoAnnotations;
|
|
import org.robolectric.annotation.Config;
|
|
|
|
import static org.mockito.Mockito.when;
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
|
|
@RunWith(SettingsRobolectricTestRunner.class)
|
|
@Config(manifest = TestConfig.MANIFEST_PATH, sdk = TestConfig.SDK_VERSION)
|
|
public class PowerUsageFeatureProviderImplTest {
|
|
private static final int UID_OTHER = Process.FIRST_APPLICATION_UID + 2;
|
|
private static final int UID_CALENDAR = Process.FIRST_APPLICATION_UID + 3;
|
|
private static final int UID_MEDIA = Process.FIRST_APPLICATION_UID + 4;
|
|
private static final String[] PACKAGES_CALENDAR = {"com.android.providers.calendar"};
|
|
private static final String[] PACKAGES_MEDIA = {"com.android.providers.media"};
|
|
@Mock
|
|
private Context mContext;
|
|
@Mock
|
|
private BatterySipper mBatterySipper;
|
|
@Mock
|
|
private PackageManager mPackageManager;
|
|
private PowerUsageFeatureProviderImpl mPowerFeatureProvider;
|
|
|
|
@Before
|
|
public void setUp() {
|
|
MockitoAnnotations.initMocks(this);
|
|
|
|
mPowerFeatureProvider = new PowerUsageFeatureProviderImpl(mContext);
|
|
when(mPackageManager.getPackagesForUid(UID_CALENDAR)).thenReturn(PACKAGES_CALENDAR);
|
|
when(mPackageManager.getPackagesForUid(UID_MEDIA)).thenReturn(PACKAGES_MEDIA);
|
|
mPowerFeatureProvider.mPackageManager = mPackageManager;
|
|
mBatterySipper.uidObj = new FakeUid(UID_OTHER);
|
|
}
|
|
|
|
@Test
|
|
public void testIsTypeSystem_UidRoot_ReturnTrue() {
|
|
mBatterySipper.drainType = BatterySipper.DrainType.APP;
|
|
when(mBatterySipper.getUid()).thenReturn(Process.ROOT_UID);
|
|
|
|
assertThat(mPowerFeatureProvider.isTypeSystem(mBatterySipper)).isTrue();
|
|
}
|
|
|
|
@Test
|
|
public void testIsTypeSystem_UidSystem_ReturnTrue() {
|
|
mBatterySipper.drainType = BatterySipper.DrainType.APP;
|
|
when(mBatterySipper.getUid()).thenReturn(Process.SYSTEM_UID);
|
|
|
|
assertThat(mPowerFeatureProvider.isTypeSystem(mBatterySipper)).isTrue();
|
|
}
|
|
|
|
@Test
|
|
public void testIsTypeSystem_UidMedia_ReturnTrue() {
|
|
mBatterySipper.drainType = BatterySipper.DrainType.APP;
|
|
when(mBatterySipper.getUid()).thenReturn(Process.MEDIA_UID);
|
|
|
|
assertThat(mPowerFeatureProvider.isTypeSystem(mBatterySipper)).isTrue();
|
|
}
|
|
|
|
@Test
|
|
public void testIsTypeSystem_AppCalendar_ReturnTrue() {
|
|
mBatterySipper.drainType = BatterySipper.DrainType.APP;
|
|
when(mBatterySipper.getUid()).thenReturn(UID_CALENDAR);
|
|
|
|
assertThat(mPowerFeatureProvider.isTypeSystem(mBatterySipper)).isTrue();
|
|
}
|
|
|
|
@Test
|
|
public void testIsTypeSystem_AppMedia_ReturnTrue() {
|
|
mBatterySipper.drainType = BatterySipper.DrainType.APP;
|
|
when(mBatterySipper.getUid()).thenReturn(UID_MEDIA);
|
|
|
|
assertThat(mPowerFeatureProvider.isTypeSystem(mBatterySipper)).isTrue();
|
|
}
|
|
|
|
@Test
|
|
public void testIsTypeSystem_UidOther_ReturnFalse() {
|
|
mBatterySipper.drainType = BatterySipper.DrainType.APP;
|
|
when(mBatterySipper.getUid()).thenReturn(UID_OTHER);
|
|
|
|
assertThat(mPowerFeatureProvider.isTypeSystem(mBatterySipper)).isFalse();
|
|
}
|
|
|
|
@Test
|
|
public void testIsTypeSystem_UidObjNull_ReturnFalse() {
|
|
mBatterySipper.drainType = BatterySipper.DrainType.APP;
|
|
mBatterySipper.uidObj = null;
|
|
|
|
assertThat(mPowerFeatureProvider.isTypeSystem(mBatterySipper)).isFalse();
|
|
}
|
|
}
|