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
|
// Copyright 2013 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/local_discovery/privet_http_asynchronous_factory.h"
#include "chrome/browser/local_discovery/privet_notifications.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
using testing::StrictMock;
using ::testing::_;
using ::testing::SaveArg;
namespace local_discovery {
namespace {
const char kExampleDeviceName[] = "test._privet._tcp.local";
const char kExampleDeviceHumanName[] = "Test device";
const char kExampleDeviceDescription[] = "Testing testing";
const char kExampleDeviceID[] = "__test__id";
class MockPrivetNotificationsListenerDeleagate
: public PrivetNotificationsListener::Delegate {
public:
MOCK_METHOD2(PrivetNotify, void(bool multiple, bool added));
MOCK_METHOD0(PrivetRemoveNotification, void());
};
// TODO(noamsml): Migrate this test to use a real privet info operation and a
// fake URL fetcher.
class MockPrivetInfoOperation : public PrivetInfoOperation {
public:
class DelegateForTests {
public:
virtual ~DelegateForTests() {}
virtual void InfoOperationStarted(MockPrivetInfoOperation* operation) = 0;
};
MockPrivetInfoOperation(PrivetHTTPClient* client,
DelegateForTests* delegate_for_tests,
Delegate* delegate)
: client_(client),
delegate_for_tests_(delegate_for_tests),
delegate_(delegate) {
}
virtual ~MockPrivetInfoOperation() {
}
virtual void Start() OVERRIDE {
delegate_for_tests_->InfoOperationStarted(this);
}
virtual PrivetHTTPClient* GetHTTPClient() OVERRIDE {
return client_;
}
Delegate* delegate() { return delegate_; }
private:
PrivetHTTPClient* client_;
DelegateForTests* delegate_for_tests_;
Delegate* delegate_;
};
class MockPrivetHTTPClient : public PrivetHTTPClient {
public:
MockPrivetHTTPClient(
MockPrivetInfoOperation::DelegateForTests* delegate_for_tests,
const std::string& name) : delegate_for_tests_(delegate_for_tests),
name_(name) {
}
virtual scoped_ptr<PrivetRegisterOperation> CreateRegisterOperation(
const std::string& user,
PrivetRegisterOperation::Delegate* delegate) OVERRIDE {
return scoped_ptr<PrivetRegisterOperation>();
}
virtual scoped_ptr<PrivetInfoOperation> CreateInfoOperation(
PrivetInfoOperation::Delegate* delegate) OVERRIDE {
return scoped_ptr<PrivetInfoOperation>(new MockPrivetInfoOperation(
this, delegate_for_tests_, delegate));
}
virtual scoped_ptr<PrivetCapabilitiesOperation> CreateCapabilitiesOperation(
PrivetCapabilitiesOperation::Delegate* delegate) OVERRIDE {
NOTIMPLEMENTED();
return scoped_ptr<PrivetCapabilitiesOperation>();
}
virtual scoped_ptr<PrivetLocalPrintOperation> CreateLocalPrintOperation(
PrivetLocalPrintOperation::Delegate* delegate) OVERRIDE {
NOTIMPLEMENTED();
return scoped_ptr<PrivetLocalPrintOperation>();
}
virtual const std::string& GetName() OVERRIDE { return name_; }
virtual const base::DictionaryValue* GetCachedInfo() const OVERRIDE {
NOTIMPLEMENTED();
return NULL;
}
private:
MockPrivetInfoOperation::DelegateForTests* delegate_for_tests_;
std::string name_;
};
class MockPrivetHttpFactory : public PrivetHTTPAsynchronousFactory {
public:
class MockResolution : public PrivetHTTPResolution {
public:
MockResolution(
const std::string& name,
MockPrivetInfoOperation::DelegateForTests* delegate_for_tests,
const ResultCallback& callback)
: name_(name), delegate_for_tests_(delegate_for_tests),
callback_(callback) {
}
virtual ~MockResolution() {
}
virtual void Start() OVERRIDE {
callback_.Run(scoped_ptr<PrivetHTTPClient>(
new MockPrivetHTTPClient(delegate_for_tests_, name_)));
}
virtual const std::string& GetName() OVERRIDE {
return name_;
}
private:
std::string name_;
MockPrivetInfoOperation::DelegateForTests* delegate_for_tests_;
ResultCallback callback_;
};
MockPrivetHttpFactory(
MockPrivetInfoOperation::DelegateForTests* delegate_for_tests)
: delegate_for_tests_(delegate_for_tests) {
}
virtual scoped_ptr<PrivetHTTPResolution> CreatePrivetHTTP(
const std::string& name,
const net::HostPortPair& address,
const ResultCallback& callback) OVERRIDE {
return scoped_ptr<PrivetHTTPResolution>(
new MockResolution(name, delegate_for_tests_, callback));
}
private:
MockPrivetInfoOperation::DelegateForTests* delegate_for_tests_;
};
class MockDelegateForTests : public MockPrivetInfoOperation::DelegateForTests {
public:
MOCK_METHOD1(InfoOperationStarted, void(MockPrivetInfoOperation* operation));
};
class PrivetNotificationsListenerTest : public ::testing::Test {
public:
PrivetNotificationsListenerTest() {
notification_listener_.reset(new PrivetNotificationsListener(
scoped_ptr<PrivetHTTPAsynchronousFactory>(
new MockPrivetHttpFactory(&mock_delegate_for_tests_)),
&mock_delegate_));
description_.name = kExampleDeviceHumanName;
description_.description = kExampleDeviceDescription;
}
virtual ~PrivetNotificationsListenerTest() {
}
virtual void ExpectInfoOperation() {
EXPECT_CALL(mock_delegate_for_tests_, InfoOperationStarted(_))
.WillOnce(SaveArg<0>(&info_operation_));
}
protected:
StrictMock<MockPrivetNotificationsListenerDeleagate> mock_delegate_;
StrictMock<MockDelegateForTests> mock_delegate_for_tests_;
scoped_ptr<PrivetNotificationsListener> notification_listener_;
MockPrivetInfoOperation* info_operation_;
DeviceDescription description_;
};
TEST_F(PrivetNotificationsListenerTest, DisappearReappearTest) {
ExpectInfoOperation();
EXPECT_CALL(mock_delegate_, PrivetNotify(
false,
true));
notification_listener_->DeviceChanged(
true,
kExampleDeviceName,
description_);
base::DictionaryValue value;
value.SetInteger("uptime", 20);
info_operation_->delegate()->OnPrivetInfoDone(info_operation_,
200, &value);
EXPECT_CALL(mock_delegate_, PrivetRemoveNotification());
notification_listener_->DeviceRemoved(
kExampleDeviceName);
notification_listener_->DeviceChanged(
true,
kExampleDeviceName,
description_);
description_.id = kExampleDeviceID;
notification_listener_->DeviceChanged(
true,
kExampleDeviceName,
description_);
}
TEST_F(PrivetNotificationsListenerTest, RegisterTest) {
ExpectInfoOperation();
EXPECT_CALL(mock_delegate_, PrivetNotify(
false,
true));
notification_listener_->DeviceChanged(
true,
kExampleDeviceName,
description_);
base::DictionaryValue value;
value.SetInteger("uptime", 20);
info_operation_->delegate()->OnPrivetInfoDone(info_operation_,
200, &value);
EXPECT_CALL(mock_delegate_, PrivetRemoveNotification());
description_.id = kExampleDeviceID;
notification_listener_->DeviceChanged(
true,
kExampleDeviceName,
description_);
}
TEST_F(PrivetNotificationsListenerTest, HighUptimeTest) {
ExpectInfoOperation();
notification_listener_->DeviceChanged(
true,
kExampleDeviceName,
description_);
base::DictionaryValue value;
value.SetInteger("uptime", 3600);
info_operation_->delegate()->OnPrivetInfoDone(info_operation_,
200, &value);
description_.id = kExampleDeviceID;
notification_listener_->DeviceChanged(
true,
kExampleDeviceName,
description_);
}
TEST_F(PrivetNotificationsListenerTest, HTTPErrorTest) {
ExpectInfoOperation();
notification_listener_->DeviceChanged(
true,
kExampleDeviceName,
description_);
info_operation_->delegate()->OnPrivetInfoDone(info_operation_,
404, NULL);
}
TEST_F(PrivetNotificationsListenerTest, DictionaryErrorTest) {
ExpectInfoOperation();
notification_listener_->DeviceChanged(
true,
kExampleDeviceName,
description_);
base::DictionaryValue value;
value.SetString("error", "internal_error");
info_operation_->delegate()->OnPrivetInfoDone(info_operation_,
200, &value);
}
} // namespace
} // namespace local_discovery
|