summaryrefslogtreecommitdiff
path: root/robotests/src/com/android/networkrecommendation/notify/WifiNotificationControllerTest.java
blob: 3f4828fc80bff8767abc265fd7190ccced8fa764 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
/*
 * 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.networkrecommendation.notify;

import static com.android.networkrecommendation.PlatformTestObjectFactory.createOpenNetworkScanResult;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.mockito.Matchers.anyString;
import static org.mockito.Mockito.any;
import static org.mockito.Mockito.anyInt;
import static org.mockito.Mockito.never;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;

import android.app.Notification;
import android.app.NotificationManager;
import android.content.ContentResolver;
import android.content.Intent;
import android.net.NetworkInfo;
import android.net.NetworkInfo.DetailedState;
import android.net.NetworkInfo.State;
import android.net.RecommendationRequest;
import android.net.RecommendationResult;
import android.net.wifi.ScanResult;
import android.net.wifi.WifiConfiguration;
import android.net.wifi.WifiManager;
import android.os.Handler;
import android.provider.Settings;
import com.android.networkrecommendation.BroadcastIntentTestHelper;
import com.android.networkrecommendation.SynchronousNetworkRecommendationProvider;
import com.android.networkrecommendation.TestData;
import com.android.networkrecommendation.util.RoboCompatUtil;
import com.google.common.collect.Lists;
import java.io.FileDescriptor;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.util.List;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.ArgumentCaptor;
import org.mockito.Captor;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.robolectric.RobolectricTestRunner;
import org.robolectric.RuntimeEnvironment;
import org.robolectric.annotation.Config;
import org.robolectric.shadows.ShadowApplication;
import org.robolectric.shadows.ShadowLooper;
import org.robolectric.shadows.ShadowSettings;

/**
 * Instrumentation tests for {@link com.android.networkrecommendation.WifiNotificationController}.
 */
@RunWith(RobolectricTestRunner.class)
@Config(manifest = "packages/services/NetworkRecommendation/AndroidManifest.xml", sdk = 23)
public class WifiNotificationControllerTest {

    @Mock private WifiManager mWifiManager;
    @Mock private NotificationManager mNotificationManager;
    @Mock private WifiNotificationHelper mWifiNotificationHelper;
    @Mock private SynchronousNetworkRecommendationProvider mNetworkRecommendationProvider;
    @Mock private NetworkInfo mNetworkInfo;
    @Mock private RoboCompatUtil mRoboCompatUtil;
    @Captor private ArgumentCaptor<RecommendationRequest> mRecommendationRequestCaptor;
    private ContentResolver mContentResolver;
    private Handler mHandler;
    private WifiNotificationController mWifiNotificationController;
    private BroadcastIntentTestHelper mBroadcastIntentTestHelper;

    /** Initialize objects before each test run. */
    @Before
    public void setUp() throws Exception {
        MockitoAnnotations.initMocks(this);

        // Needed for the NotificationEnabledSettingObserver.
        mContentResolver = RuntimeEnvironment.application.getContentResolver();
        ShadowSettings.ShadowGlobal.putInt(
                mContentResolver, Settings.Global.WIFI_NETWORKS_AVAILABLE_NOTIFICATION_ON, 1);
        mHandler = new Handler(ShadowLooper.getMainLooper());

        RoboCompatUtil.setInstanceForTesting(mRoboCompatUtil);

        mWifiNotificationController =
                new WifiNotificationController(
                        RuntimeEnvironment.application,
                        mContentResolver,
                        mHandler,
                        mNetworkRecommendationProvider,
                        mWifiManager,
                        mNotificationManager,
                        mWifiNotificationHelper);
        mWifiNotificationController.start();

        when(mNetworkInfo.getState()).thenReturn(State.UNKNOWN);
        mBroadcastIntentTestHelper = new BroadcastIntentTestHelper(RuntimeEnvironment.application);
    }

