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
|
// 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 "chrome/browser/sync/js/js_mutation_event_observer.h"
#include "base/basictypes.h"
#include "base/message_loop.h"
#include "base/values.h"
#include "chrome/browser/sync/js/js_event_details.h"
#include "chrome/browser/sync/js/js_test_util.h"
#include "chrome/browser/sync/syncable/model_type.h"
#include "chrome/browser/sync/util/weak_handle.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace browser_sync {
namespace {
using ::testing::InSequence;
using ::testing::StrictMock;
class JsMutationEventObserverTest : public testing::Test {
protected:
JsMutationEventObserverTest() {
js_mutation_event_observer_.SetJsEventHandler(
mock_js_event_handler_.AsWeakHandle());
}
private:
// This must be destroyed after the member variables below in order
// for WeakHandles to be destroyed properly.
MessageLoop message_loop_;
protected:
StrictMock<MockJsEventHandler> mock_js_event_handler_;
JsMutationEventObserver js_mutation_event_observer_;
void PumpLoop() {
message_loop_.RunAllPending();
}
};
TEST_F(JsMutationEventObserverTest, OnChangesApplied) {
InSequence dummy;
// We don't test with passwords as that requires additional setup.
// Build a list of example ChangeRecords.
sync_api::ChangeRecord changes[syncable::MODEL_TYPE_COUNT];
for (int i = syncable::AUTOFILL_PROFILE;
i < syncable::MODEL_TYPE_COUNT; ++i) {
changes[i].id = i;
switch (i % 3) {
case 0:
changes[i].action =
sync_api::ChangeRecord::ACTION_ADD;
break;
case 1:
changes[i].action =
sync_api::ChangeRecord::ACTION_UPDATE;
break;
default:
changes[i].action =
sync_api::ChangeRecord::ACTION_DELETE;
break;
}
}
// For each i, we call OnChangesApplied() with the first arg equal
// to i cast to ModelType and the second argument with the changes
// starting from changes[i].
// Set expectations for each data type.
for (int i = syncable::AUTOFILL_PROFILE;
i < syncable::MODEL_TYPE_COUNT; ++i) {
const std::string& model_type_str =
syncable::ModelTypeToString(syncable::ModelTypeFromInt(i));
DictionaryValue expected_details;
expected_details.SetString("modelType", model_type_str);
expected_details.SetString("writeTransactionId", "0");
ListValue* expected_changes = new ListValue();
expected_details.Set("changes", expected_changes);
for (int j = i; j < syncable::MODEL_TYPE_COUNT; ++j) {
expected_changes->Append(changes[j].ToValue());
}
EXPECT_CALL(mock_js_event_handler_,
HandleJsEvent("onChangesApplied",
HasDetailsAsDictionary(expected_details)));
}
// Fire OnChangesApplied() for each data type.
for (int i = syncable::AUTOFILL_PROFILE;
i < syncable::MODEL_TYPE_COUNT; ++i) {
sync_api::ChangeRecordList
local_changes(changes + i, changes + arraysize(changes));
js_mutation_event_observer_.OnChangesApplied(
syncable::ModelTypeFromInt(i),
0, sync_api::ImmutableChangeRecordList(&local_changes));
}
PumpLoop();
}
TEST_F(JsMutationEventObserverTest, OnChangesComplete) {
InSequence dummy;
for (int i = syncable::FIRST_REAL_MODEL_TYPE;
i < syncable::MODEL_TYPE_COUNT; ++i) {
DictionaryValue expected_details;
expected_details.SetString(
"modelType",
syncable::ModelTypeToString(syncable::ModelTypeFromInt(i)));
EXPECT_CALL(mock_js_event_handler_,
HandleJsEvent("onChangesComplete",
HasDetailsAsDictionary(expected_details)));
}
for (int i = syncable::FIRST_REAL_MODEL_TYPE;
i < syncable::MODEL_TYPE_COUNT; ++i) {
js_mutation_event_observer_.OnChangesComplete(
syncable::ModelTypeFromInt(i));
}
PumpLoop();
}
} // namespace
} // namespace browser_sync
|