File: ServerAttributesTests.cpp

package info (click to toggle)
fastdds 3.1.2%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 58,132 kB
  • sloc: cpp: 779,516; xml: 15,119; python: 4,356; sh: 190; makefile: 93; ansic: 12
file content (471 lines) | stat: -rw-r--r-- 14,745 bytes parent folder | download
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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
// Copyright 2024 Proyectos y Sistemas de Mantenimiento SL (eProsima).
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#include <gtest/gtest.h>

#include <rtps/attributes/ServerAttributes.hpp>

// Port used if the ros environment variable doesn't specify one
constexpr uint16_t DEFAULT_ROS2_SERVER_PORT = 11811;
// Port used by default for tcp transport
constexpr uint16_t DEFAULT_TCP_SERVER_PORT = 42100;

//! Tests the server-client setup using environment variable works fine
TEST(ServerAttributesTests, ServerClientEnvironmentSetUp)
{
    using namespace std;
    using namespace eprosima::fastdds::rtps;

    LocatorList_t output, standard;
    Locator_t loc, loc6(LOCATOR_KIND_UDPv6, 0);

    // We are going to use several test string and check they are properly parsed and turn into RemoteServerList_t
    // 1. Single server address without specific port provided
    string text = "192.168.36.34";

    output.clear();
    standard.clear();
    IPLocator::setIPv4(loc, text);
    IPLocator::setPhysicalPort(loc, DEFAULT_ROS2_SERVER_PORT);
    standard.push_back(loc);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // 2. Single server IPv6 address without specific port provided
    text = "2a02:26f0:dd:499::356e";

    output.clear();
    standard.clear();
    IPLocator::setIPv6(loc6, text);
    IPLocator::setPhysicalPort(loc6, DEFAULT_ROS2_SERVER_PORT);
    standard.push_back(loc6);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // 3. Single server address specifying a custom listening port
    text = "192.168.36.34:14520";

    output.clear();
    standard.clear();
    IPLocator::setIPv4(loc, text);
    IPLocator::setPhysicalPort(loc, 14520);
    standard.push_back(loc);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // 4. Single server IPv6 address specifying a custom listening port
    text = "[2001:470:142:5::116]:14520";

    output.clear();
    standard.clear();
    IPLocator::setIPv6(loc6, "2001:470:142:5::116");
    IPLocator::setPhysicalPort(loc6, 14520);
    standard.push_back(loc6);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // 5. Check any locator is turned into localhost
    text = "0.0.0.0:14520;[::]:14520";

    output.clear();
    standard.clear();
    IPLocator::setIPv4(loc, "127.0.0.1");
    IPLocator::setPhysicalPort(loc, 14520);
    standard.push_back(loc);

    IPLocator::setIPv6(loc6, "::1");
    IPLocator::setPhysicalPort(loc6, 14520);
    standard.push_back(loc6);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // 6. Check empty string scenario is handled
    text = "";
    output.clear();

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_TRUE(output.empty());

    // 7. Check at least one server be present scenario is handled
    text = ";;;;";
    output.clear();

    ASSERT_FALSE(load_environment_server_info(text, output));

    // 8. Check several server scenario
    text = "192.168.36.34:14520;172.29.55.77:8783;172.30.80.1:31090";

    output.clear();
    standard.clear();

    IPLocator::setIPv4(loc, string("192.168.36.34"));
    IPLocator::setPhysicalPort(loc, 14520);
    standard.push_back(loc);

    IPLocator::setIPv4(loc, string("172.29.55.77"));
    IPLocator::setPhysicalPort(loc, 8783);
    standard.push_back(loc);

    IPLocator::setIPv4(loc, string("172.30.80.1"));
    IPLocator::setPhysicalPort(loc, 31090);
    standard.push_back(loc);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // 9. Check several server scenario with IPv6 addresses too
    text = "192.168.36.34:14520;[2a02:ec80:600:ed1a::3]:8783;172.30.80.1:31090";

    output.clear();
    standard.clear();

    IPLocator::setIPv4(loc, "192.168.36.34");
    IPLocator::setPhysicalPort(loc, 14520);
    standard.push_back(loc);

    IPLocator::setIPv6(loc6, "2a02:ec80:600:ed1a::3");
    IPLocator::setPhysicalPort(loc6, 8783);
    standard.push_back(loc6);

    IPLocator::setIPv4(loc, string("172.30.80.1"));
    IPLocator::setPhysicalPort(loc, 31090);
    standard.push_back(loc);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // 10. Check multicast addresses are identified as such
    text = "239.255.0.1;ff1e::ffff:efff:1";

    output.clear();
    standard.clear();

    IPLocator::setIPv4(loc, "239.255.0.1");
    IPLocator::setPhysicalPort(loc, DEFAULT_ROS2_SERVER_PORT);
    standard.push_back(loc);

    IPLocator::setIPv6(loc6, "ff1e::ffff:efff:1");
    IPLocator::setPhysicalPort(loc6, DEFAULT_ROS2_SERVER_PORT);
    standard.push_back(loc6);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // 11. Check ignore some servers scenario
    text = ";192.168.36.34:14520;;172.29.55.77:8783;172.30.80.1:31090;";

    output.clear();
    standard.clear();

    IPLocator::setIPv4(loc, string("192.168.36.34"));
    IPLocator::setPhysicalPort(loc, 14520);
    standard.push_back(loc);

    IPLocator::setIPv4(loc, string("172.29.55.77"));
    IPLocator::setPhysicalPort(loc, 8783);
    standard.push_back(loc);

    IPLocator::setIPv4(loc, string("172.30.80.1"));
    IPLocator::setPhysicalPort(loc, 31090);
    standard.push_back(loc);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // 12. Check addresses as dns name (test domain urls are checked on a specific test)
    text = "localhost.test:12345";

    output.clear();
    standard.clear();

    IPLocator::setIPv4(loc, "127.0.0.1");
    IPLocator::setPhysicalPort(loc, 12345);
    standard.push_back(loc);
    IPLocator::setIPv6(loc6, "::1");
    IPLocator::setPhysicalPort(loc6, 12345);
    standard.push_back(loc6);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // 13. Check mixed scenario with addresses and dns
    text = "192.168.36.34:14520;localhost.test:12345;172.30.80.1:31090;";

    output.clear();
    standard.clear();

    IPLocator::setIPv4(loc, string("192.168.36.34"));
    IPLocator::setPhysicalPort(loc, 14520);
    standard.push_back(loc);

    IPLocator::setIPv4(loc, string("127.0.0.1"));
    IPLocator::setPhysicalPort(loc, 12345);
    standard.push_back(loc);
    IPLocator::setIPv6(loc6, string("::1"));
    IPLocator::setPhysicalPort(loc6, 12345);
    standard.push_back(loc6);

    IPLocator::setIPv4(loc, string("172.30.80.1"));
    IPLocator::setPhysicalPort(loc, 31090);
    standard.push_back(loc);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // TCP transport

    Locator_t loc_tcp(LOCATOR_KIND_TCPv4, 0);
    Locator_t loc_tcp_6(LOCATOR_KIND_TCPv6, 0);

    // 14. Single TCPv4 address without specifying a custom listening port

    text = "TCPv4:[192.168.36.34]";

    output.clear();
    standard.clear();
    IPLocator::setIPv4(loc_tcp, "192.168.36.34");
    IPLocator::setPhysicalPort(loc_tcp, DEFAULT_TCP_SERVER_PORT);
    IPLocator::setLogicalPort(loc_tcp, DEFAULT_TCP_SERVER_PORT);
    standard.push_back(loc_tcp);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // 15. Single TCPv6 address without specifying a custom listening port

    text = "TCPv6:[2a02:26f0:dd:499::356e]";

    output.clear();
    standard.clear();
    IPLocator::setIPv6(loc_tcp_6, "2a02:26f0:dd:499::356e");
    IPLocator::setPhysicalPort(loc_tcp_6, DEFAULT_TCP_SERVER_PORT);
    IPLocator::setLogicalPort(loc_tcp_6, DEFAULT_TCP_SERVER_PORT);
    standard.push_back(loc_tcp_6);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // 16. Single TCPv4 address specifying a custom listening port

    text = "TCPv4:[192.168.36.34]:14520";

    output.clear();
    standard.clear();
    IPLocator::setIPv4(loc_tcp, "192.168.36.34");
    IPLocator::setPhysicalPort(loc_tcp, 14520);
    IPLocator::setLogicalPort(loc_tcp, 14520);
    standard.push_back(loc_tcp);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // 17. Single TCPv6 address specifying a custom listening port

    text = "TCPv6:[2a02:26f0:dd:499::356e]:14520";

    output.clear();
    standard.clear();
    IPLocator::setIPv6(loc_tcp_6, "2a02:26f0:dd:499::356e");
    IPLocator::setPhysicalPort(loc_tcp_6, 14520);
    IPLocator::setLogicalPort(loc_tcp_6, 14520);
    standard.push_back(loc_tcp_6);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);
}