    private void setOpenAccessPoints() {
        List<ScanResult> scanResults =
                Lists.newArrayList(
                        createOpenNetworkScanResult(TestData.UNQUOTED_SSID_1, TestData.BSSID_1),
                        createOpenNetworkScanResult(TestData.UNQUOTED_SSID_2, TestData.BSSID_2),
                        createOpenNetworkScanResult(TestData.UNQUOTED_SSID_3, TestData.BSSID_3));
        assertFalse(scanResults.isEmpty());
        when(mWifiManager.getScanResults()).thenReturn(scanResults);
    }

    private static WifiConfiguration createFakeConfig() {
        WifiConfiguration config = new WifiConfiguration();
        config.SSID = TestData.SSID_1;
        config.BSSID = TestData.BSSID_1;
        config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
        return config;
    }

    /**
     * When the NetworkRecommendationService associated with this WifiNotificationController is
     * unbound, this WifiWakeupController should no longer function.
     */
    @Test
    public void wifiNotificationControllerStopped() {
        mWifiNotificationController.stop();

        assertFalse(
                ShadowApplication.getInstance()
                        .hasReceiverForIntent(
                                new Intent(WifiManager.SCAN_RESULTS_AVAILABLE_ACTION)));
    }

    /** Verifies that a notification is displayed (and retracted) given system events. */
    @Test
    public void verifyNotificationDisplayedWhenNetworkRecommended() throws Exception {
        when(mWifiManager.getWifiState()).thenReturn(WifiManager.WIFI_STATE_ENABLED);

        mBroadcastIntentTestHelper.sendWifiStateChanged();
        when(mNetworkInfo.getDetailedState()).thenReturn(DetailedState.DISCONNECTED);
        mBroadcastIntentTestHelper.sendNetworkStateChanged(mNetworkInfo);
        setOpenAccessPoints();

        when(mNetworkRecommendationProvider.requestRecommendation(any(RecommendationRequest.class)))
                .thenReturn(RecommendationResult.createConnectRecommendation(createFakeConfig()));

        // The notification should not be displayed after only two scan results.
        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        verify(mNotificationManager, never())
                .notify(anyString(), anyInt(), any(Notification.class));

        verify(mWifiManager, times(2)).getScanResults();

        // Changing to and from "SCANNING" state should not affect the counter.
        when(mNetworkInfo.getDetailedState()).thenReturn(DetailedState.SCANNING);
        mBroadcastIntentTestHelper.sendNetworkStateChanged(mNetworkInfo);
        when(mNetworkInfo.getDetailedState()).thenReturn(DetailedState.DISCONNECTED);
        mBroadcastIntentTestHelper.sendNetworkStateChanged(mNetworkInfo);

        verify(mNotificationManager, never())
                .notify(anyString(), anyInt(), any(Notification.class));

        // The third scan result notification will trigger the notification.
        mBroadcastIntentTestHelper.sendScanResultsAvailable();

        verify(mWifiNotificationHelper).createMainNotification(any(WifiConfiguration.class));
        verify(mNotificationManager).notify(anyString(), anyInt(), any(Notification.class));
        verify(mNotificationManager, never()).cancel(anyString(), anyInt());
    }

    /** Verifies that a notification is not displayed for bad networks. */
    @Test
    public void verifyNotificationNotDisplayedWhenNoNetworkRecommended() throws Exception {
        when(mWifiManager.getWifiState()).thenReturn(WifiManager.WIFI_STATE_ENABLED);

        mBroadcastIntentTestHelper.sendWifiStateChanged();
        when(mNetworkInfo.getDetailedState()).thenReturn(DetailedState.DISCONNECTED);
        mBroadcastIntentTestHelper.sendNetworkStateChanged(mNetworkInfo);
        setOpenAccessPoints();

        // Recommendation result with no WifiConfiguration returned.
        when(mNetworkRecommendationProvider.requestRecommendation(any(RecommendationRequest.class)))
                .thenReturn(RecommendationResult.createDoNotConnectRecommendation());

        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        verify(mNotificationManager, never())
                .notify(anyString(), anyInt(), any(Notification.class));
    }

