Search in sources :

Example 16 with AccessiblePreferenceCategory

use of com.android.settings.AccessiblePreferenceCategory in project android_packages_apps_Settings by SudaMod.

the class AccountPreferenceControllerTest method onResume_noAccountChange_shouldNotAddAccountPreference.

@Test
public void onResume_noAccountChange_shouldNotAddAccountPreference() {
    final List<UserInfo> infos = new ArrayList<>();
    infos.add(new UserInfo(1, "user 1", 0));
    when(mUserManager.isManagedProfile()).thenReturn(false);
    when(mUserManager.isLinkedUser()).thenReturn(false);
    when(mUserManager.getProfiles(anyInt())).thenReturn(infos);
    Account[] accounts = { new Account("Acct1", "com.acct1") };
    when(mAccountManager.getAccountsAsUser(anyInt())).thenReturn(accounts);
    Account[] accountType1 = new Account[2];
    accountType1[0] = new Account("Acct11", "com.acct1");
    accountType1[1] = new Account("Acct12", "com.acct1");
    when(mAccountManager.getAccountsByTypeAsUser(eq("com.acct1"), any(UserHandle.class))).thenReturn(accountType1);
    AuthenticatorDescription[] authDescs = { new AuthenticatorDescription("com.acct1", "com.android.settings", R.string.account_settings_title, 0, 0, 0, false) };
    when(mAccountManager.getAuthenticatorTypesAsUser(anyInt())).thenReturn(authDescs);
    AccessiblePreferenceCategory preferenceGroup = mock(AccessiblePreferenceCategory.class);
    when(preferenceGroup.getPreferenceManager()).thenReturn(mock(PreferenceManager.class));
    when(mAccountHelper.createAccessiblePreferenceCategory(any(Context.class))).thenReturn(preferenceGroup);
    mController.onResume();
    mController.onResume();
    // each account should be added only once
    verify(preferenceGroup).addPreference(argThat(titleMatches("Acct11")));
    verify(preferenceGroup).addPreference(argThat(titleMatches("Acct12")));
}
Also used : Context(android.content.Context) Account(android.accounts.Account) AuthenticatorDescription(android.accounts.AuthenticatorDescription) UserHandle(android.os.UserHandle) ArrayList(java.util.ArrayList) UserInfo(android.content.pm.UserInfo) AccessiblePreferenceCategory(com.android.settings.AccessiblePreferenceCategory) PreferenceManager(android.support.v7.preference.PreferenceManager) Test(org.junit.Test)

Example 17 with AccessiblePreferenceCategory

use of com.android.settings.AccessiblePreferenceCategory in project android_packages_apps_Settings by SudaMod.

the class AccountPreferenceControllerTest method onResume_oneNewAccount_shouldAddOneAccountPreference.

@Test
public void onResume_oneNewAccount_shouldAddOneAccountPreference() {
    final List<UserInfo> infos = new ArrayList<>();
    infos.add(new UserInfo(1, "user 1", 0));
    when(mUserManager.isManagedProfile()).thenReturn(false);
    when(mUserManager.isLinkedUser()).thenReturn(false);
    when(mUserManager.getProfiles(anyInt())).thenReturn(infos);
    Account[] accounts = { new Account("Acct1", "com.acct1") };
    when(mAccountManager.getAccountsAsUser(anyInt())).thenReturn(accounts);
    Account[] accountType1 = new Account[2];
    accountType1[0] = new Account("Acct11", "com.acct1");
    accountType1[1] = new Account("Acct12", "com.acct1");
    when(mAccountManager.getAccountsByTypeAsUser(eq("com.acct1"), any(UserHandle.class))).thenReturn(accountType1);
    AuthenticatorDescription[] authDescs = { new AuthenticatorDescription("com.acct1", "com.android.settings", R.string.account_settings_title, 0, 0, 0, false) };
    when(mAccountManager.getAuthenticatorTypesAsUser(anyInt())).thenReturn(authDescs);
    AccessiblePreferenceCategory preferenceGroup = mock(AccessiblePreferenceCategory.class);
    when(preferenceGroup.getPreferenceManager()).thenReturn(mock(PreferenceManager.class));
    when(mAccountHelper.createAccessiblePreferenceCategory(any(Context.class))).thenReturn(preferenceGroup);
    mController.onResume();
    // add a new account
    accountType1 = new Account[3];
    accountType1[0] = new Account("Acct11", "com.acct1");
    accountType1[1] = new Account("Acct12", "com.acct1");
    accountType1[2] = new Account("Acct13", "com.acct1");
    when(mAccountManager.getAccountsByTypeAsUser(eq("com.acct1"), any(UserHandle.class))).thenReturn(accountType1);
    mController.onResume();
    // each account should be added only once
    verify(preferenceGroup, times(1)).addPreference(argThat(titleMatches("Acct11")));
    verify(preferenceGroup, times(1)).addPreference(argThat(titleMatches("Acct12")));
    verify(preferenceGroup, times(1)).addPreference(argThat(titleMatches("Acct13")));
}
Also used : Context(android.content.Context) Account(android.accounts.Account) AuthenticatorDescription(android.accounts.AuthenticatorDescription) UserHandle(android.os.UserHandle) ArrayList(java.util.ArrayList) UserInfo(android.content.pm.UserInfo) AccessiblePreferenceCategory(com.android.settings.AccessiblePreferenceCategory) PreferenceManager(android.support.v7.preference.PreferenceManager) Test(org.junit.Test)