//! Tests the server-client setup using environment variable works fine using DNS
TEST(ServerAttributesTests, ServerClientEnvironmentSetUpDNS)
{
    using namespace std;
    using namespace eprosima::fastdds::rtps;

    LocatorList_t output, standard;
    Locator_t loc, loc6(LOCATOR_KIND_UDPv6, 0);

    Locator_t loc_tcp(LOCATOR_KIND_TCPv4, 0);
    Locator_t loc_tcp_6(LOCATOR_KIND_TCPv6, 0);

    // 1. single server DNS address resolution without specific port provided
    std::string text = "www.acme.com.test";

    output.clear();
    standard.clear();
    IPLocator::setIPv6(loc6, "2a00:1450:400e:803::2004");
    IPLocator::setPhysicalPort(loc6, DEFAULT_ROS2_SERVER_PORT);
    standard.push_back(loc6);
    IPLocator::setIPv4(loc, "216.58.215.164");
    IPLocator::setPhysicalPort(loc, DEFAULT_ROS2_SERVER_PORT);
    standard.push_back(loc);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // 2. single server DNS address specifying a custom listening port
    text = "www.acme.com.test:14520";

    output.clear();
    standard.clear();
    IPLocator::setIPv6(loc6, "2a00:1450:400e:803::2004");
    IPLocator::setPhysicalPort(loc6, 14520);
    standard.push_back(loc6);
    IPLocator::setIPv4(loc, "216.58.215.164");
    IPLocator::setPhysicalPort(loc, 14520);
    standard.push_back(loc);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // 3. single server DNS address specifying a custom locator type
    // UDPv4
    text = "UDPv4:[www.acme.com.test]";

    output.clear();
    standard.clear();
    IPLocator::setIPv4(loc, "216.58.215.164");
    IPLocator::setPhysicalPort(loc, DEFAULT_ROS2_SERVER_PORT);
    standard.push_back(loc);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // UDPv6
    text = "UDPv6:[www.acme.com.test]";

    output.clear();
    standard.clear();
    IPLocator::setIPv6(loc6, "2a00:1450:400e:803::2004");
    IPLocator::setPhysicalPort(loc6, DEFAULT_ROS2_SERVER_PORT);
    standard.push_back(loc6);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // TCPv4
    text = "TCPv4:[www.acme.com.test]";

    output.clear();
    standard.clear();
    IPLocator::setIPv4(loc_tcp, "216.58.215.164");
    IPLocator::setPhysicalPort(loc_tcp, DEFAULT_TCP_SERVER_PORT);
    IPLocator::setLogicalPort(loc_tcp, DEFAULT_TCP_SERVER_PORT);
    standard.push_back(loc_tcp);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // TCPv6
    text = "TCPv6:[www.acme.com.test]";

    output.clear();
    standard.clear();
    IPLocator::setIPv6(loc_tcp_6, "2a00:1450:400e:803::2004");
    IPLocator::setPhysicalPort(loc_tcp_6, DEFAULT_TCP_SERVER_PORT);
    IPLocator::setLogicalPort(loc_tcp_6, DEFAULT_TCP_SERVER_PORT);
    standard.push_back(loc_tcp_6);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // 4. single server DNS address specifying a custom locator type and listening port
    // UDPv4
    text = "UDPv4:[www.acme.com.test]:14520";

    output.clear();
    standard.clear();
    IPLocator::setIPv4(loc, "216.58.215.164");
    IPLocator::setPhysicalPort(loc, 14520);
    standard.push_back(loc);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // UDPv6
    text = "UDPv6:[www.acme.com.test]:14520";

    output.clear();
    standard.clear();
    IPLocator::setIPv6(loc6, "2a00:1450:400e:803::2004");
    IPLocator::setPhysicalPort(loc6, 14520);
    standard.push_back(loc6);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // TCPv4
    text = "TCPv4:[www.acme.com.test]:14520";

    output.clear();
    standard.clear();
    IPLocator::setIPv4(loc_tcp, "216.58.215.164");
    IPLocator::setPhysicalPort(loc_tcp, 14520);
    IPLocator::setLogicalPort(loc_tcp, 14520);
    standard.push_back(loc_tcp);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // TCPv6
    text = "TCPv6:[www.acme.com.test]:14520";

    output.clear();
    standard.clear();
    IPLocator::setIPv6(loc_tcp_6, "2a00:1450:400e:803::2004");
    IPLocator::setPhysicalPort(loc_tcp_6, 14520);
    IPLocator::setLogicalPort(loc_tcp_6, 14520);
    standard.push_back(loc_tcp_6);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);

    // SHM Locator kind should fail
    text = "SHM:[www.acme.com.test]";

    output.clear();
    ASSERT_FALSE(load_environment_server_info(text, output));

    // 5. Check mixed scenario with addresses and dns
    text = "192.168.36.34:14520;UDPv6:[www.acme.com.test]:14520;172.30.80.1:31090;";

    output.clear();
    standard.clear();

    IPLocator::setIPv4(loc, string("192.168.36.34"));
    IPLocator::setPhysicalPort(loc, 14520);
    standard.push_back(loc);

    IPLocator::setIPv6(loc6, "2a00:1450:400e:803::2004");
    IPLocator::setPhysicalPort(loc6, 14520);
    standard.push_back(loc6);

    IPLocator::setIPv4(loc, string("172.30.80.1"));
    IPLocator::setPhysicalPort(loc, 31090);
    standard.push_back(loc);

    ASSERT_TRUE(load_environment_server_info(text, output));
    ASSERT_EQ(output, standard);
}

int main(
        int argc,
        char** argv)
{
    testing::InitGoogleTest(&argc, argv);
    return RUN_ALL_TESTS();
}