    /**
     * Verifies the notifications flow (Connect -> connecting -> connected) when user clicks on
     * Connect button.
     */
    @Test
    public void verifyNotificationsFlowOnConnectToNetwork() throws Exception {
        when(mWifiManager.getWifiState()).thenReturn(WifiManager.WIFI_STATE_ENABLED);

        mBroadcastIntentTestHelper.sendWifiStateChanged();
        when(mNetworkInfo.getDetailedState()).thenReturn(DetailedState.DISCONNECTED);
        mBroadcastIntentTestHelper.sendNetworkStateChanged(mNetworkInfo);
        setOpenAccessPoints();

        when(mNetworkRecommendationProvider.requestRecommendation(any(RecommendationRequest.class)))
                .thenReturn(RecommendationResult.createConnectRecommendation(createFakeConfig()));

        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        verify(mWifiNotificationHelper).createMainNotification(any(WifiConfiguration.class));
        verify(mNotificationManager).notify(anyString(), anyInt(), any(Notification.class));

        // Send connect intent, should attempt to connect to Wi-Fi
        Intent intent =
                new Intent(WifiNotificationController.ACTION_CONNECT_TO_RECOMMENDED_NETWORK);
        ShadowApplication.getInstance().sendBroadcast(intent);
        verify(mRoboCompatUtil).connectToWifi(any(WifiManager.class), any(WifiConfiguration.class));
        verify(mWifiNotificationHelper).createConnectingNotification(any(WifiConfiguration.class));

        // Show connecting notification.
        verify(mNotificationManager, times(2))
                .notify(anyString(), anyInt(), any(Notification.class));

        // Verify show connected notification.
        when(mNetworkInfo.getDetailedState()).thenReturn(DetailedState.CONNECTED);
        mBroadcastIntentTestHelper.sendNetworkStateChanged(mNetworkInfo);
        verify(mWifiNotificationHelper).createConnectedNotification(any(WifiConfiguration.class));
        verify(mNotificationManager, times(3))
                .notify(anyString(), anyInt(), any(Notification.class));

        // Dismissed the connected notification.
        ShadowLooper.runMainLooperToNextTask();
        verify(mNotificationManager).cancel(anyString(), anyInt());
    }

    /** Verifies the Failure to Connect notification after attempting to connect. */
    @Test
    public void verifyNotificationsFlowOnFailedToConnectToNetwork() throws Exception {
        when(mWifiManager.getWifiState()).thenReturn(WifiManager.WIFI_STATE_ENABLED);

        mBroadcastIntentTestHelper.sendWifiStateChanged();
        when(mNetworkInfo.getDetailedState()).thenReturn(DetailedState.DISCONNECTED);
        mBroadcastIntentTestHelper.sendNetworkStateChanged(mNetworkInfo);
        setOpenAccessPoints();

        when(mNetworkRecommendationProvider.requestRecommendation(any(RecommendationRequest.class)))
                .thenReturn(RecommendationResult.createConnectRecommendation(createFakeConfig()));

        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        verify(mWifiNotificationHelper).createMainNotification(any(WifiConfiguration.class));
        verify(mNotificationManager).notify(anyString(), anyInt(), any(Notification.class));

        // Send connect intent, should attempt to connect to Wi-Fi
        Intent intent =
                new Intent(WifiNotificationController.ACTION_CONNECT_TO_RECOMMENDED_NETWORK);
        ShadowApplication.getInstance().sendBroadcast(intent);
        verify(mRoboCompatUtil).connectToWifi(any(WifiManager.class), any(WifiConfiguration.class));
        verify(mWifiNotificationHelper).createConnectingNotification(any(WifiConfiguration.class));

        // Show connecting notification.
        verify(mNotificationManager, times(2))
                .notify(anyString(), anyInt(), any(Notification.class));

        // Show failed to connect notification.
        ShadowLooper.runMainLooperToNextTask();
        verify(mWifiNotificationHelper).createFailedToConnectNotification();

        // Dismissed the cancel notification.
        ShadowLooper.runMainLooperToNextTask();
        verify(mNotificationManager).cancel(anyString(), anyInt());
    }

