YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
Rangefinder2D_nws_ros2_test.cpp
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2023 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-License-Identifier: BSD-3-Clause
4 */
5
6#include <yarp/os/Network.h>
9
10#include <catch2/catch_amalgamated.hpp>
11#include <harness.h>
12
13using namespace yarp::dev;
14using namespace yarp::os;
15
16TEST_CASE("dev::Rangefinder2D_nws_ros2_test", "[yarp::dev]")
17{
18 YARP_REQUIRE_PLUGIN("rangefinder2D_nws_ros2", "device");
19 YARP_REQUIRE_PLUGIN("fakeLaser", "device");
20
21 Network::setLocalMode(true);
22
23 SECTION("Checking the nws alone")
24 {
26
28 {
30 nws_cfg.put("device", "rangefinder2D_nws_ros2");
31 nws_cfg.put("node_name", "lidar_node");
32 nws_cfg.put("topic_name","/lidar");
34 }
35
36 //Close all polydrivers and check
38 }
39
40 SECTION("Checking the nws attached to device")
41 {
45
47 {
49 pcfg.put("device", "rangefinder2D_nws_ros2");
50 pcfg.put("node_name", "lidar_node");
51 pcfg.put("topic_name","/lidar");
53 }
54
56 {
58 pcfg_fake.put("device", "fakeLaser");
59 pcfg_fake.put("test", "use_pattern");
61 }
62
63 //attach the nws to the fake device
64 {
65 ddnws.view(ww_nws);
66 bool result_att = ww_nws->attach(&ddfake);
68 }
69
70 //"Close all polydrivers and check"
71 {
72 CHECK(ddnws.close());
74 }
75 }
76
77 Network::setLocalMode(false);
78}
TEST_CASE("dev::Rangefinder2D_nws_ros2_test", "[yarp::dev]")
A container for a device driver.
Definition PolyDriver.h:23
Helper interface for an object that can wrap/or "attach" to a single other device.
A mini-server for performing network communication in the background.
void close() override
Stop port activity.
bool open(const std::string &name) override
Start port operation, with a specific name, with automatically-chosen network parameters.
A class for storing options and configuration information.
Definition Property.h:33
For streams capable of holding different kinds of content, check what they actually have.
An interface to the operating system, including Port based communication.