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
|
// Copyright (c) 2012 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 "sync/internal_api/js_mutation_event_observer.h"
#include "base/basictypes.h"
#include "base/message_loop/message_loop.h"
#include "base/values.h"
#include "sync/internal_api/public/base/model_type.h"
#include "sync/internal_api/public/util/weak_handle.h"
#include "sync/js/js_event_details.h"
#include "sync/js/js_test_util.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace syncer {
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.
base::MessageLoop message_loop_;
protected:
StrictMock<MockJsEventHandler> mock_js_event_handler_;
JsMutationEventObserver js_mutation_event_observer_;
void PumpLoop() {
message_loop_.RunUntilIdle();
}
};
TEST_F(JsMutationEventObserverTest, OnChangesApplied) {
InSequence dummy;
// We don't test with passwords as that requires additional setup.
// Build a list of example ChangeRecords.
ChangeRecord changes[MODEL_TYPE_COUNT];
for (int i = AUTOFILL_PROFILE; i < MODEL_TYPE_COUNT; ++i) {
changes[i].id = i;
switch (i % 3) {
case 0:
changes[i].action = ChangeRecord::ACTION_ADD;
break;
case 1:
changes[i].action = ChangeRecord::ACTION_UPDATE;
break;
default:
changes[i].action = 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 = AUTOFILL_PROFILE; i < MODEL_TYPE_COUNT; ++i) {
const std::string& model_type_str =
ModelTypeToString(ModelTypeFromInt(i));
base::DictionaryValue expected_details;
expected_details.SetString("modelType", model_type_str);
expected_details.SetString("writeTransactionId", "0");
base::ListValue* expected_changes = new base::ListValue();
expected_details.Set("changes", expected_changes);
for (int j = i; j < 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 = AUTOFILL_PROFILE; i < MODEL_TYPE_COUNT; ++i) {
ChangeRecordList local_changes(changes + i, changes + arraysize(changes));
js_mutation_event_observer_.OnChangesApplied(
ModelTypeFromInt(i),
0, ImmutableChangeRecordList(&local_changes));
}
PumpLoop();
}
TEST_F(JsMutationEventObserverTest, OnChangesComplete) {
InSequence dummy;
for (int i = FIRST_REAL_MODEL_TYPE; i < MODEL_TYPE_COUNT; ++i) {
base::DictionaryValue expected_details;
expected_details.SetString(
"modelType",
ModelTypeToString(ModelTypeFromInt(i)));
EXPECT_CALL(mock_js_event_handler_,
HandleJsEvent("onChangesComplete",
HasDetailsAsDictionary(expected_details)));
}
for (int i = FIRST_REAL_MODEL_TYPE; i < MODEL_TYPE_COUNT; ++i) {
js_mutation_event_observer_.OnChangesComplete(
ModelTypeFromInt(i));
}
PumpLoop();
}
} // namespace
} // namespace syncer
|