YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
localization2D_nwc_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_nwc", "[yarp::dev]")
19{
20 YARP_REQUIRE_PLUGIN("fakeLocalizer", "device");
21 YARP_REQUIRE_PLUGIN("localization2D_nws_yarp", "device");
22 YARP_REQUIRE_PLUGIN("localization2D_nwc_yarp", "device");
23
24 Network::setLocalMode(true);
25
26 SECTION("Checking localization2D_nwc device")
27 {
32
34 {
36 pnws_cfg.put("device", "localization2D_nws_yarp");
38
40 pdev_cfg.put("device", "fakeLocalizer");
42
45 bool result_att = ww_nws->attach(&ddfake);
47
49 pnwc_cfg.put("device", "localization2D_nwc_yarp");
50 pnwc_cfg.put("local", "/localization2D_nwc_yarp");
51 pnwc_cfg.put("remote", "/localization2D_nws_yarp");
53 REQUIRE(ddnwc.view(iloc));
54 }
55
57
58 //"Close all polydrivers and check"
59 {
60 CHECK(ddnwc.close());
62 CHECK(ddnws.close());
65 }
66 }
67
68 Network::setLocalMode(false);
69}
ILocalization2D interface.
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::localization2D_nwc", "[yarp::dev]")
void exec_iLocalization2D_test_1(yarp::dev::Nav2D::ILocalization2D *iloc)
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.