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 17 package com.android.settings.gestures; 18 19 import android.content.Context; 20 import android.provider.SearchIndexableResource; 21 22 import com.android.settings.R; 23 import com.android.settings.SettingsRobolectricTestRunner; 24 import com.android.settings.TestConfig; 25 import com.android.settings.core.PreferenceController; 26 27 import org.junit.Before; 28 import org.junit.Test; 29 import org.junit.runner.RunWith; 30 import org.mockito.Mock; 31 import org.mockito.MockitoAnnotations; 32 import org.robolectric.annotation.Config; 33 import org.robolectric.shadows.ShadowApplication; 34 35 import java.util.List; 36 37 import static com.google.common.truth.Truth.assertThat; 38 import static org.mockito.Mockito.when; 39 40 @RunWith(SettingsRobolectricTestRunner.class) 41 @Config(manifest = TestConfig.MANIFEST_PATH, sdk = TestConfig.SDK_VERSION) 42 public class AssistGestureSettingsTest { 43 @Mock 44 private Context mContext; 45 private AssistGestureSettings mSettings; 46 47 @Before setUp()48 public void setUp() { 49 MockitoAnnotations.initMocks(this); 50 mSettings = new AssistGestureSettings(); 51 } 52 53 @Test testGetPreferenceScreenResId()54 public void testGetPreferenceScreenResId() { 55 assertThat(mSettings.getPreferenceScreenResId()) 56 .isEqualTo(R.xml.assist_gesture_settings); 57 } 58 59 @Test testGetPreferenceControllers_shouldAllBeCreated()60 public void testGetPreferenceControllers_shouldAllBeCreated() { 61 final List<PreferenceController> controllers = 62 mSettings.getPreferenceControllers(mContext); 63 assertThat(controllers.isEmpty()).isFalse(); 64 } 65 66 @Test testSearchIndexProvider_shouldIndexResource()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