This commit *only* changes imports and optimize imports. We don't do anything else. This patch can't compile pass and run test case. We will update other patches to fix these problem. Change list. 1. import android.app.Fragment; -> import androidx.fragment.app.Fragment; 2. import android.app.DialogFragment; -> import androidx.fragment.app.DialogFragment; 3. import android.app.ListFragment; -> import androidx.fragment.app.ListFragment; 4. import android.app.LoaderManager; -> import androidx.loader.app.LoaderManager; 5. import android.content.AsyncTaskLoader; -> import androidx.loader.content.AsyncTaskLoader; 6. import android.content.Loader; -> import androidx.loader.content.Loader; 7. import android.app.FragmentTransaction; -> import androidx.fragment.app.FragmentTransaction; 8. import android.app.FragmentManager; -> import androidx.fragment.app.FragmentManager; 9. import android.app.LoaderManager.LoaderCallbacks; -> import androidx.loader.app.LoaderManager.LoaderCallbacks; Bug: 110259478 Test: Can't test it. Change-Id: I0a3f98fff34a3494a839c3c42aeabcec3df2c8b3
209 lines
7.6 KiB
Java
209 lines
7.6 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 static androidx.lifecycle.Lifecycle.Event.ON_START;
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
import static org.mockito.ArgumentMatchers.nullable;
|
|
import static org.mockito.Matchers.any;
|
|
import static org.mockito.Matchers.eq;
|
|
import static org.mockito.Mockito.doReturn;
|
|
import static org.mockito.Mockito.spy;
|
|
import static org.mockito.Mockito.verify;
|
|
import static org.mockito.Mockito.when;
|
|
|
|
import android.app.Activity;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.os.BatteryManager;
|
|
import android.os.PowerManager;
|
|
import android.widget.TextView;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.applications.LayoutPreference;
|
|
import com.android.settings.testutils.SettingsRobolectricTestRunner;
|
|
import com.android.settings.testutils.shadow.SettingsShadowResources;
|
|
import com.android.settings.testutils.shadow.SettingsShadowResourcesImpl;
|
|
import com.android.settings.testutils.shadow.ShadowEntityHeaderController;
|
|
import com.android.settings.widget.EntityHeaderController;
|
|
import com.android.settingslib.core.lifecycle.Lifecycle;
|
|
|
|
import org.junit.After;
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.mockito.Mock;
|
|
import org.mockito.MockitoAnnotations;
|
|
import org.robolectric.RuntimeEnvironment;
|
|
import org.robolectric.annotation.Config;
|
|
import org.robolectric.shadows.ShadowPowerManager;
|
|
|
|
import androidx.lifecycle.LifecycleOwner;
|
|
import androidx.preference.PreferenceScreen;
|
|
import androidx.recyclerview.widget.RecyclerView;
|
|
|
|
@RunWith(SettingsRobolectricTestRunner.class)
|
|
@Config(shadows = {
|
|
SettingsShadowResources.class,
|
|
SettingsShadowResourcesImpl.class,
|
|
SettingsShadowResources.SettingsShadowTheme.class,
|
|
ShadowEntityHeaderController.class
|
|
})
|
|
public class BatteryHeaderPreferenceControllerTest {
|
|
|
|
private static final int BATTERY_LEVEL = 60;
|
|
private static final String TIME_LEFT = "2h30min";
|
|
private static final String BATTERY_STATUS = "Charging";
|
|
|
|
@Mock
|
|
private Activity mActivity;
|
|
@Mock
|
|
private PreferenceFragment mPreferenceFragment;
|
|
@Mock
|
|
private PreferenceScreen mPreferenceScreen;
|
|
@Mock
|
|
private BatteryInfo mBatteryInfo;
|
|
@Mock
|
|
private EntityHeaderController mEntityHeaderController;
|
|
private BatteryHeaderPreferenceController mController;
|
|
private Context mContext;
|
|
private PowerManager mPowerManager;
|
|
private BatteryMeterView mBatteryMeterView;
|
|
private TextView mBatteryPercentText;
|
|
private TextView mSummary;
|
|
private TextView mSummary2;
|
|
private LayoutPreference mBatteryLayoutPref;
|
|
private Intent mBatteryIntent;
|
|
private LifecycleOwner mLifecycleOwner;
|
|
private Lifecycle mLifecycle;
|
|
|
|
@Before
|
|
public void setUp() {
|
|
MockitoAnnotations.initMocks(this);
|
|
|
|
mLifecycleOwner = () -> mLifecycle;
|
|
mLifecycle = new Lifecycle(mLifecycleOwner);
|
|
mContext = spy(RuntimeEnvironment.application);
|
|
mBatteryMeterView = new BatteryMeterView(mContext);
|
|
mBatteryPercentText = new TextView(mContext);
|
|
mSummary = new TextView(mContext);
|
|
ShadowEntityHeaderController.setUseMock(mEntityHeaderController);
|
|
mSummary2 = new TextView(mContext);
|
|
|
|
mBatteryIntent = new Intent();
|
|
mBatteryIntent.putExtra(BatteryManager.EXTRA_LEVEL, BATTERY_LEVEL);
|
|
mBatteryIntent.putExtra(BatteryManager.EXTRA_SCALE, 100);
|
|
mBatteryIntent.putExtra(BatteryManager.EXTRA_PLUGGED, 1);
|
|
doReturn(mBatteryIntent).when(mContext).registerReceiver(any(), any());
|
|
|
|
mBatteryLayoutPref = new LayoutPreference(mContext, R.layout.battery_header);
|
|
doReturn(mBatteryLayoutPref).when(mPreferenceScreen)
|
|
.findPreference(BatteryHeaderPreferenceController.KEY_BATTERY_HEADER);
|
|
|
|
mBatteryInfo.batteryLevel = BATTERY_LEVEL;
|
|
|
|
mPowerManager = (PowerManager) mContext.getSystemService(Context.POWER_SERVICE);
|
|
|
|
mController = new BatteryHeaderPreferenceController(
|
|
mContext, mActivity, mPreferenceFragment, mLifecycle);
|
|
mController.mBatteryMeterView = mBatteryMeterView;
|
|
mController.mBatteryPercentText = mBatteryPercentText;
|
|
mController.mSummary1 = mSummary;
|
|
mController.mSummary2 = mSummary2;
|
|
}
|
|
|
|
@After
|
|
public void tearDown() {
|
|
ShadowEntityHeaderController.reset();
|
|
}
|
|
|
|
@Test
|
|
public void testDisplayPreference_displayBatteryLevel() {
|
|
mController.displayPreference(mPreferenceScreen);
|
|
|
|
assertThat(((BatteryMeterView) mBatteryLayoutPref.findViewById(
|
|
R.id.battery_header_icon)).getBatteryLevel()).isEqualTo(BATTERY_LEVEL);
|
|
assertThat(((TextView) mBatteryLayoutPref.findViewById(R.id.battery_percent)).getText())
|
|
.isEqualTo("60%");
|
|
}
|
|
|
|
@Test
|
|
public void testUpdatePreference_hasRemainingTime_showRemainingLabel() {
|
|
mBatteryInfo.remainingLabel = TIME_LEFT;
|
|
|
|
mController.updateHeaderPreference(mBatteryInfo);
|
|
|
|
assertThat(mSummary.getText()).isEqualTo(mBatteryInfo.remainingLabel);
|
|
}
|
|
|
|
@Test
|
|
public void testUpdatePreference_updateBatteryInfo() {
|
|
mBatteryInfo.remainingLabel = TIME_LEFT;
|
|
mBatteryInfo.batteryLevel = BATTERY_LEVEL;
|
|
mBatteryInfo.discharging = true;
|
|
|
|
mController.updateHeaderPreference(mBatteryInfo);
|
|
|
|
assertThat(mBatteryMeterView.mDrawable.getBatteryLevel()).isEqualTo(BATTERY_LEVEL);
|
|
assertThat(mBatteryMeterView.mDrawable.getCharging()).isEqualTo(false);
|
|
}
|
|
|
|
@Test
|
|
public void testUpdatePreference_noRemainingTime_showStatusLabel() {
|
|
mBatteryInfo.remainingLabel = null;
|
|
mBatteryInfo.statusLabel = BATTERY_STATUS;
|
|
|
|
mController.updateHeaderPreference(mBatteryInfo);
|
|
|
|
assertThat(mSummary.getText()).isEqualTo(BATTERY_STATUS);
|
|
}
|
|
|
|
@Test
|
|
public void testOnStart_shouldStyleActionBar() {
|
|
when(mEntityHeaderController.setRecyclerView(nullable(RecyclerView.class), eq(mLifecycle)))
|
|
.thenReturn(mEntityHeaderController);
|
|
|
|
mController.displayPreference(mPreferenceScreen);
|
|
mLifecycle.handleLifecycleEvent(ON_START);
|
|
|
|
verify(mEntityHeaderController).styleActionBar(mActivity);
|
|
}
|
|
|
|
@Test
|
|
public void testQuickUpdateHeaderPreference_showBatteryLevelAndChargingState() {
|
|
mController.quickUpdateHeaderPreference();
|
|
|
|
assertThat(mBatteryMeterView.getBatteryLevel()).isEqualTo(BATTERY_LEVEL);
|
|
assertThat(mBatteryMeterView.getCharging()).isTrue();
|
|
assertThat(mBatteryPercentText.getText()).isEqualTo("60%");
|
|
}
|
|
|
|
@Test
|
|
public void testQuickUpdateHeaderPreference_showPowerSave() {
|
|
boolean testValues[] = {false, true};
|
|
|
|
ShadowPowerManager shadowPowerManager = shadowOf(mPowerManager);
|
|
for (boolean value : testValues) {
|
|
shadowPowerManager.setIsPowerSaveMode(value);
|
|
mController.quickUpdateHeaderPreference();
|
|
|
|
assertThat(mBatteryMeterView.getPowerSave()).isEqualTo(value);
|
|
}
|
|
}
|
|
}
|