1 /* 2 * Copyright (C) 2016 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 package com.android.settings; 17 18 import static org.junit.Assert.fail; 19 import static org.mockito.Mockito.times; 20 import static org.mockito.Mockito.verify; 21 import static org.mockito.Mockito.when; 22 23 import android.app.Dialog; 24 25 import androidx.fragment.app.Fragment; 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.RobolectricTestRunner; 33 import org.robolectric.RuntimeEnvironment; 34 35 @RunWith(RobolectricTestRunner.class) 36 public class SettingsDialogFragmentTest { 37 38 private static final int DIALOG_ID = 15; 39 40 @Mock 41 private DialogCreatableFragment mDialogCreatable; 42 private SettingsPreferenceFragment.SettingsDialogFragment mDialogFragment; 43 44 @Before setUp()45 public void setUp() { 46 MockitoAnnotations.initMocks(this); 47 } 48 49 @Test testGetMetrics_shouldGetMetricFromDialogCreatable()50 public void testGetMetrics_shouldGetMetricFromDialogCreatable() { 51 when(mDialogCreatable.getDialogMetricsCategory(DIALOG_ID)).thenReturn(1); 52 53 mDialogFragment = SettingsPreferenceFragment.SettingsDialogFragment.newInstance( 54 mDialogCreatable, DIALOG_ID); 55 mDialogFragment.onAttach(RuntimeEnvironment.application); 56 mDialogFragment.getMetricsCategory(); 57 58 // getDialogMetricsCategory called in onAttach, and explicitly in test. 59 verify(mDialogCreatable, times(2)).getDialogMetricsCategory(DIALOG_ID); 60 } 61 62 @Test testGetInvalidMetricsValue_shouldCrash()63 public void testGetInvalidMetricsValue_shouldCrash() { 64 when(mDialogCreatable.getDialogMetricsCategory(DIALOG_ID)).thenReturn(-1); 65 66 try { 67 mDialogFragment = SettingsPreferenceFragment.SettingsDialogFragment.newInstance( 68 mDialogCreatable, DIALOG_ID); 69 mDialogFragment.onAttach(RuntimeEnvironment.application); 70 fail("Should fail with IllegalStateException"); 71 } catch (IllegalStateException e) { 72 // getDialogMetricsCategory called in constructor 73 verify(mDialogCreatable).getDialogMetricsCategory(DIALOG_ID); 74 } 75 } 76 77 public static class DialogCreatableFragment extends Fragment implements DialogCreatable { 78 79 @Override onCreateDialog(int dialogId)80 public Dialog onCreateDialog(int dialogId) { 81 return null; 82 } 83 84 @Override getDialogMetricsCategory(int dialogId)85 public int getDialogMetricsCategory(int dialogId) { 86 return 0; 87 } 88 } 89 } 90