blob: 45eb4328b12ea0de0d6e6b0aceb1b50849e9fd91 [file] [log] [blame]
/*
* 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.testutils.shadow;
import android.os.SystemProperties;
import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;
import org.robolectric.shadows.ShadowSystemProperties;
import java.util.HashMap;
import java.util.Map;
/**
* This class provides write capability to ShadowSystemProperties.
*/
@Implements(SystemProperties.class)
public class SettingsShadowSystemProperties extends ShadowSystemProperties {
private static final Map<String, String> sValues = new HashMap<>();
@Implementation
public static synchronized boolean getBoolean(String key, boolean def) {
if (sValues.containsKey(key)) {
String val = sValues.get(key);
return "y".equals(val) || "yes".equals(val) || "1".equals(val) || "true".equals(val)
|| "on".equals(val);
}
return ShadowSystemProperties.getBoolean(key, def);
}
@Implementation
public static synchronized String get(String key) {
if (sValues.containsKey(key)) {
return sValues.get(key);
}
return ShadowSystemProperties.get(key);
}
public static synchronized void set(String key, String val) {
sValues.put(key, val);
}
@Implementation
public static String get(String key, String def) {
String value = sValues.get(key);
return value == null ? def : value;
}
public static synchronized void clear() {
sValues.clear();
}
}