Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1007)

Unified Diff: net/android/javatests/src/org/chromium/net/NetworkChangeNotifierTest.java

Issue 10968016: [Android] Add Java observers to the NetworkChangeNotifier (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/android/java/src/org/chromium/net/NetworkChangeNotifierAutoDetect.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/android/javatests/src/org/chromium/net/NetworkChangeNotifierTest.java
diff --git a/net/android/javatests/src/org/chromium/net/NetworkChangeNotifierTest.java b/net/android/javatests/src/org/chromium/net/NetworkChangeNotifierTest.java
new file mode 100644
index 0000000000000000000000000000000000000000..8f1aff49ee507593612f84ca824ffc4157d46138
--- /dev/null
+++ b/net/android/javatests/src/org/chromium/net/NetworkChangeNotifierTest.java
@@ -0,0 +1,116 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+package org.chromium.net;
+
+import android.content.Context;
+import android.content.Intent;
+import android.net.ConnectivityManager;
+import android.telephony.TelephonyManager;
+import android.test.InstrumentationTestCase;
+import android.test.UiThreadTest;
+import android.test.suitebuilder.annotation.MediumTest;
+
+import org.chromium.base.test.Feature;
+
+public class NetworkChangeNotifierTest extends InstrumentationTestCase {
+ /**
+ * Listens for alerts fired by the NetworkChangeNotifier when network status changes.
+ */
+ private static class NetworkChangeNotifierTestObserver
+ implements NetworkChangeNotifier.ConnectionTypeObserver {
+ private boolean mReceivedNotification = false;
+
+ public void onConnectionTypeChanged(int connectionType) {
+ mReceivedNotification = true;
+ }
+
+ public boolean hasReceivedNotification() {
+ return mReceivedNotification;
+ }
+ }
+
+ /**
+ * Mocks out calls to the ConnectivityManager.
+ */
+ class MockConnectivityManagerDelegate
+ extends NetworkChangeNotifierAutoDetect.ConnectivityManagerDelegate {
+ private boolean mActiveNetworkExists;
+ private int mNetworkType;
+ private int mNetworkSubtype;
+
+ MockConnectivityManagerDelegate() {
+ super(null);
+ }
+
+ @Override
+ boolean activeNetworkExists() {
+ return mActiveNetworkExists;
+ }
+
+ void setActiveNetworkExists(boolean networkExists) {
+ mActiveNetworkExists = networkExists;
+ }
+
+ @Override
+ int getNetworkType() {
+ return mNetworkType;
+ }
+
+ void setNetworkType(int networkType) {
+ mNetworkType = networkType;
+ }
+
+ @Override
+ int getNetworkSubtype() {
+ return mNetworkSubtype;
+ }
+
+ void setNetworkSubtype(int networkSubtype) {
+ mNetworkSubtype = networkSubtype;
+ }
+ }
+
+ /**
+ * Tests that when Chrome gets an intent indicating a change in network connectivity, it sends a
+ * notification to Java observers.
+ */
+ @UiThreadTest
+ @MediumTest
+ @Feature({"Android-AppBase"})
+ public void testNetworkChangeNotifierJavaObservers() throws InterruptedException {
+ // Create a new notifier that doesn't have a native-side counterpart.
+ Context context = getInstrumentation().getTargetContext();
+ NetworkChangeNotifier.createInstance(context, 0);
+
+ NetworkChangeNotifier.setAutoDetectConnectivityState(true);
+ NetworkChangeNotifierAutoDetect receiver = NetworkChangeNotifier.getAutoDetectorForTest();
+ assertTrue(receiver != null);
+
+ MockConnectivityManagerDelegate connectivityDelegate =
+ new MockConnectivityManagerDelegate();
+ connectivityDelegate.setActiveNetworkExists(true);
+ connectivityDelegate.setNetworkType(NetworkChangeNotifier.CONNECTION_UNKNOWN);
+ connectivityDelegate.setNetworkSubtype(TelephonyManager.NETWORK_TYPE_UNKNOWN);
+ receiver.setConnectivityManagerDelegateForTests(connectivityDelegate);
+
+ // Initialize the NetworkChangeNotifier with a connection.
+ Intent connectivityIntent = new Intent(ConnectivityManager.CONNECTIVITY_ACTION);
+ receiver.onReceive(getInstrumentation().getTargetContext(), connectivityIntent);
+
+ // We shouldn't be re-notified if the connection hasn't actually changed.
+ NetworkChangeNotifierTestObserver observer = new NetworkChangeNotifierTestObserver();
+ NetworkChangeNotifier.addConnectionTypeObserver(observer);
+ receiver.onReceive(getInstrumentation().getTargetContext(), connectivityIntent);
+ assertFalse(observer.hasReceivedNotification());
+
+ // Mimic that connectivity has been lost and ensure that Chrome notifies our observer.
+ connectivityDelegate.setActiveNetworkExists(false);
+ connectivityDelegate.setNetworkType(NetworkChangeNotifier.CONNECTION_NONE);
+ Intent noConnectivityIntent = new Intent(ConnectivityManager.CONNECTIVITY_ACTION);
+ noConnectivityIntent.putExtra(ConnectivityManager.EXTRA_NO_CONNECTIVITY, true);
+ receiver.onReceive(getInstrumentation().getTargetContext(), noConnectivityIntent);
+ assertTrue(observer.hasReceivedNotification());
+ }
+}
« no previous file with comments | « net/android/java/src/org/chromium/net/NetworkChangeNotifierAutoDetect.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698