YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
localization2D_nws_yarp_test.cpp
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-License-Identifier: BSD-3-Clause
4 */
5
7#include <yarp/os/Network.h>
11
12#include <catch2/catch_amalgamated.hpp>
13#include <harness.h>
14
15using namespace yarp::dev;
16using namespace yarp::os;
17
18TEST_CASE("dev::localization2D_nws_yarp", "[yarp::dev]")
19{
20 YARP_REQUIRE_PLUGIN("fakeLocalizer", "device");
21 YARP_REQUIRE_PLUGIN("localization2D_nws_yarp", "device");
22
23 Network::setLocalMode(true);
24
25 SECTION("Checking localization2D_nws_yarp device")
26 {
27 PolyDriver dd;
28
30 {
32 p_cfg.put("device", "localization2D_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 localization2D_nws_yarp device")
45 {
48
50 {
52 pnws_cfg.put("device", "localization2D_nws_yarp");
54
56 pdev_cfg.put("device", "fakeLocalizer");
58
61 bool result_att = ww_nws->attach(&ddfake);
63 }
64
66
67 //"Close all polydrivers and check"
68 {
69 CHECK(ddnws.close());
71 }
72 }
73
74 Network::setLocalMode(false);
75}
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::localization2D_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.