Show policy transparency dialog for Wi-Fi network restrictions

- In order to support various user restrictions of individual Wi-Fi networks, WifiEntry provides the hasAdminRestrictions method for unified management.

- Settings will refer to WifiEntry#hasAdminRestrictions to restrict individual Wi-Fi networks.

Bug: 289448751
Bug: 289951241
Test: manual test
atest -c LongPressWifiEntryPreferenceTest

Change-Id: Iae5996a87ee72a3073300c7f62dfa14a9f31c21d
This commit is contained in:
Weng Su
2023-07-21 19:31:29 +08:00
parent 8053947766
commit 28be567a83
2 changed files with 44 additions and 2 deletions

View File

@@ -18,6 +18,10 @@ package com.android.settings.wifi;
import static com.google.common.truth.Truth.assertThat;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.never;
import static org.mockito.Mockito.spy;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import android.content.Context;
@@ -60,7 +64,7 @@ public class LongPressWifiEntryPreferenceTest {
when(mWifiEntry.canDisconnect()).thenReturn(false);
when(mWifiEntry.isSaved()).thenReturn(false);
mPreference = new LongPressWifiEntryPreference(mContext, mWifiEntry, mFragment);
mPreference = spy(new LongPressWifiEntryPreference(mContext, mWifiEntry, mFragment));
}
@Test
@@ -106,4 +110,23 @@ public class LongPressWifiEntryPreferenceTest {
assertThat(mPreference.shouldEnabled()).isTrue();
}
@Test
public void checkRestrictionAndSetDisabled_hasAdminRestrictions_doSetDisabledByAdmin() {
when(mContext.getUser()).thenReturn(null);
when(mWifiEntry.hasAdminRestrictions()).thenReturn(true);
mPreference.checkRestrictionAndSetDisabled();
verify(mPreference).setDisabledByAdmin(any());
}
@Test
public void checkRestrictionAndSetDisabled_noAdminRestrictions_doNotSetDisabledByAdmin() {
when(mWifiEntry.hasAdminRestrictions()).thenReturn(false);
mPreference.checkRestrictionAndSetDisabled();
verify(mPreference, never()).setDisabledByAdmin(any());
}
}