    /** Verifies the flow where notification is dismissed. */
    @Test
    public void verifyNotificationsFlowOnDismissMainNotification() throws Exception {
        when(mWifiManager.getWifiState()).thenReturn(WifiManager.WIFI_STATE_ENABLED);

        mBroadcastIntentTestHelper.sendWifiStateChanged();
        when(mNetworkInfo.getDetailedState()).thenReturn(DetailedState.DISCONNECTED);
        mBroadcastIntentTestHelper.sendNetworkStateChanged(mNetworkInfo);
        setOpenAccessPoints();

        when(mNetworkRecommendationProvider.requestRecommendation(any(RecommendationRequest.class)))
                .thenReturn(RecommendationResult.createConnectRecommendation(createFakeConfig()));

        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        mBroadcastIntentTestHelper.sendScanResultsAvailable();

        // Show main notification
        verify(mWifiNotificationHelper).createMainNotification(any(WifiConfiguration.class));
        verify(mNotificationManager).notify(anyString(), anyInt(), any(Notification.class));

        // Send dismiss intent
        Intent intent = new Intent(WifiNotificationController.ACTION_NOTIFICATION_DELETED);
        ShadowApplication.getInstance().sendBroadcast(intent);
    }

    /** Verifies the flow where "Settings" button on notification is clicked. */
    @Test
    public void verifyNotificationsFlowOnClickSettingsFromMainNotification() throws Exception {
        when(mWifiManager.getWifiState()).thenReturn(WifiManager.WIFI_STATE_ENABLED);

        mBroadcastIntentTestHelper.sendWifiStateChanged();
        when(mNetworkInfo.getDetailedState()).thenReturn(DetailedState.DISCONNECTED);
        mBroadcastIntentTestHelper.sendNetworkStateChanged(mNetworkInfo);
        setOpenAccessPoints();

        when(mNetworkRecommendationProvider.requestRecommendation(any(RecommendationRequest.class)))
                .thenReturn(RecommendationResult.createConnectRecommendation(createFakeConfig()));

        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        mBroadcastIntentTestHelper.sendScanResultsAvailable();

        // Show main notification
        verify(mWifiNotificationHelper).createMainNotification(any(WifiConfiguration.class));
        verify(mNotificationManager).notify(anyString(), anyInt(), any(Notification.class));

        // Send click settings intent
        Intent intent = new Intent(WifiNotificationController.ACTION_PICK_WIFI_NETWORK);
        ShadowApplication.getInstance().sendBroadcast(intent);
        verify(mNotificationManager).cancel(anyString(), anyInt());
    }

    /** Verifies the flow when notification is reset on captive portal check. */
    @Test
    public void verifyNotificationsFlowResetNotificationOnCaptivePortalCheck() throws Exception {
        when(mWifiManager.getWifiState()).thenReturn(WifiManager.WIFI_STATE_ENABLED);

        mBroadcastIntentTestHelper.sendWifiStateChanged();
        when(mNetworkInfo.getDetailedState()).thenReturn(DetailedState.DISCONNECTED);
        mBroadcastIntentTestHelper.sendNetworkStateChanged(mNetworkInfo);
        setOpenAccessPoints();

        when(mNetworkRecommendationProvider.requestRecommendation(any(RecommendationRequest.class)))
                .thenReturn(RecommendationResult.createConnectRecommendation(createFakeConfig()));

        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        mBroadcastIntentTestHelper.sendScanResultsAvailable();

        // Show main notification
        verify(mWifiNotificationHelper).createMainNotification(any(WifiConfiguration.class));
        verify(mNotificationManager).notify(anyString(), anyInt(), any(Notification.class));

        when(mNetworkInfo.getDetailedState()).thenReturn(DetailedState.CAPTIVE_PORTAL_CHECK);
        mBroadcastIntentTestHelper.sendNetworkStateChanged(mNetworkInfo);
        verify(mNotificationManager).cancel(anyString(), anyInt());
    }

