Merge "Verify duplicate upstream notifications are ignored" am: 3d57eb0bdc am: 02e71f6245 am: 8055dafb08

am: d850804723

Change-Id: I56a8b708178419d467abac0166f1be6c86b42491
This commit is contained in:
Erik Kline
2017-02-14 18:19:01 +00:00
committed by android-build-merger

View File

@@ -294,6 +294,18 @@ public class TetherInterfaceStateMachineTest {
IFACE_NAME, mTestedSm, STATE_AVAILABLE, TETHER_ERROR_ENABLE_NAT_ERROR);
}
@Test
public void ignoresDuplicateUpstreamNotifications() throws Exception {
initTetheredStateMachine(TETHERING_WIFI, UPSTREAM_IFACE);
verifyNoMoreInteractions(mNMService, mStatsService, mTetherHelper);
for (int i = 0; i < 5; i++) {
dispatchTetherConnectionChanged(UPSTREAM_IFACE);
verifyNoMoreInteractions(mNMService, mStatsService, mTetherHelper);
}
}
/**
* Send a command to the state machine under test, and run the event loop to idle.
*