Force update APs when enabling wifi in WifiSettings.

This reverts commit b2bdc8f17b
and fixes a broken Espresso test case.

Reason for revert: Rolling forward after fix in ag/2133493, to fix b/37324736

Bug: b/37324736
Test: runtest --path
packages/apps/Settings/tests/unit/src/com/android/settings/wifi/WifiSettingsUiTest.java

Change-Id: I9cdf8cb1043af5d527eccbd9cc56d3b02419d7ac
This commit is contained in:
Sundeep Ghuman
2017-04-21 02:59:34 +00:00
parent cba520fc9d
commit 87bf49a436
2 changed files with 31 additions and 10 deletions

View File

@@ -0,0 +1,89 @@
/*
* 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 android.support.test.espresso.Espresso.onView;
import static android.support.test.espresso.action.ViewActions.click;
import static android.support.test.espresso.matcher.ViewMatchers.withText;
import static org.mockito.Mockito.when;
import android.content.Context;
import android.content.Intent;
import android.net.wifi.WifiManager;
import android.support.test.InstrumentationRegistry;
import android.support.test.rule.ActivityTestRule;
import android.support.test.runner.AndroidJUnit4;
import com.android.settings.Settings.WifiSettingsActivity;
import com.android.settingslib.wifi.AccessPoint;
import com.android.settingslib.wifi.WifiTracker;
import com.android.settingslib.wifi.WifiTrackerFactory;
import com.google.common.collect.Lists;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
@RunWith(AndroidJUnit4.class)
public class WifiSettingsUiTest {
// TODO(sghuman): Investigate why resource ids are not resolving correctly in the test apk,
// then remove this manual string entry
private static final String WIFI_PREFERENCES = "Wi\u2011Fi preferences";
@Mock private AccessPoint mockAccessPoint;
@Mock private WifiTracker mockWifiTracker;
@Mock private WifiManager mockWifiManager;
private Context mContext;
@Rule
public ActivityTestRule<WifiSettingsActivity> mActivityRule =
new ActivityTestRule<>(WifiSettingsActivity.class, true);
@Before
public void setUp() {
MockitoAnnotations.initMocks(this);
mContext = InstrumentationRegistry.getTargetContext();
WifiTrackerFactory.setTestingWifiTracker(mockWifiTracker);
when(mockWifiTracker.getManager()).thenReturn(mockWifiManager);
when(mockWifiTracker.getAccessPoints()).thenReturn(
Lists.asList(mockAccessPoint, new AccessPoint[]{}));
when(mockWifiManager.isWifiEnabled()).thenReturn(true);
}
private void launchActivity() {
mActivityRule.launchActivity(new Intent("android.settings.WIFI_SETTINGS"));
}
@Test
public void launchActivityShouldSucceed() {
launchActivity();
}
@Test
public void shouldShowWifiPreferences() {
launchActivity();
onView(withText(WIFI_PREFERENCES)).perform(click());
}
}