YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
Rangefinder2D_controlBoard_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_controlBoard_nws_ros2_test", "[yarp::dev]")
17{
18 YARP_REQUIRE_PLUGIN("rangefinder2D_controlBoard_nws_ros2", "device");
19 YARP_REQUIRE_PLUGIN("fakeLaserWithMotor", "device");
20
21 Network::setLocalMode(true);
22
23 SECTION("Checking the nws alone")
24 {
26
28 {
30 pcfg.put("device", "rangefinder2D_controlBoard_nws_ros2");
31 pcfg.put("node_name", "Rangefinder2D_controlBoard_node");
32 pcfg.put("topic_name","/Rangefinder2D_controlBoard");
34 }
35
36 //"Close all polydrivers and check"
37 {
38 CHECK(ddnws.close());
39 }
40 }
41
42 SECTION("Checking the nws attached to device")
43 {
47
49 {
51 pcfg.put("device", "rangefinder2D_controlBoard_nws_ros2");
52 pcfg.put("node_name", "Rangefinder2D_controlBoard_node");
53 pcfg.put("topic_name","/Rangefinder2D_controlBoard_node");
55 }
56
58 {
60 pcfg_fake.put("device", "fakeLaserWithMotor");
61 pcfg_fake.put("test", "use_pattern");
63 }
64
65 //attach the nws to the fake device
66 {
67 ddnws.view(ww_nws);
68 bool result_att = ww_nws->attach(&ddfake);
70 }
71
72 //"Close all polydrivers and check"
73 {
74 CHECK(ddnws.close());
76 }
77 }
78
79 Network::setLocalMode(false);
80}
TEST_CASE("dev::rangefinder2D_controlBoard_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.