1 /** 2 * Copyright (c) 2014, Google Inc. 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 */ 16 package com.android.mail.providers; 17 18 import android.test.AndroidTestCase; 19 20 public class UIProviderTest extends AndroidTestCase { 21 22 public void testReadAndWriteOfLastSyncResult() { 23 packAndUnpackLastSyncResult(UIProvider.SyncStatus.NO_SYNC, 24 UIProvider.LastSyncResult.STORAGE_ERROR); 25 packAndUnpackLastSyncResult(UIProvider.SyncStatus.NO_SYNC, 26 UIProvider.LastSyncResult.SECURITY_ERROR); 27 packAndUnpackLastSyncResult(UIProvider.SyncStatus.USER_REFRESH, 28 UIProvider.LastSyncResult.SUCCESS); 29 packAndUnpackLastSyncResult(UIProvider.SyncStatus.USER_REFRESH, 30 UIProvider.LastSyncResult.AUTH_ERROR); 31 packAndUnpackLastSyncResult(UIProvider.SyncStatus.BACKGROUND_SYNC, 32 UIProvider.LastSyncResult.SUCCESS); 33 packAndUnpackLastSyncResult(UIProvider.SyncStatus.BACKGROUND_SYNC, 34 UIProvider.LastSyncResult.CONNECTION_ERROR); 35 } 36 37 private void packAndUnpackLastSyncResult(int syncStatus, int lastSyncResult) { 38 final int value = UIProvider.createSyncValue(syncStatus, lastSyncResult); 39 40 assertEquals(syncStatus, UIProvider.getStatusFromLastSyncResult(value)); 41 assertEquals(lastSyncResult, UIProvider.getResultFromLastSyncResult(value)); 42 } 43 } 44