    /** Verifies saved networks are skipped when getting network recommendations */
    @Test
    public void verifyNotificationsFlowSkipSavedNetworks() throws Exception {
        when(mWifiManager.getWifiState()).thenReturn(WifiManager.WIFI_STATE_ENABLED);

        mBroadcastIntentTestHelper.sendWifiStateChanged();
        when(mNetworkInfo.getDetailedState()).thenReturn(DetailedState.DISCONNECTED);
        mBroadcastIntentTestHelper.sendNetworkStateChanged(mNetworkInfo);

        // First scan result and saved WifiConfiguration should be equal
        when(mWifiManager.getScanResults())
                .thenReturn(
                        Lists.newArrayList(
                                createOpenNetworkScanResult(
                                        TestData.UNQUOTED_SSID_1, TestData.BSSID_1)));
        when(mWifiManager.getConfiguredNetworks())
                .thenReturn(Lists.newArrayList(createFakeConfig()));
        mBroadcastIntentTestHelper.sendScanResultsAvailable();

        verify(mNetworkRecommendationProvider)
                .requestRecommendation(mRecommendationRequestCaptor.capture());

        assertEquals(0, mRecommendationRequestCaptor.getValue().getScanResults().length);
    }

    /**
     * Test that recommendations are not requested for new scan results when user has clicked on
     * connect and a notification is showing.
     */
    @Test
    public void verifyNotificationsFlowSkipNewScanResultsWhenConnectionAttempted()
            throws Exception {
        when(mWifiManager.getWifiState()).thenReturn(WifiManager.WIFI_STATE_ENABLED);

        mBroadcastIntentTestHelper.sendWifiStateChanged();
        when(mNetworkInfo.getDetailedState()).thenReturn(DetailedState.DISCONNECTED);
        mBroadcastIntentTestHelper.sendNetworkStateChanged(mNetworkInfo);
        setOpenAccessPoints();

        when(mNetworkRecommendationProvider.requestRecommendation(any(RecommendationRequest.class)))
                .thenReturn(RecommendationResult.createConnectRecommendation(createFakeConfig()));

        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        verify(mNetworkRecommendationProvider, times(3)).requestRecommendation(any());

        // Show main notification
        verify(mWifiNotificationHelper).createMainNotification(any(WifiConfiguration.class));
        verify(mNotificationManager).notify(anyString(), anyInt(), any(Notification.class));

        // Send connect intent, should attempt to connect to Wi-Fi
        Intent intent =
                new Intent(WifiNotificationController.ACTION_CONNECT_TO_RECOMMENDED_NETWORK);
        ShadowApplication.getInstance().sendBroadcast(intent);
        verify(mRoboCompatUtil).connectToWifi(any(WifiManager.class), any(WifiConfiguration.class));
        verify(mWifiNotificationHelper).createConnectingNotification(any(WifiConfiguration.class));
        verify(mNotificationManager, times(2))
                .notify(anyString(), anyInt(), any(Notification.class));

        // No new recommendation requests made
        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        verify(mNetworkRecommendationProvider, times(3)).requestRecommendation(any());
    }

    /** Test that the main notification updates when new scan results are available. */
    @Test
    public void verifyNotificationsFlowUpdateMainNotificationOnNewScanResults() throws Exception {
        when(mWifiManager.getWifiState()).thenReturn(WifiManager.WIFI_STATE_ENABLED);

        mBroadcastIntentTestHelper.sendWifiStateChanged();
        when(mNetworkInfo.getDetailedState()).thenReturn(DetailedState.DISCONNECTED);
        mBroadcastIntentTestHelper.sendNetworkStateChanged(mNetworkInfo);
        setOpenAccessPoints();

        when(mNetworkRecommendationProvider.requestRecommendation(any(RecommendationRequest.class)))
                .thenReturn(RecommendationResult.createConnectRecommendation(createFakeConfig()));

        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        verify(mNetworkRecommendationProvider, times(3)).requestRecommendation(any());

        // Show main notification
        verify(mWifiNotificationHelper).createMainNotification(any(WifiConfiguration.class));
        verify(mNotificationManager).notify(anyString(), anyInt(), any(Notification.class));

        // Update main notification.
        mBroadcastIntentTestHelper.sendScanResultsAvailable();
        verify(mNetworkRecommendationProvider, times(4)).requestRecommendation(any());
        verify(mNotificationManager, times(2))
                .notify(anyString(), anyInt(), any(Notification.class));
    }

    /** Test dump() does not crash. */
    @Test
    public void testDump() {
        StringWriter stringWriter = new StringWriter();
        mWifiNotificationController.dump(
                new FileDescriptor(), new PrintWriter(stringWriter), new String[0]);
    }
}