Example 18 with AccessiblePreferenceCategory

use of com.android.settings.AccessiblePreferenceCategory in project android_packages_apps_Settings by DirtyUnicorns.

the class AccountPreferenceControllerTest method onResume_oneProfile_shouldSetAccountTitleWithUserName.

@Test
public void onResume_oneProfile_shouldSetAccountTitleWithUserName() {
    final List<UserInfo> infos = new ArrayList<>();
    infos.add(new UserInfo(1, "user 1", UserInfo.FLAG_MANAGED_PROFILE));
    when(mUserManager.isManagedProfile()).thenReturn(false);
    when(mUserManager.isLinkedUser()).thenReturn(false);
    when(mUserManager.getProfiles(anyInt())).thenReturn(infos);
    AccessiblePreferenceCategory preferenceGroup = mock(AccessiblePreferenceCategory.class);
    when(mAccountHelper.createAccessiblePreferenceCategory(any(Context.class))).thenReturn(preferenceGroup);
    mController.onResume();
    verify(preferenceGroup).setTitle(mContext.getString(R.string.account_for_section_header, "user 1"));
}
Also used : Context(android.content.Context) ArrayList(java.util.ArrayList) UserInfo(android.content.pm.UserInfo) AccessiblePreferenceCategory(com.android.settings.AccessiblePreferenceCategory) Test(org.junit.Test)

Example 19 with AccessiblePreferenceCategory

use of com.android.settings.AccessiblePreferenceCategory in project platform_packages_apps_Settings by BlissRoms.

the class AccountPreferenceControllerTest method onResume_noPreferenceScreen_shouldNotCrash.

@Test
public void onResume_noPreferenceScreen_shouldNotCrash() {
    final List<UserInfo> infos = new ArrayList<>();
    infos.add(new UserInfo(1, "user 1", 0));
    when(mUserManager.isManagedProfile()).thenReturn(false);
    when(mUserManager.isLinkedUser()).thenReturn(false);
    when(mUserManager.getProfiles(anyInt())).thenReturn(infos);
    AccessiblePreferenceCategory preferenceGroup = mock(AccessiblePreferenceCategory.class);
    when(mAccountHelper.createAccessiblePreferenceCategory(any(Context.class))).thenReturn(preferenceGroup);
    mController.onResume();
// Should not crash
}
Also used : Context(android.content.Context) ArrayList(java.util.ArrayList) UserInfo(android.content.pm.UserInfo) AccessiblePreferenceCategory(com.android.settings.AccessiblePreferenceCategory) Test(org.junit.Test)

Example 20 with AccessiblePreferenceCategory

use of com.android.settings.AccessiblePreferenceCategory in project platform_packages_apps_Settings by BlissRoms.

the class AccountPreferenceControllerTest method onResume_twoAccountsOfSameName_shouldAddFivePreferences.

