Verify and reset invalid battery setting configuration in the data restore stage to avoid resoring invalid configuration from other devices Bug: 258243197 Test: make RunSettingsRoboTests Change-Id: I1a0febd2ad527147e4e9e9c77734c4b51963263a
42 lines
1.5 KiB
Java
42 lines
1.5 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;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.provider.Settings;
|
|
|
|
/**
|
|
* Convenience methods and constants for testing.
|
|
*/
|
|
public class TestUtils {
|
|
public static final long KILOBYTE = 1024L; // TODO: Change to 1000 in O Robolectric.
|
|
public static final long MEGABYTE = KILOBYTE * KILOBYTE;
|
|
public static final long GIGABYTE = KILOBYTE * MEGABYTE;
|
|
|
|
public static void setScheduledLevel(Context context, int scheduledLevel) {
|
|
Settings.Global.putInt(context.getContentResolver(),
|
|
Settings.Global.LOW_POWER_MODE_TRIGGER_LEVEL, scheduledLevel);
|
|
}
|
|
|
|
public static int getScheduledLevel(Context context) {
|
|
return Settings.Global.getInt(context.getContentResolver(),
|
|
Settings.Global.LOW_POWER_MODE_TRIGGER_LEVEL, /*defaultValue*/ 0);
|
|
}
|
|
|
|
}
|