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.Mockito.mock; 22 import static org.mockito.Mockito.when; 23 24 import android.content.Context; 25 import android.net.ConnectivityManager; 26 import android.net.wifi.WifiManager; 27 28 import com.android.settings.testutils.shadow.ShadowRestrictedLockUtilsInternal; 29 import com.android.settings.widget.SwitchWidgetController; 30 import com.android.settingslib.core.instrumentation.MetricsFeatureProvider; 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.RobolectricTestRunner; 38 import org.robolectric.annotation.Config; 39 40 @RunWith(RobolectricTestRunner.class) 41 @Config(shadows = ShadowRestrictedLockUtilsInternal.class) 42 public class WifiEnablerTest { 43 44 @Mock 45 private Context mContext; 46 @Mock 47 private WifiManager mWifiManager; 48 @Mock 49 private ConnectivityManager mConnectivityManager; 50 51 private WifiEnabler mEnabler; 52 53 @Before setUp()54 public void setUp() { 55 MockitoAnnotations.initMocks(this); 56 when(mContext.getSystemService(Context.WIFI_SERVICE)).thenReturn(mWifiManager); 57 mEnabler = new WifiEnabler(mContext, mock(SwitchWidgetController.class), 58 mock(MetricsFeatureProvider.class), mConnectivityManager); 59 } 60 61 @Test onSwitchToggled_avoidBadWifiConfigIsFalse_shouldReturnTrue()62 public void onSwitchToggled_avoidBadWifiConfigIsFalse_shouldReturnTrue() { 63 when(mWifiManager.setWifiEnabled(true)).thenReturn(true); 64 when(mWifiManager.getWifiApState()).thenReturn(WifiManager.WIFI_AP_STATE_ENABLED); 65 66 assertThat(mEnabler.onSwitchToggled(true)).isTrue(); 67 } 68 } 69