From ebe8480d17af649474b9dd03ce78e76064be23ea Mon Sep 17 00:00:00 2001 From: Roshan Pius Date: Thu, 30 Apr 2020 11:18:22 -0700 Subject: ClientModeImpl: Only randomize MAC address at start if feature enabled Bug: 155014563 Test: atest com.android.server.wifi Change-Id: Iba72b268387c5c1c6fd9e90fddbcea695ba3cc88 --- .../src/com/android/server/wifi/ClientModeImplTest.java | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'tests') diff --git a/tests/wifitests/src/com/android/server/wifi/ClientModeImplTest.java b/tests/wifitests/src/com/android/server/wifi/ClientModeImplTest.java index 8f36770e6..3e904af02 100644 --- a/tests/wifitests/src/com/android/server/wifi/ClientModeImplTest.java +++ b/tests/wifitests/src/com/android/server/wifi/ClientModeImplTest.java @@ -3852,6 +3852,16 @@ public class ClientModeImplTest extends WifiBaseTest { mCmi.getFactoryMacAddress(), currentMac.toString()); } + /** + * Verify the MAC address is being randomized at start to prevent leaking the factory MAC. + */ + @Test + public void testNoRandomizeMacAddressOnStartIfMacRandomizationNotEnabled() throws Exception { + mResources.setBoolean(R.bool.config_wifi_connected_mac_randomization_supported, false); + loadComponentsInStaMode(); + verify(mWifiNative, never()).setMacAddress(anyString(), any()); + } + /** * Verify bugreport will be taken when get IP_REACHABILITY_LOST */ -- cgit v1.2.3