YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
fakeMicrophone_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
6#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::fakeMicrophone", "[yarp::dev]")
18{
19 YARP_REQUIRE_PLUGIN("fakeMicrophone", "device");
20
21 Network::setLocalMode(true);
22
23 SECTION("Checking fakeMicrophone device")
24 {
25 PolyDriver dd;
27
29 {
31 p_cfg.put("device", "fakeMicrophone");
32 REQUIRE(dd.open(p_cfg));
33 }
34
35 dd.view(igrb);
36 CHECK(igrb->startRecording());
37
39
40 CHECK(igrb->stopRecording());
41
42 CHECK(igrb->resetRecordingAudioBuffer());
43
44 //"Close all polydrivers and check"
45 {
46 CHECK(dd.close());
47 }
48 }
49
50 Network::setLocalMode(false);
51}
bool view(T *&x)
Get an interface to the device driver.
Read a YARP-format sound block from a device.
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.
A mini-server for performing network communication in the background.
A class for storing options and configuration information.
Definition Property.h:33
TEST_CASE("dev::fakeMicrophone", "[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.