blob: 175fdd84fb0428ba4433470f8df706d1d772bb2b [file] [log] [blame]
Makoto Onuki09c529a2017-05-01 10:05:28 -07001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package com.android.server.devicepolicy;
17
18import android.test.AndroidTestCase;
Makoto Onukia18b7682017-05-18 17:24:20 -070019import android.test.suitebuilder.annotation.SmallTest;
Makoto Onuki09c529a2017-05-01 10:05:28 -070020
21/**
22 * Test for {@link DevicePolicyConstants}.
23 *
24 m FrameworksServicesTests &&
25 adb install \
26 -r ${ANDROID_PRODUCT_OUT}/data/app/FrameworksServicesTests/FrameworksServicesTests.apk &&
27 adb shell am instrument -e class com.android.server.devicepolicy.DevicePolicyConstantsTest \
28 -w com.android.frameworks.servicestests
29
30
31 -w com.android.frameworks.servicestests/android.support.test.runner.AndroidJUnitRunner
32 */
Makoto Onukia18b7682017-05-18 17:24:20 -070033@SmallTest
Makoto Onuki09c529a2017-05-01 10:05:28 -070034public class DevicePolicyConstantsTest extends AndroidTestCase {
35 private static final String TAG = "DevicePolicyConstantsTest";
36
37 public void testDefaultValues() throws Exception {
38 final DevicePolicyConstants constants = DevicePolicyConstants.loadFromString("");
39
40 assertEquals(1 * 60 * 60, constants.DAS_DIED_SERVICE_RECONNECT_BACKOFF_SEC);
41 assertEquals(24 * 60 * 60, constants.DAS_DIED_SERVICE_RECONNECT_MAX_BACKOFF_SEC);
42 assertEquals(2.0, constants.DAS_DIED_SERVICE_RECONNECT_BACKOFF_INCREASE);
43 }
44
45 public void testCustomValues() throws Exception {
46 final DevicePolicyConstants constants = DevicePolicyConstants.loadFromString(
47 "das_died_service_reconnect_backoff_sec=10,"
48 + "das_died_service_reconnect_backoff_increase=1.25,"
49 + "das_died_service_reconnect_max_backoff_sec=15"
50 );
51
52 assertEquals(10, constants.DAS_DIED_SERVICE_RECONNECT_BACKOFF_SEC);
53 assertEquals(15, constants.DAS_DIED_SERVICE_RECONNECT_MAX_BACKOFF_SEC);
54 assertEquals(1.25, constants.DAS_DIED_SERVICE_RECONNECT_BACKOFF_INCREASE);
55 }
56
57 public void testMinMax() throws Exception {
58 final DevicePolicyConstants constants = DevicePolicyConstants.loadFromString(
59 "das_died_service_reconnect_backoff_sec=3,"
60 + "das_died_service_reconnect_backoff_increase=.25,"
61 + "das_died_service_reconnect_max_backoff_sec=1"
62 );
63
64 assertEquals(5, constants.DAS_DIED_SERVICE_RECONNECT_BACKOFF_SEC);
65 assertEquals(5, constants.DAS_DIED_SERVICE_RECONNECT_MAX_BACKOFF_SEC);
66 assertEquals(1.0, constants.DAS_DIED_SERVICE_RECONNECT_BACKOFF_INCREASE);
67 }
68}