Merge "Change dark theme screen to toggle" into qt-dev
am: 3b8a0b82bf
Change-Id: I5d13eac9e99d47cc591eed30de6e739a826d4a54
This commit is contained in:
@@ -154,19 +154,6 @@ public class AccessibilitySettingsTest {
|
||||
assertThat(preference.getSummary()).isEqualTo(mContext.getResources().getString(resId));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDarkUIModePreferenceSummary_shouldUpdateSummary() {
|
||||
final Preference darkUIModePreference = new Preference(mContext);
|
||||
final DarkUIPreferenceController mController;
|
||||
doReturn(darkUIModePreference).when(mSettings).findPreference(
|
||||
DARK_UI_MODE_PREFERENCE);
|
||||
mController = new DarkUIPreferenceController(mContext, DARK_UI_MODE_PREFERENCE);
|
||||
final String darkUIModeDescription = modeToDescription(mUiModeManager.getNightMode());
|
||||
darkUIModePreference.setSummary(mController.getSummary());
|
||||
|
||||
assertThat(darkUIModePreference.getSummary()).isEqualTo(darkUIModeDescription);
|
||||
}
|
||||
|
||||
private String modeToDescription(int mode) {
|
||||
String[] values = mContext.getResources().getStringArray(R.array.dark_ui_mode_entries);
|
||||
switch (mode) {
|
||||
|
@@ -0,0 +1,65 @@
|
||||
/*
|
||||
* Copyright (C) 2019 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.display;
|
||||
|
||||
import static com.google.common.truth.Truth.assertThat;
|
||||
|
||||
import static org.mockito.Mockito.doReturn;
|
||||
import static org.mockito.Mockito.spy;
|
||||
import static org.mockito.Mockito.times;
|
||||
import static org.mockito.Mockito.verify;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.DialogInterface;
|
||||
import android.content.SharedPreferences;
|
||||
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.mockito.Mock;
|
||||
import org.mockito.MockitoAnnotations;
|
||||
import org.robolectric.RobolectricTestRunner;
|
||||
import org.robolectric.RuntimeEnvironment;
|
||||
|
||||
@RunWith(RobolectricTestRunner.class)
|
||||
public class DarkUIInfoDialogFragmentTest {
|
||||
private DarkUIInfoDialogFragment mFragment;
|
||||
@Mock
|
||||
private DialogInterface dialog;
|
||||
|
||||
|
||||
@Before
|
||||
public void setup() {
|
||||
MockitoAnnotations.initMocks(this);
|
||||
mFragment = spy(new DarkUIInfoDialogFragment());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void dialogDismissedOnConfirmation() {
|
||||
doReturn(RuntimeEnvironment.application).when(mFragment).getContext();
|
||||
SharedPreferences prefs = RuntimeEnvironment.application.getSharedPreferences(
|
||||
DarkUIPreferenceController.DARK_MODE_PREFS,
|
||||
Context.MODE_PRIVATE);
|
||||
assertThat(prefs.getBoolean(DarkUIPreferenceController.PREF_DARK_MODE_DIALOG_SEEN, false))
|
||||
.isFalse();
|
||||
mFragment.onClick(dialog, DialogInterface.BUTTON_POSITIVE);
|
||||
verify(dialog, times(1)).dismiss();
|
||||
assertThat(prefs.getBoolean(DarkUIPreferenceController.PREF_DARK_MODE_DIALOG_SEEN, false))
|
||||
.isTrue();
|
||||
|
||||
}
|
||||
}
|
@@ -1,52 +0,0 @@
|
||||
package com.android.settings.display;
|
||||
|
||||
import static org.mockito.ArgumentMatchers.eq;
|
||||
import static org.mockito.Mockito.doReturn;
|
||||
import static org.mockito.Mockito.verify;
|
||||
|
||||
import android.app.UiModeManager;
|
||||
import android.content.Context;
|
||||
import androidx.preference.Preference;
|
||||
import com.android.settings.R;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.mockito.Mock;
|
||||
import org.mockito.MockitoAnnotations;
|
||||
import org.robolectric.RobolectricTestRunner;
|
||||
import org.robolectric.RuntimeEnvironment;
|
||||
|
||||
@RunWith(RobolectricTestRunner.class)
|
||||
public class DarkUISettingsRadioButtonsControllerTest {
|
||||
|
||||
@Mock
|
||||
private UiModeManager mUiModeManager;
|
||||
@Mock
|
||||
private Preference mFooter;
|
||||
private Context mContext;
|
||||
private DarkUISettingsRadioButtonsController mController;
|
||||
|
||||
@Before
|
||||
public void setup() {
|
||||
MockitoAnnotations.initMocks(this);
|
||||
mContext = RuntimeEnvironment.application;
|
||||
mController = new DarkUISettingsRadioButtonsController(mContext, mFooter);
|
||||
mController.mManager = mUiModeManager;
|
||||
}
|
||||
|
||||
@Test
|
||||
public void footerUpdatesCorrectly() {
|
||||
doReturn(UiModeManager.MODE_NIGHT_YES).when(mUiModeManager).getNightMode();
|
||||
mController.updateFooter();
|
||||
verify(mFooter).setSummary(eq(R.string.dark_ui_settings_dark_summary));
|
||||
|
||||
doReturn(UiModeManager.MODE_NIGHT_NO).when(mUiModeManager).getNightMode();
|
||||
mController.updateFooter();
|
||||
verify(mFooter).setSummary(eq(R.string.dark_ui_settings_light_summary));
|
||||
}
|
||||
|
||||
public int getCurrentMode() {
|
||||
final UiModeManager uiModeManager = mContext.getSystemService(UiModeManager.class);
|
||||
return uiModeManager.getNightMode();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user