YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
mobileBaseVelocityControl_nws_yarp_test.cpp
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2023-2023 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-License-Identifier: BSD-3-Clause
4 */
5
7#include <yarp/os/Network.h>
10
11#include <catch2/catch_amalgamated.hpp>
12#include <harness.h>
13
14using namespace yarp::dev;
15using namespace yarp::os;
16
17TEST_CASE("dev::mobileBaseVelocityControl_nws_yarp", "[yarp::dev]")
18{
19 YARP_REQUIRE_PLUGIN("fakeNavigation", "device");
20 YARP_REQUIRE_PLUGIN("mobileBaseVelocityControl_nws_yarp", "device");
21
22 Network::setLocalMode(true);
23
24 SECTION("Checking mobileBaseVelocityControl_nws_yarp device alone")
25 {
26 PolyDriver dd;
27
29 {
31 p_cfg.put("device", "mobileBaseVelocityControl_nws_yarp");
32 p_cfg.put("local", "/mobileBaseVelocityControl_nws_yarp");
33 REQUIRE(dd.open(p_cfg));
34 }
35
37
38 //"Close all polydrivers and check"
39 {
40 CHECK(dd.close());
41 }
42 }
43
44 SECTION("Checking mobileBaseVelocityControl_nws_yarp device attached to fakeNavigation")
45 {
48
50 {
52 pnws_cfg.put("device", "mobileBaseVelocityControl_nws_yarp");
53 pnws_cfg.put("local", "/mobileBaseVelocityControl_nws_yarp");
55
57 pdev_cfg.put("device", "fakeNavigation");
59
62 bool result_att = ww_nws->attach(&ddfake);
64 }
65
67
68 //"Close all polydrivers and check"
69 {
70 CHECK(ddnws.close());
72 }
73 }
74
75 Network::setLocalMode(false);
76}
A container for a device driver.
Definition PolyDriver.h:23
bool close() override
Close the DeviceDriver.
bool open(const std::string &txt)
Construct and configure a device by its common name.
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::mobileBaseVelocityControl_nws_yarp", "[yarp::dev]")
For streams capable of holding different kinds of content, check what they actually have.
void delay(double seconds)
Wait for a certain number of seconds.
Definition Time.cpp:111
An interface to the operating system, including Port based communication.