- Add some attributes in Theme.AlertDialog Change-Id: Ifb9ca98ee11f6c82cda4a576d10b5fde54f788be Fixes: 110917586 Test: mannual
95 lines
3.2 KiB
Java
95 lines
3.2 KiB
Java
/*
|
|
* Copyright (C) 2017 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.wifi;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
|
|
import static org.mockito.Mockito.doReturn;
|
|
|
|
import android.content.Intent;
|
|
import android.net.wifi.WifiConfiguration;
|
|
|
|
import com.android.settings.testutils.SettingsRobolectricTestRunner;
|
|
import com.android.settings.testutils.shadow.SettingsShadowResources;
|
|
import com.android.settings.testutils.shadow.ShadowConnectivityManager;
|
|
import com.android.settings.testutils.shadow.SettingsShadowTypedArray;
|
|
import com.android.settings.testutils.shadow.ShadowWifiManager;
|
|
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.mockito.Mock;
|
|
import org.mockito.MockitoAnnotations;
|
|
import org.robolectric.Robolectric;
|
|
import org.robolectric.annotation.Config;
|
|
import org.robolectric.shadows.ShadowAlertDialog;
|
|
import org.robolectric.util.ReflectionHelpers;
|
|
|
|
@RunWith(SettingsRobolectricTestRunner.class)
|
|
@Config(shadows = {
|
|
SettingsShadowResources.SettingsShadowTheme.class,
|
|
ShadowConnectivityManager.class,
|
|
SettingsShadowTypedArray.class,
|
|
ShadowWifiManager.class
|
|
}
|
|
)
|
|
public class WifiDialogActivityTest {
|
|
|
|
private static final String AP1_SSID = "\"ap1\"";
|
|
@Mock
|
|
private WifiConfigController mController;
|
|
|
|
@Before
|
|
public void setUp() {
|
|
MockitoAnnotations.initMocks(this);
|
|
|
|
WifiConfiguration wifiConfig = new WifiConfiguration();
|
|
wifiConfig.SSID = AP1_SSID;
|
|
doReturn(wifiConfig).when(mController).getConfig();
|
|
}
|
|
|
|
@Test
|
|
public void onSubmit_shouldConnectToNetwork() {
|
|
WifiDialogActivity activity = Robolectric.setupActivity(WifiDialogActivity.class);
|
|
WifiDialog dialog = (WifiDialog) ShadowAlertDialog.getLatestAlertDialog();
|
|
assertThat(dialog).isNotNull();
|
|
|
|
ReflectionHelpers.setField(dialog, "mController", mController);
|
|
|
|
activity.onSubmit(dialog);
|
|
|
|
assertThat(ShadowWifiManager.get().savedWifiConfig.SSID).isEqualTo(AP1_SSID);
|
|
}
|
|
|
|
@Test
|
|
public void onSubmit_shouldNotConnectToNetwork_whenConnectForCallerIsFalse() {
|
|
WifiDialogActivity activity =
|
|
Robolectric.buildActivity(
|
|
WifiDialogActivity.class,
|
|
new Intent().putExtra(WifiDialogActivity.KEY_CONNECT_FOR_CALLER, false))
|
|
.setup().get();
|
|
WifiDialog dialog = (WifiDialog) ShadowAlertDialog.getLatestAlertDialog();
|
|
assertThat(dialog).isNotNull();
|
|
|
|
ReflectionHelpers.setField(dialog, "mController", mController);
|
|
|
|
activity.onSubmit(dialog);
|
|
|
|
assertThat(ShadowWifiManager.get().savedWifiConfig).isNull();
|
|
}
|
|
}
|