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.wifi;
18 
19 import static com.google.common.truth.Truth.assertThat;
20 
21 import static org.mockito.ArgumentMatchers.any;
22 import static org.mockito.Mockito.mock;
23 import static org.mockito.Mockito.verify;
24 import static org.mockito.Mockito.when;
25 
26 import android.content.Context;
27 import android.net.ConnectivityManager;
28 import android.net.wifi.WifiManager;
29 import android.util.AndroidRuntimeException;
30 
31 import com.android.settings.testutils.shadow.ShadowRestrictedLockUtilsInternal;
32 import com.android.settings.widget.SwitchWidgetController;
33 import com.android.settingslib.core.instrumentation.MetricsFeatureProvider;
34 
35 import org.junit.Before;
36 import org.junit.Test;
37 import org.junit.runner.RunWith;
38 import org.mockito.Mock;
39 import org.mockito.MockitoAnnotations;
40 import org.robolectric.RobolectricTestRunner;
41 import org.robolectric.annotation.Config;
42 
43 @RunWith(RobolectricTestRunner.class)
44 @Config(shadows = ShadowRestrictedLockUtilsInternal.class)
45 public class WifiEnablerTest {
46 
47     @Mock
48     private Context mContext;
49     @Mock
50     private WifiManager mWifiManager;
51     @Mock
52     private ConnectivityManager mConnectivityManager;
53 
54     private WifiEnabler mEnabler;
55 
56     @Before
setUp()57     public void setUp() {
58         MockitoAnnotations.initMocks(this);
59         when(mContext.getSystemService(Context.WIFI_SERVICE)).thenReturn(mWifiManager);
60         mEnabler = new WifiEnabler(mContext, mock(SwitchWidgetController.class),
61                 mock(MetricsFeatureProvider.class), mConnectivityManager);
62     }
63 
64     @Test
onSwitchToggled_avoidBadWifiConfigIsFalse_shouldReturnTrue()65     public void onSwitchToggled_avoidBadWifiConfigIsFalse_shouldReturnTrue() {
66         when(mWifiManager.setWifiEnabled(true)).thenReturn(true);
67         when(mWifiManager.getWifiApState()).thenReturn(WifiManager.WIFI_AP_STATE_ENABLED);
68 
69         assertThat(mEnabler.onSwitchToggled(true)).isTrue();
70     }
71 
72     @Test
onSwitchToggled_satelliteOn_startWarningActivity()73     public void onSwitchToggled_satelliteOn_startWarningActivity() {
74         mEnabler.mIsSatelliteOn.set(true);
75 
76         try {
77             mEnabler.onSwitchToggled(true);
78         } catch (AndroidRuntimeException e) {
79             // Catch exception of starting activity .
80         }
81 
82         verify(mContext).startActivity(any());
83     }
84 }
85