YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
fakeDevice_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>
10
11#include <catch2/catch_amalgamated.hpp>
12#include <harness.h>
13
14using namespace yarp::dev;
15using namespace yarp::os;
16
17TEST_CASE("dev::fakeDevice_nwc_yarp", "[yarp::dev]")
18{
19 YARP_REQUIRE_PLUGIN("fakeDeviceUnwrapped", "device");
20 YARP_REQUIRE_PLUGIN("fakeDevice_nws_yarp", "device");
21 YARP_REQUIRE_PLUGIN("fakeDevice_nwc_yarp", "device");
22
23 Network::setLocalMode(true);
24
25 SECTION("Checking Fake_nwc device")
26 {
31
33 {
35 pnws_cfg.put("device", "fakeDevice_nws_yarp");
37
39 pdev_cfg.put("device", "fakeDeviceUnwrapped");
41
44 bool result_att = ww_nws->attach(&ddfake);
46
48 pnwc_cfg.put("device", "fakeDevice_nwc_yarp");
50 REQUIRE(ddnwc.view(ifake));
51 }
52
53 //Test the interface
54 ReturnValue ret = ifake->doSomething();
55 CHECK(ret);
56
57 //"Close all polydrivers and check"
58 {
59 CHECK(ddnwc.close());
61 CHECK(ddnws.close());
64 }
65 }
66
67 Network::setLocalMode(false);
68}
bool ret
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 fake interface for testing,debugging and development purposes.
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::fakeDevice_nwc_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.