summaryrefslogtreecommitdiffstats
path: root/tests/wifitests
diff options
context:
space:
mode:
authorSohani Rao <sohanirao@google.com>2017-03-27 22:11:45 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-03-27 22:11:45 +0000
commit2f87382a69b04aa6fe90b2ba2f41954525c1f494 (patch)
tree032ea065a6e8c8dfaf4e79e3cee74bc706175101 /tests/wifitests
parent631266d856fffb2aea9175fabbc70ae9416512f7 (diff)
parent0327819aa731b803d9f0531df4ec0df8f8ac48e6 (diff)
downloadandroid_frameworks_opt_net_wifi-2f87382a69b04aa6fe90b2ba2f41954525c1f494.tar.gz
android_frameworks_opt_net_wifi-2f87382a69b04aa6fe90b2ba2f41954525c1f494.tar.bz2
android_frameworks_opt_net_wifi-2f87382a69b04aa6fe90b2ba2f41954525c1f494.zip
Merge "Unit tests for SupplicantStateTracker" am: cb86d10809 am: 9497861799
am: 0327819aa7 Change-Id: Ifed582e4dbf244a4f55bbefaf3a8853cf09134f5
Diffstat (limited to 'tests/wifitests')
-rw-r--r--tests/wifitests/src/com/android/server/wifi/SupplicantStateTrackerTest.java102
1 files changed, 102 insertions, 0 deletions
diff --git a/tests/wifitests/src/com/android/server/wifi/SupplicantStateTrackerTest.java b/tests/wifitests/src/com/android/server/wifi/SupplicantStateTrackerTest.java
new file mode 100644
index 000000000..f1a9e945d
--- /dev/null
+++ b/tests/wifitests/src/com/android/server/wifi/SupplicantStateTrackerTest.java
@@ -0,0 +1,102 @@
+/*
+ * Copyright (C) 2016 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.server.wifi;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+import static org.mockito.Mockito.*;
+
+import android.content.BroadcastReceiver;
+import android.content.Context;
+import android.content.Intent;
+import android.content.IntentFilter;
+import android.net.wifi.SupplicantState;
+import android.net.wifi.WifiManager;
+import android.net.wifi.WifiSsid;
+import android.os.Handler;
+import android.os.Message;
+import android.os.test.TestLooper;
+
+import com.android.internal.app.IBatteryStats;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.mockito.Mock;
+import org.mockito.MockitoAnnotations;
+/**
+ * Unit tests for {@link android.net.wifi.SupplicantStateTracker}.
+ */
+public class SupplicantStateTrackerTest {
+
+ private static final String TAG = "SupplicantStateTrackerTest";
+ private static final String sSSID = "\"GoogleGuest\"";
+ private static final WifiSsid sWifiSsid = WifiSsid.createFromAsciiEncoded(sSSID);
+ private static final String sBSSID = "01:02:03:04:05:06";
+
+ private @Mock WifiConfigManager mWcm;
+ private @Mock Context mContext;
+ private Handler mHandler;
+ private SupplicantStateTracker mSupplicantStateTracker;
+ private TestLooper mLooper;
+ private FrameworkFacade mFacade;
+ private BroadcastReceiver mWifiBroadcastReceiver;
+
+ private FrameworkFacade getFrameworkFacade() {
+ FrameworkFacade facade = mock(FrameworkFacade.class);
+ IBatteryStats batteryStatsService = mock(IBatteryStats.class);
+ when(facade.getBatteryService()).thenReturn(batteryStatsService);
+ return facade;
+ }
+
+ private Message getSupplicantStateChangeMessage(int networkId, WifiSsid wifiSsid,
+ String bssid, SupplicantState newSupplicantState) {
+ return Message.obtain(null, WifiMonitor.SUPPLICANT_STATE_CHANGE_EVENT, 0, 0,
+ new StateChangeResult(networkId, wifiSsid, bssid, newSupplicantState));
+
+ }
+
+ @Before
+ public void setUp() {
+ mLooper = new TestLooper();
+ mHandler = new Handler(mLooper.getLooper());
+ MockitoAnnotations.initMocks(this);
+ mFacade = getFrameworkFacade();
+ mSupplicantStateTracker = new SupplicantStateTracker(mContext, mWcm, mFacade, mHandler);
+ }
+
+ /**
+ * This test verifies that the SupplicantStateTracker sends a broadcast intent upon receiving
+ * a message when supplicant state changes
+ */
+ @Test
+ public void testSupplicantStateChangeIntent() {
+ mWifiBroadcastReceiver = new BroadcastReceiver() {
+ @Override
+ public void onReceive(Context context, Intent intent) {
+ String action = intent.getAction();
+ assertTrue(action.equals(WifiManager.SUPPLICANT_STATE_CHANGED_ACTION));
+ SupplicantState recvdState =
+ (SupplicantState) intent.getExtra(WifiManager.EXTRA_NEW_STATE, -1);
+ assertEquals(SupplicantState.SCANNING, recvdState);
+ }
+ };
+ IntentFilter mIntentFilter = new IntentFilter();
+ mIntentFilter.addAction(WifiManager.SUPPLICANT_STATE_CHANGED_ACTION);
+ mContext.registerReceiver(mWifiBroadcastReceiver, mIntentFilter);
+ mSupplicantStateTracker.sendMessage(getSupplicantStateChangeMessage(0, sWifiSsid,
+ sBSSID, SupplicantState.SCANNING));
+ }
+}