blob: 7ee9acbe980b16b54d517927d3561c8b9c076329 [file] [log] [blame]
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.cts.devicepolicy.accountmanagement;
import android.accounts.Account;
import android.accounts.AccountManager;
import android.content.Context;
import android.test.AndroidTestCase;
import android.util.Log;
/**
* Functionality tests for
* {@link android.app.admin.DevicePolicyManager#setAccountManagementDisabled}
* and (@link android.os.UserManager#DISALLOW_MODIFY_ACCOUNTS}
*
* This test depends on {@link MockAccountService}, which provides authenticator of type
* {@link MockAccountService#ACCOUNT_TYPE}.
*/
public class AccountUtilsTest extends AndroidTestCase {
private static final String TAG = AccountUtilsTest.class.getSimpleName();
// Account type for MockAccountAuthenticator
private static final Account ACCOUNT = new Account("testUser",
MockAccountAuthenticator.ACCOUNT_TYPE);
private AccountManager mAccountManager;
@Override
protected void setUp() throws Exception {
super.setUp();
Log.d(TAG, "setUp(): running on user " + mContext.getUserId());
mAccountManager = (AccountManager) mContext.getSystemService(Context.ACCOUNT_SERVICE);
}
public void testAddAccountExplicitly() throws Exception {
assertEquals(0, mAccountManager.getAccountsByType(MockAccountAuthenticator.ACCOUNT_TYPE)
.length);
assertTrue(mAccountManager.addAccountExplicitly(ACCOUNT, "password", null));
assertEquals(1, mAccountManager.getAccountsByType(MockAccountAuthenticator.ACCOUNT_TYPE)
.length);
}
public void testRemoveAccountExplicitly() throws Exception {
assertEquals(1, mAccountManager.getAccountsByType(MockAccountAuthenticator.ACCOUNT_TYPE)
.length);
mAccountManager.removeAccountExplicitly(ACCOUNT);
assertEquals(0, mAccountManager.getAccountsByType(MockAccountAuthenticator.ACCOUNT_TYPE)
.length);
}
}