YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
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::controlBoard_nws_ros2_test", "[yarp::dev]")
17{
18 YARP_REQUIRE_PLUGIN("controlBoard_nws_ros2", "device");
19 YARP_REQUIRE_PLUGIN("fakeMotionControl", "device");
20
21 Network::setLocalMode(true);
22
23 SECTION("Checking the nws alone")
24 {
26
28 {
30 pcfg.put("device", "controlBoard_nws_ros2");
31 pcfg.put("node_name", "controlboard_node");
32 pcfg.put("topic_name","/controlBoard_nws_ros2/robot_part");
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", "controlBoard_nws_ros2");
52 pcfg.put("node_name", "controlboard_node");
53 pcfg.put("topic_name","/controlBoard_nws_ros2/robot_part");
55 }
56
58 {
60 pcfg_fake.put("device", "fakeMotionControl");
62 }
63
64 //attach the nws to the fake device
65 {
66 ddnws.view(ww_nws);
67 bool result_att = ww_nws->attach(&ddfake);
69 }
70
71 //"Close all polydrivers and check"
72 {
73 CHECK(ddnws.close());
75 }
76 }
77
78 Network::setLocalMode(false);
79}
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
TEST_CASE("dev::controlBoard_nws_ros2_test", "[yarp::dev]")
For streams capable of holding different kinds of content, check what they actually have.
An interface to the operating system, including Port based communication.