blob: deaa34ca9f5196914036253f3e4245965d1cc77e [file] [log] [blame]
Fabrice Di Meglio7e118b52010-11-23 17:06:45 -08001/*
2 * Copyright (C) 2010 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 */
16
Matthew Williamsfa774182013-06-18 15:44:11 -070017package com.android.server.content;
Fabrice Di Meglio7e118b52010-11-23 17:06:45 -080018
19import android.accounts.Account;
20import android.os.Bundle;
Shreyas Basarge8c834c02016-01-07 13:53:16 +000021import android.os.PersistableBundle;
Fabrice Di Meglio7e118b52010-11-23 17:06:45 -080022import android.test.AndroidTestCase;
23import android.test.suitebuilder.annotation.SmallTest;
24
25/**
Makoto Onuki15e7a252017-06-08 17:12:05 -070026 * Test for SyncOperation.
Fabrice Di Meglio7e118b52010-11-23 17:06:45 -080027 *
Makoto Onuki15e7a252017-06-08 17:12:05 -070028 * bit FrameworksServicesTests:com.android.server.content.SyncOperationTest
Fabrice Di Meglio7e118b52010-11-23 17:06:45 -080029 */
Makoto Onuki15e7a252017-06-08 17:12:05 -070030@SmallTest
Fabrice Di Meglio7e118b52010-11-23 17:06:45 -080031public class SyncOperationTest extends AndroidTestCase {
32
Matthew Williams64280462014-01-09 10:49:23 -080033 Account mDummy;
34 /** Indicate an unimportant long that we're not testing. */
35 long mUnimportantLong = 0L;
36 /** Empty bundle. */
37 Bundle mEmpty;
38 /** Silly authority. */
39 String mAuthority;
40
41 @Override
42 public void setUp() {
43 mDummy = new Account("account1", "type1");
44 mEmpty = new Bundle();
45 mAuthority = "authority1";
46 }
47
Fabrice Di Meglio7e118b52010-11-23 17:06:45 -080048 @SmallTest
49 public void testToKey() {
50 Account account1 = new Account("account1", "type1");
51 Account account2 = new Account("account2", "type2");
52
53 Bundle b1 = new Bundle();
54 Bundle b2 = new Bundle();
55 b2.putBoolean("b2", true);
56
Amith Yamasani04e0d262012-02-14 11:50:53 -080057 SyncOperation op1 = new SyncOperation(account1, 0,
Dianne Hackbornbef28fe2015-10-29 17:57:11 -070058 1, "foo", 0,
Alon Albert57286f92012-10-09 14:21:38 -070059 SyncOperation.REASON_PERIODIC,
Fabrice Di Meglio7e118b52010-11-23 17:06:45 -080060 "authority1",
61 b1,
Fred Quintana0c4d04a2010-11-03 17:02:55 -070062 false);
Fabrice Di Meglio7e118b52010-11-23 17:06:45 -080063
64 // Same as op1 but different time infos
Amith Yamasani04e0d262012-02-14 11:50:53 -080065 SyncOperation op2 = new SyncOperation(account1, 0,
Dianne Hackbornbef28fe2015-10-29 17:57:11 -070066 1, "foo", 0,
Alon Albert57286f92012-10-09 14:21:38 -070067 SyncOperation.REASON_PERIODIC,
Fabrice Di Meglio7e118b52010-11-23 17:06:45 -080068 "authority1",
69 b1,
Fred Quintana0c4d04a2010-11-03 17:02:55 -070070 false);
Fabrice Di Meglio7e118b52010-11-23 17:06:45 -080071
72 // Same as op1 but different authority
Amith Yamasani04e0d262012-02-14 11:50:53 -080073 SyncOperation op3 = new SyncOperation(account1, 0,
Dianne Hackbornbef28fe2015-10-29 17:57:11 -070074 1, "foo", 0,
Alon Albert57286f92012-10-09 14:21:38 -070075 SyncOperation.REASON_PERIODIC,
Fabrice Di Meglio7e118b52010-11-23 17:06:45 -080076 "authority2",
77 b1,
Fred Quintana0c4d04a2010-11-03 17:02:55 -070078 false);
Fabrice Di Meglio7e118b52010-11-23 17:06:45 -080079
80 // Same as op1 but different account
Amith Yamasani04e0d262012-02-14 11:50:53 -080081 SyncOperation op4 = new SyncOperation(account2, 0,
Dianne Hackbornbef28fe2015-10-29 17:57:11 -070082 1, "foo", 0,
Alon Albert57286f92012-10-09 14:21:38 -070083 SyncOperation.REASON_PERIODIC,
Fabrice Di Meglio7e118b52010-11-23 17:06:45 -080084 "authority1",
85 b1,
Fred Quintana0c4d04a2010-11-03 17:02:55 -070086 false);
Fabrice Di Meglio7e118b52010-11-23 17:06:45 -080087
88 // Same as op1 but different bundle
Amith Yamasani04e0d262012-02-14 11:50:53 -080089 SyncOperation op5 = new SyncOperation(account1, 0,
Dianne Hackbornbef28fe2015-10-29 17:57:11 -070090 1, "foo", 0,
Alon Albert57286f92012-10-09 14:21:38 -070091 SyncOperation.REASON_PERIODIC,
Fabrice Di Meglio7e118b52010-11-23 17:06:45 -080092 "authority1",
93 b2,
Fred Quintana0c4d04a2010-11-03 17:02:55 -070094 false);
Fabrice Di Meglio7e118b52010-11-23 17:06:45 -080095
96 assertEquals(op1.key, op2.key);
97 assertNotSame(op1.key, op3.key);
98 assertNotSame(op1.key, op4.key);
99 assertNotSame(op1.key, op5.key);
100 }
Matthew Williamsfa774182013-06-18 15:44:11 -0700101
102 @SmallTest
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000103 public void testConversionToExtras() {
104 Account account1 = new Account("account1", "type1");
105 Bundle b1 = new Bundle();
106 b1.putParcelable("acc", account1);
107 b1.putString("str", "String");
Matthew Williamsfa774182013-06-18 15:44:11 -0700108
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000109 SyncOperation op1 = new SyncOperation(account1, 0,
110 1, "foo", 0,
111 SyncOperation.REASON_PERIODIC,
112 "authority1",
113 b1,
114 false);
Matthew Williamsfa774182013-06-18 15:44:11 -0700115
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000116 PersistableBundle pb = op1.toJobInfoExtras();
117 SyncOperation op2 = SyncOperation.maybeCreateFromJobExtras(pb);
Matthew Williamsfa774182013-06-18 15:44:11 -0700118
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000119 assertTrue("Account fields in extras not persisted.",
120 account1.equals(op2.extras.get("acc")));
121 assertTrue("Fields in extras not persisted", "String".equals(op2.extras.getString("str")));
Matthew Williams64280462014-01-09 10:49:23 -0800122 }
123
124 @SmallTest
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000125 public void testConversionFromExtras() {
126 PersistableBundle extras = new PersistableBundle();
127 SyncOperation op = SyncOperation.maybeCreateFromJobExtras(extras);
128 assertTrue("Non sync operation bundle falsely converted to SyncOperation.", op == null);
129 }
Matthew Williams64280462014-01-09 10:49:23 -0800130
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000131 /**
132 * Tests whether a failed periodic sync operation is converted correctly into a one time
133 * sync operation, and whether the periodic sync can be re-created from the one-time operation.
134 */
135 @SmallTest
136 public void testFailedPeriodicConversion() {
137 SyncStorageEngine.EndPoint ep = new SyncStorageEngine.EndPoint(new Account("name", "type"),
138 "provider", 0);
139 Bundle extras = new Bundle();
140 SyncOperation periodic = new SyncOperation(ep, 0, "package", 0, 0, extras, false, true,
Shreyas Basarge16754002016-02-08 23:52:27 +0000141 SyncOperation.NO_JOB_ID, 60000, 10000);
Shreyas Basarge8c834c02016-01-07 13:53:16 +0000142 SyncOperation oneoff = periodic.createOneTimeSyncOperation();
143 assertFalse("Conversion to oneoff sync failed.", oneoff.isPeriodic);
Shreyas Basarge16754002016-02-08 23:52:27 +0000144 assertEquals("Period not restored", periodic.periodMillis, oneoff.periodMillis);
145 assertEquals("Flex not restored", periodic.flexMillis, oneoff.flexMillis);
Matthew Williamsfa774182013-06-18 15:44:11 -0700146 }
Fabrice Di Meglio7e118b52010-11-23 17:06:45 -0800147}