1/*
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.settings.gestures;
18
19import android.content.Context;
20import android.provider.SearchIndexableResource;
21
22import com.android.settings.R;
23import com.android.settings.SettingsRobolectricTestRunner;
24import com.android.settings.TestConfig;
25import com.android.settings.core.PreferenceController;
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.annotation.Config;
33import org.robolectric.shadows.ShadowApplication;
34
35import java.util.List;
36
37import static com.google.common.truth.Truth.assertThat;
38import static org.mockito.Mockito.when;
39
40@RunWith(SettingsRobolectricTestRunner.class)
41@Config(manifest = TestConfig.MANIFEST_PATH, sdk = TestConfig.SDK_VERSION)
42public class AssistGestureSettingsTest {
43    @Mock
44    private Context mContext;
45    private AssistGestureSettings mSettings;
46
47    @Before
48    public void setUp() {
49        MockitoAnnotations.initMocks(this);
50        mSettings = new AssistGestureSettings();
51    }
52
53    @Test
54    public void testGetPreferenceScreenResId() {
55        assertThat(mSettings.getPreferenceScreenResId())
56                .isEqualTo(R.xml.assist_gesture_settings);
57    }
58
59    @Test
60    public void testGetPreferenceControllers_shouldAllBeCreated() {
61        final List<PreferenceController> controllers =
62            mSettings.getPreferenceControllers(mContext);
63        assertThat(controllers.isEmpty()).isFalse();
64    }
65
66    @Test
67    public void testSearchIndexProvider_shouldIndexResource() {
68        final List<SearchIndexableResource> indexRes =
69                AssistGestureSettings.SEARCH_INDEX_DATA_PROVIDER.getXmlResourcesToIndex(
70                        ShadowApplication.getInstance().getApplicationContext(),
71                        true /* enabled */);
72
73        assertThat(indexRes).isNotNull();
74        assertThat(indexRes.get(0).xmlResId).isEqualTo(mSettings.getPreferenceScreenResId());
75    }
76}
77
78