blob: 508ff04a00c61926e64d9d666a1ec32ce1ef0532 [file] [log] [blame]
Xi Chena455bd52016-07-25 17:00:22 -07001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package com.android.contacts.util;
17
18import android.accounts.Account;
19import android.test.AndroidTestCase;
20import android.test.suitebuilder.annotation.SmallTest;
21
Xi Chena455bd52016-07-25 17:00:22 -070022/**
23 * Tests for SyncUtil.
24 */
25@SmallTest
26public class SyncUtilTests extends AndroidTestCase {
27 private static final String TAG = "SyncUtilTests";
28
29 private static final String GOOGLE_TYPE = "com.google";
30 private static final String NOT_GOOGLE_TYPE = "com.abc";
31 private static final String ACCOUNT_NAME = "ACCOUNT_NAME";
32
33 private final Account mGoogleAccount;
34 private final Account mOtherAccount;
35
36 public SyncUtilTests() {
37 mGoogleAccount = new Account(ACCOUNT_NAME, GOOGLE_TYPE);
38 mOtherAccount = new Account(ACCOUNT_NAME, NOT_GOOGLE_TYPE);
39 }
40
41 public void testIsUnsyncableGoogleAccount() throws Exception {
42 // The account names of mGoogleAccount and mOtherAccount are not valid, so both accounts
43 // are not syncable.
44 assertTrue(SyncUtil.isUnsyncableGoogleAccount(mGoogleAccount));
45 assertFalse(SyncUtil.isUnsyncableGoogleAccount(mOtherAccount));
46 assertFalse(SyncUtil.isUnsyncableGoogleAccount(null));
47 }
48}