@Test
@Config(shadows = { ShadowAccountManager.class, ShadowContentResolver.class, ShadowAuthenticatorHelper.class })
public void onResume_twoAccountsOfSameName_shouldAddFivePreferences() {
    final List<UserInfo> infos = new ArrayList<>();
    infos.add(new UserInfo(1, "user 1", 0));
    when(mUserManager.isManagedProfile()).thenReturn(false);
    when(mUserManager.isLinkedUser()).thenReturn(false);
    when(mUserManager.getProfiles(anyInt())).thenReturn(infos);
    final Account[] accountType1 = new Account[2];
    accountType1[0] = new Account("Account1", "com.acct1");
    accountType1[1] = new Account("Account2", "com.acct1");
    final Account[] accountType2 = new Account[2];
    accountType2[0] = new Account("Account1", "com.acct2");
    accountType2[1] = new Account("Account2", "com.acct2");
    final Account[] allAccounts = new Account[4];
    allAccounts[0] = accountType1[0];
    allAccounts[1] = accountType1[1];
    allAccounts[2] = accountType2[0];
    allAccounts[3] = accountType2[1];
    final AuthenticatorDescription[] authDescs = { new AuthenticatorDescription("com.acct1", "com.android.settings", R.string.account_settings_title, 0, 0, 0, false), new AuthenticatorDescription("com.acct2", "com.android.settings", R.string.account_settings_title, 0, 0, 0, false) };
    when(mAccountManager.getAccountsAsUser(anyInt())).thenReturn(allAccounts);
    when(mAccountManager.getAccountsByTypeAsUser(eq("com.acct1"), any(UserHandle.class))).thenReturn(accountType1);
    when(mAccountManager.getAccountsByTypeAsUser(eq("com.acct2"), any(UserHandle.class))).thenReturn(accountType2);
    when(mAccountManager.getAuthenticatorTypesAsUser(anyInt())).thenReturn(authDescs);
    AccessiblePreferenceCategory preferenceGroup = mock(AccessiblePreferenceCategory.class);
    when(preferenceGroup.getPreferenceManager()).thenReturn(mock(PreferenceManager.class));
    when(mAccountHelper.createAccessiblePreferenceCategory(any(Context.class))).thenReturn(preferenceGroup);
    mController.onResume();
    // should add 4 individual account and the Add account preference
    verify(preferenceGroup, times(5)).addPreference(any(Preference.class));
}
Also used : Context(android.content.Context) Account(android.accounts.Account) AuthenticatorDescription(android.accounts.AuthenticatorDescription) Preference(android.support.v7.preference.Preference) UserHandle(android.os.UserHandle) ArrayList(java.util.ArrayList) UserInfo(android.content.pm.UserInfo) AccessiblePreferenceCategory(com.android.settings.AccessiblePreferenceCategory) PreferenceManager(android.support.v7.preference.PreferenceManager) Test(org.junit.Test) Config(org.robolectric.annotation.Config) TestConfig(com.android.settings.TestConfig)

Aggregations

Context (android.content.Context)66 AccessiblePreferenceCategory (com.android.settings.AccessiblePreferenceCategory)66 UserInfo (android.content.pm.UserInfo)58 ArrayList (java.util.ArrayList)58 Test (org.junit.Test)58 Account (android.accounts.Account)44 AuthenticatorDescription (android.accounts.AuthenticatorDescription)44 UserHandle (android.os.UserHandle)44 PreferenceManager (android.support.v7.preference.PreferenceManager)30 PreferenceManager (androidx.preference.PreferenceManager)14 Preference (android.support.v7.preference.Preference)10 AuthenticatorHelper (com.android.settingslib.accounts.AuthenticatorHelper)8 Config (org.robolectric.annotation.Config)7 PreferenceScreen (android.support.v7.preference.PreferenceScreen)5 TestConfig (com.android.settings.TestConfig)5 SearchFeatureProviderImpl (com.android.settings.search.SearchFeatureProviderImpl)5 Preference (androidx.preference.Preference)4 PreferenceScreen (androidx.preference.PreferenceScreen)2