1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
/**
* This is a test program for the zmq ctrl API of the odr-dabmod.
*
* Copyright (c) 2015 by Jörgen Scott (jorgen.scott@paneda.se)
*
* This file is part of CtrlTest.
*
* ODR-DabMod is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* ODR-DabMod is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ODR-DabMod. If not, see <http://www.gnu.org/licenses/>.
**/
#define BOOST_TEST_MODULE "C++ unit tests for ODR-DabMod ZMQ Remote Control"
#include <boost/test/unit_test.hpp>
#include "OdrModCtrl.hpp"
// Variables used in the test suite
struct TemplateVars
{
std::string error;
zmq::context_t context;
COdrModCtrl modCtrl;
// NOTE: Make sure odr-dabmod is started before running the test and
// that the zmq endpoint matches.
TemplateVars() : context(1), modCtrl(&context, "tcp://127.0.0.1:9400", 1000) {}
~TemplateVars() {}
};
// Note. ODR-DabMod does not validate parameters therefore there are no tests
// made for setting invalid parameters.
BOOST_FIXTURE_TEST_SUITE(test_template1, TemplateVars)
BOOST_AUTO_TEST_CASE (Ping)
{
BOOST_CHECK(modCtrl.Ping() == true);
}
BOOST_AUTO_TEST_CASE (DigitalGain)
{
BOOST_CHECK(modCtrl.SetDigitalGain(0.5, error) == true);
double value;
BOOST_CHECK(modCtrl.GetDigitalGain(value, error) == true);
BOOST_CHECK(value == 0.5);
}
BOOST_AUTO_TEST_CASE (TxGain)
{
BOOST_CHECK(modCtrl.SetTxGain(50, error) == true);
double value;
BOOST_CHECK(modCtrl.GetTxGain(value, error) == true);
BOOST_CHECK(value == 50);
}
BOOST_AUTO_TEST_CASE (TxFrequency)
{
BOOST_CHECK(modCtrl.SetTxFrequency(234208000, error) == true);
double value;
BOOST_CHECK(modCtrl.GetTxFrequency(value, error) == true);
BOOST_CHECK(value == 234208000);
}
BOOST_AUTO_TEST_CASE (Muting)
{
BOOST_CHECK(modCtrl.SetMuting(true, error) == true);
bool value;
BOOST_CHECK(modCtrl.GetMuting(value, error) == true);
BOOST_CHECK(value == true);
BOOST_CHECK(modCtrl.SetMuting(false, error) == true);
}
BOOST_AUTO_TEST_CASE (StaticDelay)
{
// reset first (by setting out of range value) or else test
// will fail on successive runs
BOOST_CHECK(modCtrl.SetStaticDelay(100000, error) == true);
BOOST_CHECK(modCtrl.SetStaticDelay(45000, error) == true);
uint32_t value;
BOOST_CHECK(modCtrl.GetStaticDelay(value, error) == true);
BOOST_CHECK(value == 45000);
}
BOOST_AUTO_TEST_SUITE_END()
|