Home | History | Annotate | Download | only in gestures
      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 static com.google.common.truth.Truth.assertThat;
     20 import static org.mockito.Matchers.any;
     21 import static org.mockito.Mockito.when;
     22 
     23 import android.content.Context;
     24 import android.provider.SearchIndexableResource;
     25 
     26 import com.android.settings.R;
     27 import com.android.settings.TestConfig;
     28 import com.android.settings.testutils.FakeFeatureFactory;
     29 import com.android.settings.testutils.SettingsRobolectricTestRunner;
     30 import com.android.settingslib.core.AbstractPreferenceController;
     31 
     32 import org.junit.Before;
     33 import org.junit.Test;
     34 import org.junit.runner.RunWith;
     35 import org.mockito.Mock;
     36 import org.mockito.MockitoAnnotations;
     37 import org.robolectric.RuntimeEnvironment;
     38 import org.robolectric.annotation.Config;
     39 import org.robolectric.shadows.ShadowApplication;
     40 
     41 import java.util.List;
     42 
     43 @RunWith(SettingsRobolectricTestRunner.class)
     44 @Config(manifest = TestConfig.MANIFEST_PATH, sdk = TestConfig.SDK_VERSION)
     45 public class AssistGestureSettingsTest {
     46     @Mock
     47     private Context mContext;
     48     private FakeFeatureFactory mFakeFeatureFactory;
     49     private AssistGestureSettings mSettings;
     50 
     51     @Before
     52     public void setUp() {
     53         MockitoAnnotations.initMocks(this);
     54         mFakeFeatureFactory = (FakeFeatureFactory) FakeFeatureFactory.getFactory(mContext);
     55         mSettings = new AssistGestureSettings();
     56     }
     57 
     58     @Test
     59     public void testGetPreferenceScreenResId() {
     60         assertThat(mSettings.getPreferenceScreenResId())
     61                 .isEqualTo(R.xml.assist_gesture_settings);
     62     }
     63 
     64     @Test
     65     public void testSearchIndexProvider_shouldIndexResource() {
     66         final List<SearchIndexableResource> indexRes =
     67                 AssistGestureSettings.SEARCH_INDEX_DATA_PROVIDER.getXmlResourcesToIndex(
     68                         ShadowApplication.getInstance().getApplicationContext(),
     69                         true /* enabled */);
     70 
     71         assertThat(indexRes).isNotNull();
     72         assertThat(indexRes.get(0).xmlResId).isEqualTo(mSettings.getPreferenceScreenResId());
     73     }
     74 
     75     @Test
     76     public void testSearchIndexProvider_noSensor_shouldDisablePageSearch() {
     77         when(mFakeFeatureFactory.assistGestureFeatureProvider.isSensorAvailable(any(Context.class)))
     78                 .thenReturn(false);
     79 
     80         assertThat(AssistGestureSettings.SEARCH_INDEX_DATA_PROVIDER.getNonIndexableKeys(
     81                 RuntimeEnvironment.application))
     82                 .contains("gesture_assist_settings_page");
     83     }
     84 }
     85 
     86