1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/file_util.h"
#include "base/memory/scoped_ptr.h"
#include "base/message_loop.h"
#include "base/values.h"
#include "chrome/browser/net/gaia/token_service.h"
#include "chrome/browser/sync/glue/bookmark_data_type_controller.h"
#include "chrome/browser/sync/glue/data_type_controller.h"
#include "chrome/browser/sync/js_arg_list.h"
#include "chrome/browser/sync/js_event_details.h"
#include "chrome/browser/sync/js_test_util.h"
#include "chrome/browser/sync/profile_sync_factory_mock.h"
#include "chrome/browser/sync/test_profile_sync_service.h"
#include "chrome/common/net/gaia/gaia_constants.h"
#include "chrome/common/pref_names.h"
#include "chrome/test/testing_pref_service.h"
#include "chrome/test/testing_profile.h"
#include "content/browser/browser_thread.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
// TODO(akalin): Add tests here that exercise the whole
// ProfileSyncService/SyncBackendHost stack while mocking out as
// little as possible.
namespace browser_sync {
namespace {
using testing::_;
using testing::AnyNumber;
using testing::AtLeast;
using testing::AtMost;
using testing::Return;
using testing::StrictMock;
class ProfileSyncServiceTest : public testing::Test {
protected:
ProfileSyncServiceTest()
: ui_thread_(BrowserThread::UI, &ui_loop_),
io_thread_(BrowserThread::IO) {}
virtual ~ProfileSyncServiceTest() {}
virtual void SetUp() {
base::Thread::Options options;
options.message_loop_type = MessageLoop::TYPE_IO;
io_thread_.StartWithOptions(options);
profile_.reset(new TestingProfile());
profile_->CreateRequestContext();
}
virtual void TearDown() {
// Kill the service before the profile.
service_.reset();
profile_.reset();
// Pump messages posted by the sync core thread (which may end up
// posting on the IO thread).
ui_loop_.RunAllPending();
io_thread_.Stop();
// Ensure that the sync objects destruct to avoid memory leaks.
ui_loop_.RunAllPending();
}
// TODO(akalin): Refactor the StartSyncService*() functions below.
void StartSyncService() {
StartSyncServiceAndSetInitialSyncEnded(true, true, false, true);
}
void StartSyncServiceAndSetInitialSyncEnded(
bool set_initial_sync_ended,
bool issue_auth_token,
bool synchronous_sync_configuration,
bool sync_setup_completed) {
if (!service_.get()) {
// Set bootstrap to true and it will provide a logged in user for test
service_.reset(new TestProfileSyncService(&factory_,
profile_.get(),
"test", true, NULL));
if (!set_initial_sync_ended)
service_->dont_set_initial_sync_ended_on_init();
if (synchronous_sync_configuration)
service_->set_synchronous_sync_configuration();
if (!sync_setup_completed)
profile_->GetPrefs()->SetBoolean(prefs::kSyncHasSetupCompleted, false);
// Register the bookmark data type.
EXPECT_CALL(factory_, CreateDataTypeManager(_, _)).
WillOnce(ReturnNewDataTypeManager());
if (issue_auth_token) {
profile_->GetTokenService()->IssueAuthTokenForTest(
GaiaConstants::kSyncService, "token");
}
service_->Initialize();
}
}
MessageLoop ui_loop_;
// Needed by |service_|.
BrowserThread ui_thread_;
// Needed by |service| and |profile_|'s request context.
BrowserThread io_thread_;
scoped_ptr<TestProfileSyncService> service_;
scoped_ptr<TestingProfile> profile_;
ProfileSyncFactoryMock factory_;
};
TEST_F(ProfileSyncServiceTest, InitialState) {
service_.reset(new TestProfileSyncService(&factory_, profile_.get(),
"", true, NULL));
EXPECT_TRUE(
service_->sync_service_url().spec() ==
ProfileSyncService::kSyncServerUrl ||
service_->sync_service_url().spec() ==
ProfileSyncService::kDevServerUrl);
}
TEST_F(ProfileSyncServiceTest, DisabledByPolicy) {
profile_->GetTestingPrefService()->SetManagedPref(
prefs::kSyncManaged,
Value::CreateBooleanValue(true));
service_.reset(new TestProfileSyncService(&factory_, profile_.get(),
"", true, NULL));
service_->Initialize();
EXPECT_TRUE(service_->IsManaged());
}
TEST_F(ProfileSyncServiceTest, AbortedByShutdown) {
service_.reset(new TestProfileSyncService(&factory_, profile_.get(),
"test", true, NULL));
EXPECT_CALL(factory_, CreateDataTypeManager(_, _)).Times(0);
EXPECT_CALL(factory_, CreateBookmarkSyncComponents(_, _)).Times(0);
service_->RegisterDataTypeController(
new BookmarkDataTypeController(&factory_,
profile_.get(),
service_.get()));
service_->Initialize();
service_.reset();
}
TEST_F(ProfileSyncServiceTest, JsFrontendHandlersBasic) {
StartSyncService();
StrictMock<MockJsEventHandler> event_handler;
SyncBackendHostForProfileSyncTest* test_backend =
service_->GetBackendForTest();
EXPECT_TRUE(service_->sync_initialized());
ASSERT_TRUE(test_backend != NULL);
ASSERT_TRUE(test_backend->GetJsBackend() != NULL);
EXPECT_EQ(NULL, test_backend->GetJsBackend()->GetParentJsEventRouter());
JsFrontend* js_backend = service_->GetJsFrontend();
js_backend->AddHandler(&event_handler);
ASSERT_TRUE(test_backend->GetJsBackend() != NULL);
EXPECT_TRUE(test_backend->GetJsBackend()->GetParentJsEventRouter() != NULL);
js_backend->RemoveHandler(&event_handler);
EXPECT_EQ(NULL, test_backend->GetJsBackend()->GetParentJsEventRouter());
}
TEST_F(ProfileSyncServiceTest,
JsFrontendHandlersDelayedBackendInitialization) {
StartSyncServiceAndSetInitialSyncEnded(true, false, false, true);
StrictMock<MockJsEventHandler> event_handler;
EXPECT_CALL(event_handler,
HandleJsEvent("onTransactionStart", _)).Times(AnyNumber());
EXPECT_CALL(event_handler,
HandleJsEvent("onTransactionEnd", _)).Times(AnyNumber());
EXPECT_CALL(event_handler,
HandleJsEvent("onServiceStateChanged",
HasDetails(JsEventDetails()))).Times(AtLeast(3));
// For some reason, these events may or may not fire.
//
// TODO(akalin): Figure out exactly why there's non-determinism
// here, and if possible remove it.
EXPECT_CALL(event_handler, HandleJsEvent("onChangesApplied", _))
.Times(AtMost(1));
EXPECT_CALL(event_handler, HandleJsEvent("onChangesComplete", _))
.Times(AtMost(1));
EXPECT_CALL(event_handler, HandleJsEvent("onNotificationStateChange", _))
.Times(AtMost(1));
EXPECT_EQ(NULL, service_->GetBackendForTest());
EXPECT_FALSE(service_->sync_initialized());
JsFrontend* js_backend = service_->GetJsFrontend();
js_backend->AddHandler(&event_handler);
// Since we're doing synchronous initialization, backend should be
// initialized by this call.
profile_->GetTokenService()->IssueAuthTokenForTest(
GaiaConstants::kSyncService, "token");
SyncBackendHostForProfileSyncTest* test_backend =
service_->GetBackendForTest();
EXPECT_TRUE(service_->sync_initialized());
ASSERT_TRUE(test_backend != NULL);
ASSERT_TRUE(test_backend->GetJsBackend() != NULL);
EXPECT_TRUE(test_backend->GetJsBackend()->GetParentJsEventRouter() != NULL);
js_backend->RemoveHandler(&event_handler);
EXPECT_EQ(NULL, test_backend->GetJsBackend()->GetParentJsEventRouter());
}
TEST_F(ProfileSyncServiceTest, JsFrontendProcessMessageBasic) {
StartSyncService();
StrictMock<MockJsEventHandler> event_handler;
// For some reason, these events may or may not fire.
EXPECT_CALL(event_handler, HandleJsEvent("onChangesApplied", _))
.Times(AtMost(1));
EXPECT_CALL(event_handler, HandleJsEvent("onChangesComplete", _))
.Times(AtMost(1));
EXPECT_CALL(event_handler, HandleJsEvent("onNotificationStateChange", _))
.Times(AtMost(1));
ListValue arg_list1;
arg_list1.Append(Value::CreateBooleanValue(true));
arg_list1.Append(Value::CreateIntegerValue(5));
JsArgList args1(&arg_list1);
EXPECT_CALL(event_handler,
HandleJsMessageReply("testMessage1", HasArgs(args1)));
ListValue arg_list2;
arg_list2.Append(Value::CreateStringValue("test"));
arg_list2.Append(arg_list1.DeepCopy());
JsArgList args2(&arg_list2);
EXPECT_CALL(event_handler,
HandleJsMessageReply("delayTestMessage2", HasArgs(args2)));
ListValue arg_list3;
arg_list3.Append(arg_list1.DeepCopy());
arg_list3.Append(arg_list2.DeepCopy());
JsArgList args3(&arg_list3);
JsFrontend* js_backend = service_->GetJsFrontend();
// Never replied to.
js_backend->ProcessMessage("notRepliedTo", args3, &event_handler);
// Replied to later.
js_backend->ProcessMessage("delayTestMessage2", args2, &event_handler);
js_backend->AddHandler(&event_handler);
// Replied to immediately.
js_backend->ProcessMessage("testMessage1", args1, &event_handler);
// Fires off reply for delayTestMessage2.
ui_loop_.RunAllPending();
// Never replied to.
js_backend->ProcessMessage("delayNotRepliedTo", args3, &event_handler);
js_backend->RemoveHandler(&event_handler);
ui_loop_.RunAllPending();
// Never replied to.
js_backend->ProcessMessage("notRepliedTo", args3, &event_handler);
}
TEST_F(ProfileSyncServiceTest,
JsFrontendProcessMessageBasicDelayedBackendInitialization) {
StartSyncServiceAndSetInitialSyncEnded(true, false, false, true);
StrictMock<MockJsEventHandler> event_handler;
EXPECT_CALL(event_handler,
HandleJsEvent("onTransactionStart", _)).Times(AnyNumber());
EXPECT_CALL(event_handler,
HandleJsEvent("onTransactionEnd", _)).Times(AnyNumber());
// For some reason, these events may or may not fire.
EXPECT_CALL(event_handler, HandleJsEvent("onChangesApplied", _))
.Times(AtMost(1));
EXPECT_CALL(event_handler, HandleJsEvent("onChangesComplete", _))
.Times(AtMost(1));
EXPECT_CALL(event_handler, HandleJsEvent("onNotificationStateChange", _))
.Times(AtMost(1));
ListValue arg_list1;
arg_list1.Append(Value::CreateBooleanValue(true));
arg_list1.Append(Value::CreateIntegerValue(5));
JsArgList args1(&arg_list1);
EXPECT_CALL(event_handler,
HandleJsMessageReply("testMessage1", HasArgs(args1)));
ListValue arg_list2;
arg_list2.Append(Value::CreateStringValue("test"));
arg_list2.Append(arg_list1.DeepCopy());
JsArgList args2(&arg_list2);
EXPECT_CALL(event_handler,
HandleJsMessageReply("testMessage2", HasArgs(args2)));
ListValue arg_list3;
arg_list3.Append(arg_list1.DeepCopy());
arg_list3.Append(arg_list2.DeepCopy());
JsArgList args3(&arg_list3);
EXPECT_CALL(event_handler,
HandleJsMessageReply("delayTestMessage3", HasArgs(args3)));
const JsEventDetails kNoDetails;
EXPECT_CALL(event_handler, HandleJsEvent("onServiceStateChanged",
HasDetails(kNoDetails))).Times(AtLeast(3));
JsFrontend* js_backend = service_->GetJsFrontend();
// We expect a reply for this message, even though its sent before
// |event_handler| is added as a handler.
js_backend->ProcessMessage("testMessage1", args1, &event_handler);
js_backend->AddHandler(&event_handler);
js_backend->ProcessMessage("testMessage2", args2, &event_handler);
js_backend->ProcessMessage("delayTestMessage3", args3, &event_handler);
// Fires testMessage1 and testMessage2.
profile_->GetTokenService()->IssueAuthTokenForTest(
GaiaConstants::kSyncService, "token");
// Fires delayTestMessage3.
ui_loop_.RunAllPending();
const JsArgList kNoArgs;
js_backend->ProcessMessage("delayNotRepliedTo", kNoArgs, &event_handler);
js_backend->RemoveHandler(&event_handler);
ui_loop_.RunAllPending();
js_backend->ProcessMessage("notRepliedTo", kNoArgs, &event_handler);
}
// Make sure that things still work if sync is not enabled, but some old sync
// databases are lingering in the "Sync Data" folder.
TEST_F(ProfileSyncServiceTest, TestStartupWithOldSyncData) {
const char* nonsense1 = "reginald";
const char* nonsense2 = "beartato";
const char* nonsense3 = "harrison";
FilePath temp_directory = profile_->GetPath().AppendASCII("Sync Data");
FilePath sync_file1 =
temp_directory.AppendASCII("BookmarkSyncSettings.sqlite3");
FilePath sync_file2 = temp_directory.AppendASCII("SyncData.sqlite3");
FilePath sync_file3 = temp_directory.AppendASCII("nonsense_file");
ASSERT_TRUE(file_util::CreateDirectory(temp_directory));
ASSERT_NE(-1,
file_util::WriteFile(sync_file1, nonsense1, strlen(nonsense1)));
ASSERT_NE(-1,
file_util::WriteFile(sync_file2, nonsense2, strlen(nonsense2)));
ASSERT_NE(-1,
file_util::WriteFile(sync_file3, nonsense3, strlen(nonsense3)));
StartSyncServiceAndSetInitialSyncEnded(false, false, true, false);
EXPECT_FALSE(service_->HasSyncSetupCompleted());
// Since we're doing synchronous initialization, backend should be
// initialized by this call.
profile_->GetTokenService()->IssueAuthTokenForTest(
GaiaConstants::kSyncService, "token");
// Stop the service so we can read the new Sync Data files that were
// created.
service_.reset();
// This file should have been deleted when the whole directory was nuked.
ASSERT_FALSE(file_util::PathExists(sync_file3));
ASSERT_FALSE(file_util::PathExists(sync_file1));
// This will still exist, but the text should have changed.
ASSERT_TRUE(file_util::PathExists(sync_file2));
std::string file2text;
ASSERT_TRUE(file_util::ReadFileToString(sync_file2, &file2text));
ASSERT_NE(file2text.compare(nonsense2), 0);
}
} // namespace
} // namespace browser_sync
|