YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
RgbdToPointCloudSensor_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::rgbdToPointCloudSensor_nws_ros2_test", "[yarp::dev]")
17{
18 YARP_REQUIRE_PLUGIN("rgbdToPointCloudSensor_nws_ros2", "device");
19 YARP_REQUIRE_PLUGIN("fakeDepthCamera", "device");
20
21 Network::setLocalMode(true);
22
23 SECTION("Checking the nws alone")
24 {
26
28 {
30 pcfg.put("device", "rgbdToPointCloudSensor_nws_ros2");
31 pcfg.put("node_name", "pcl_node");
32 pcfg.put("topic_name","/pcl_topic");
33 pcfg.put("frame_id","cameraframe");
35 }
36
37 //"Close all polydrivers and check"
38 {
39 CHECK(ddnws.close());
40 }
41 }
42
43 SECTION("Checking the nws attached to device")
44 {
48
50 {
52 pcfg.put("device", "rgbdToPointCloudSensor_nws_ros2");
53 pcfg.put("node_name", "pcl_node");
54 pcfg.put("topic_name","/pcl_topic");
55 pcfg.put("frame_id","cameraframe");
57 }
58
60 {
62 pcfg_fake.put("device", "fakeDepthCamera");
64 }
65
66 //attach the nws to the fake device
67 {
68 ddnws.view(ww_nws);
69 bool result_att = ww_nws->attach(&ddfake);
71 }
72
73 //"Close all polydrivers and check"
74 {
75 CHECK(ddnws.close());
77 }
78 }
79
80 Network::setLocalMode(false);
81}
TEST_CASE("dev::rgbdToPointCloudSensor_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.