blob: 17c7d13fe67e84fb71d8465450e17fc8ab4acbad [file] [log] [blame]
Fan Zhangeb086512017-10-16 14:00:14 -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 */
16
17package com.android.settingslib;
18
19import static org.mockito.Mockito.spy;
20import static org.mockito.Mockito.verify;
21import static org.mockito.Mockito.when;
22
23import android.content.Context;
24import android.view.View;
25import android.widget.EditText;
26
27import org.junit.Before;
28import org.junit.Test;
29import org.junit.runner.RunWith;
30import org.mockito.Mock;
31import org.mockito.MockitoAnnotations;
32import org.robolectric.RuntimeEnvironment;
33import org.robolectric.annotation.Config;
34
35@RunWith(SettingsLibRobolectricTestRunner.class)
36@Config(manifest = TestConfig.MANIFEST_PATH, sdk = TestConfig.SDK_VERSION)
37public class CustomEditTextPreferenceTest {
38
39 @Mock
40 private View mView;
41
42 private TestPreference mPreference;
43
44 @Before
45 public void setUp() {
46 MockitoAnnotations.initMocks(this);
47 mPreference = new TestPreference(RuntimeEnvironment.application);
48 }
49
50 @Test
51 public void bindDialogView_shouldRequestFocus() {
52 final String testText = "";
53 final EditText editText = spy(new EditText(RuntimeEnvironment.application));
54 editText.setText(testText);
55 when(mView.findViewById(android.R.id.edit)).thenReturn(editText);
56
57 mPreference.onBindDialogView(mView);
58
59 verify(editText).requestFocus();
60 }
61
62 private static class TestPreference extends CustomEditTextPreference {
63 public TestPreference(Context context) {
64 super(context);
65 }
66 }
67}