Loading res/values/config.xml +3 −0 Original line number Diff line number Diff line Loading @@ -257,6 +257,9 @@ <!-- Settings intelligence interaction log intent action --> <string name="config_settingsintelligence_log_action" translatable="false"></string> <!-- Whether Settings intelligence supports presenting Slices. --> <bool name="config_settingsintelligence_slice_supported">false</bool> <!-- AOSP Emergency app package name --> <string name="config_aosp_emergency_package_name" translatable="false"> com.android.emergency Loading src/com/android/settings/flashlight/FlashlightHandleActivity.java +5 −0 Original line number Diff line number Diff line Loading @@ -65,6 +65,11 @@ public class FlashlightHandleActivity extends Activity implements Indexable { boolean enabled) { final List<SearchIndexableRaw> result = new ArrayList<>(); if (!context.getResources().getBoolean( R.bool.config_settingsintelligence_slice_supported)) { Log.d(TAG, "Search doesn't support Slice"); return result; } SearchIndexableRaw data = new SearchIndexableRaw(context); data.title = context.getString(R.string.power_flashlight); Loading tests/robotests/res/values-mcc999/config.xml +1 −0 Original line number Diff line number Diff line Loading @@ -69,6 +69,7 @@ <bool name="config_show_branded_account_in_device_info">false</bool> <bool name="config_show_emergency_info_in_device_info">false</bool> <bool name="config_show_smooth_display">false</bool> <bool name="config_settingsintelligence_slice_supported">true</bool> <!-- Whether or not extra preview panels should be used for screen zoom setting. --> <bool name="config_enable_extra_screen_zoom_preview">false</bool> Loading tests/robotests/src/com/android/settings/flashlight/FlashlightHandleActivityTest.java 0 → 100644 +60 −0 Original line number Diff line number Diff line /* * Copyright (C) 2022 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.android.settings.flashlight; import static com.google.common.truth.Truth.assertThat; import android.content.Context; import com.android.settingslib.search.SearchIndexableRaw; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.robolectric.RobolectricTestRunner; import org.robolectric.RuntimeEnvironment; import org.robolectric.annotation.Config; import java.util.List; @RunWith(RobolectricTestRunner.class) public class FlashlightHandleActivityTest { private Context mContext; @Before public void setUp() { mContext = RuntimeEnvironment.application; } @Test public void getRawDataToIndex_sliceNotSupported_returnEmptyData() { List<SearchIndexableRaw> data = FlashlightHandleActivity.SEARCH_INDEX_DATA_PROVIDER .getRawDataToIndex(mContext, true /* enabled */); assertThat(data).isEmpty(); } @Test @Config(qualifiers = "mcc999") public void getRawDataToIndex_sliceSupported_returnData() { List<SearchIndexableRaw> data = FlashlightHandleActivity.SEARCH_INDEX_DATA_PROVIDER .getRawDataToIndex(mContext, true /* enabled */); assertThat(data).isNotEmpty(); } } tests/robotests/src/com/android/settings/flashlight/FlashlightSliceTest.java +0 −2 Original line number Diff line number Diff line Loading @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ package com.android.settings.flashlight; Loading @@ -38,7 +37,6 @@ import org.junit.runner.RunWith; import org.robolectric.RobolectricTestRunner; import org.robolectric.RuntimeEnvironment; import org.robolectric.Shadows; import org.robolectric.annotation.Config; import org.robolectric.shadow.api.Shadow; import org.robolectric.shadows.ShadowCameraCharacteristics; import org.robolectric.shadows.ShadowCameraManager; Loading Loading
res/values/config.xml +3 −0 Original line number Diff line number Diff line Loading @@ -257,6 +257,9 @@ <!-- Settings intelligence interaction log intent action --> <string name="config_settingsintelligence_log_action" translatable="false"></string> <!-- Whether Settings intelligence supports presenting Slices. --> <bool name="config_settingsintelligence_slice_supported">false</bool> <!-- AOSP Emergency app package name --> <string name="config_aosp_emergency_package_name" translatable="false"> com.android.emergency Loading
src/com/android/settings/flashlight/FlashlightHandleActivity.java +5 −0 Original line number Diff line number Diff line Loading @@ -65,6 +65,11 @@ public class FlashlightHandleActivity extends Activity implements Indexable { boolean enabled) { final List<SearchIndexableRaw> result = new ArrayList<>(); if (!context.getResources().getBoolean( R.bool.config_settingsintelligence_slice_supported)) { Log.d(TAG, "Search doesn't support Slice"); return result; } SearchIndexableRaw data = new SearchIndexableRaw(context); data.title = context.getString(R.string.power_flashlight); Loading
tests/robotests/res/values-mcc999/config.xml +1 −0 Original line number Diff line number Diff line Loading @@ -69,6 +69,7 @@ <bool name="config_show_branded_account_in_device_info">false</bool> <bool name="config_show_emergency_info_in_device_info">false</bool> <bool name="config_show_smooth_display">false</bool> <bool name="config_settingsintelligence_slice_supported">true</bool> <!-- Whether or not extra preview panels should be used for screen zoom setting. --> <bool name="config_enable_extra_screen_zoom_preview">false</bool> Loading
tests/robotests/src/com/android/settings/flashlight/FlashlightHandleActivityTest.java 0 → 100644 +60 −0 Original line number Diff line number Diff line /* * Copyright (C) 2022 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.android.settings.flashlight; import static com.google.common.truth.Truth.assertThat; import android.content.Context; import com.android.settingslib.search.SearchIndexableRaw; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.robolectric.RobolectricTestRunner; import org.robolectric.RuntimeEnvironment; import org.robolectric.annotation.Config; import java.util.List; @RunWith(RobolectricTestRunner.class) public class FlashlightHandleActivityTest { private Context mContext; @Before public void setUp() { mContext = RuntimeEnvironment.application; } @Test public void getRawDataToIndex_sliceNotSupported_returnEmptyData() { List<SearchIndexableRaw> data = FlashlightHandleActivity.SEARCH_INDEX_DATA_PROVIDER .getRawDataToIndex(mContext, true /* enabled */); assertThat(data).isEmpty(); } @Test @Config(qualifiers = "mcc999") public void getRawDataToIndex_sliceSupported_returnData() { List<SearchIndexableRaw> data = FlashlightHandleActivity.SEARCH_INDEX_DATA_PROVIDER .getRawDataToIndex(mContext, true /* enabled */); assertThat(data).isNotEmpty(); } }
tests/robotests/src/com/android/settings/flashlight/FlashlightSliceTest.java +0 −2 Original line number Diff line number Diff line Loading @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ package com.android.settings.flashlight; Loading @@ -38,7 +37,6 @@ import org.junit.runner.RunWith; import org.robolectric.RobolectricTestRunner; import org.robolectric.RuntimeEnvironment; import org.robolectric.Shadows; import org.robolectric.annotation.Config; import org.robolectric.shadow.api.Shadow; import org.robolectric.shadows.ShadowCameraCharacteristics; import org.robolectric.shadows.ShadowCameraManager; Loading