-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Expand file tree
/
Copy pathclient_test.dart
More file actions
300 lines (263 loc) · 8 KB
/
client_test.dart
File metadata and controls
300 lines (263 loc) · 8 KB
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
// Copyright 2013 The Flutter Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'dart:io';
import 'package:multicast_dns/multicast_dns.dart';
import 'package:test/fake.dart';
import 'package:test/test.dart';
void main() {
test('Can inject datagram socket factory and configure mdns port', () async {
late int lastPort;
final datagramSocket = FakeRawDatagramSocket();
final client = MDnsClient(
rawDatagramSocketFactory:
(
dynamic host,
int port, {
bool reuseAddress = true,
bool reusePort = true,
int ttl = 1,
}) async {
lastPort = port;
return datagramSocket;
},
);
await client.start(
mDnsPort: 1234,
interfacesFactory: (InternetAddressType type) async =>
<NetworkInterface>[],
);
expect(lastPort, 1234);
});
test('Closes IPv4 sockets', () async {
final datagramSocket = FakeRawDatagramSocket();
final client = MDnsClient(
rawDatagramSocketFactory:
(
dynamic host,
int port, {
bool reuseAddress = true,
bool reusePort = true,
int ttl = 1,
}) async {
return datagramSocket;
},
);
await client.start(
mDnsPort: 1234,
interfacesFactory: (InternetAddressType type) async =>
<NetworkInterface>[],
);
expect(datagramSocket.closed, false);
client.stop();
expect(datagramSocket.closed, true);
});
test('Closes IPv6 sockets', () async {
final datagramSocket = FakeRawDatagramSocket();
datagramSocket.address = InternetAddress.anyIPv6;
final client = MDnsClient(
rawDatagramSocketFactory:
(
dynamic host,
int port, {
bool reuseAddress = true,
bool reusePort = true,
int ttl = 1,
}) async {
return datagramSocket;
},
);
await client.start(
mDnsPort: 1234,
interfacesFactory: (InternetAddressType type) async =>
<NetworkInterface>[],
);
expect(datagramSocket.closed, false);
client.stop();
expect(datagramSocket.closed, true);
});
test('start() is idempotent', () async {
final datagramSocket = FakeRawDatagramSocket();
datagramSocket.address = InternetAddress.anyIPv4;
final client = MDnsClient(
rawDatagramSocketFactory:
(
dynamic host,
int port, {
bool reuseAddress = true,
bool reusePort = true,
int ttl = 1,
}) async {
return datagramSocket;
},
);
await client.start(
interfacesFactory: (InternetAddressType type) async =>
<NetworkInterface>[],
);
await client.start();
await client.lookup(ResourceRecordQuery.serverPointer('_')).toList();
});
group('Bind a single socket to ANY IPv4 and more than one when IPv6', () {
final testCases = <Map<String, Object>>[
<String, Object>{
'name': 'IPv4',
'datagramSocketType': InternetAddress.anyIPv4,
'interfacePrefix': '192.168.2.',
},
<String, Object>{
'name': 'IPv6',
'datagramSocketType': InternetAddress.anyIPv6,
'interfacePrefix': '2001:0db8:85a3:0000:0000:8a2e:7335:030',
},
];
for (final testCase in testCases) {
test('Bind a single socket to ANY ${testCase["name"]}', () async {
final datagramSocket = FakeRawDatagramSocket();
datagramSocket.address =
testCase['datagramSocketType']! as InternetAddress;
final selectedInterfacesForSendingPackets = <dynamic>[];
final client = MDnsClient(
rawDatagramSocketFactory:
(
dynamic host,
int port, {
bool reuseAddress = true,
bool reusePort = true,
int ttl = 1,
}) async {
selectedInterfacesForSendingPackets.add(host);
return datagramSocket;
},
);
const numberOfFakeInterfaces = 10;
Future<Iterable<NetworkInterface>> fakeNetworkInterfacesFactory(
InternetAddressType type,
) async {
final fakeInterfaces = <NetworkInterface>[];
// Generate "fake" interfaces
for (var i = 0; i < numberOfFakeInterfaces; i++) {
fakeInterfaces.add(
FakeNetworkInterface('inetfake$i', <InternetAddress>[
InternetAddress("${testCase['interfacePrefix']! as String}$i"),
], 0),
);
}
// ignore: always_specify_types
return Future.value(fakeInterfaces);
}
final listenAddress =
testCase['datagramSocketType']! as InternetAddress;
await client.start(
listenAddress: listenAddress,
mDnsPort: 1234,
interfacesFactory: fakeNetworkInterfacesFactory,
);
client.stop();
if (testCase['datagramSocketType'] == InternetAddress.anyIPv4) {
expect(selectedInterfacesForSendingPackets.length, 1);
} else {
// + 1 because of unspecified address (::)
expect(
selectedInterfacesForSendingPackets.length,
numberOfFakeInterfaces + 1,
);
}
expect(selectedInterfacesForSendingPackets[0], listenAddress.address);
});
}
});
test('Calls onError callback in case of socket error', () async {
final datagramSocket = FakeRawDatagramSocketThatSendsError();
final client = MDnsClient(
rawDatagramSocketFactory:
(
dynamic host,
int port, {
bool reuseAddress = true,
bool reusePort = true,
int ttl = 1,
}) async {
return datagramSocket;
},
);
final onErrorCalledCompleter = Completer<void>();
await client.start(
mDnsPort: 1234,
interfacesFactory: (InternetAddressType type) async =>
<NetworkInterface>[],
onError: (Object e) {
expect(e, 'Error');
onErrorCalledCompleter.complete();
},
);
await onErrorCalledCompleter.future.timeout(const Duration(seconds: 5));
});
}
class FakeRawDatagramSocket extends Fake implements RawDatagramSocket {
@override
InternetAddress address = InternetAddress.anyIPv4;
@override
StreamSubscription<RawSocketEvent> listen(
void Function(RawSocketEvent event)? onData, {
Function? onError,
void Function()? onDone,
bool? cancelOnError,
}) {
return const Stream<RawSocketEvent>.empty().listen(
onData,
onError: onError,
cancelOnError: cancelOnError,
onDone: onDone,
);
}
bool closed = false;
@override
void close() {
closed = true;
}
@override
int send(List<int> buffer, InternetAddress address, int port) {
return buffer.length;
}
@override
void joinMulticast(InternetAddress group, [NetworkInterface? interface]) {
// nothing to do here
}
@override
void setRawOption(RawSocketOption option) {
// nothing to do here
}
}
class FakeRawDatagramSocketThatSendsError extends Fake
implements RawDatagramSocket {
@override
InternetAddress address = InternetAddress.anyIPv4;
@override
StreamSubscription<RawSocketEvent> listen(
void Function(RawSocketEvent event)? onData, {
Function? onError,
void Function()? onDone,
bool? cancelOnError,
}) {
return Stream<RawSocketEvent>.error('Error').listen(
onData,
onError: onError,
cancelOnError: cancelOnError,
onDone: onDone,
);
}
}
class FakeNetworkInterface implements NetworkInterface {
FakeNetworkInterface(this._name, this._addresses, this._index);
final String _name;
final List<InternetAddress> _addresses;
final int _index;
@override
List<InternetAddress> get addresses => _addresses;
@override
String get name => _name;
@override
int get index => _index;
}