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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
//
// Copyright 2014 Ettus Research LLC
// Copyright 2018 Ettus Research, a National Instruments Company
//
// SPDX-License-Identifier: GPL-3.0-or-later
//
#include "graph.hpp"
#include <uhd/rfnoc/rate_node_ctrl.hpp>
#include <boost/test/unit_test.hpp>
#include <iostream>
using namespace uhd::rfnoc;
// test class derived, knows about rates
class rate_aware_node : public test_node, public rate_node_ctrl
{
public:
typedef boost::shared_ptr<rate_aware_node> sptr;
rate_aware_node(const std::string& test_id) : test_node(test_id){};
}; /* class rate_aware_node */
// test class derived, sets rates
class rate_setting_node : public test_node, public rate_node_ctrl
{
public:
typedef boost::shared_ptr<rate_setting_node> sptr;
rate_setting_node(const std::string& test_id, double samp_rate)
: test_node(test_id), _samp_rate(samp_rate){};
double get_input_samp_rate(size_t)
{
return _samp_rate;
};
double get_output_samp_rate(size_t)
{
return _samp_rate;
};
private:
double _samp_rate;
}; /* class rate_setting_node */
#define MAKE_RATE_NODE(name) rate_aware_node::sptr name(new rate_aware_node(#name));
#define MAKE_RATE_SETTING_NODE(name, rate) \
rate_setting_node::sptr name(new rate_setting_node(#name, rate));
BOOST_AUTO_TEST_CASE(test_simplest_downstream_search)
{
const double test_rate = 0.25;
MAKE_RATE_NODE(node_A);
MAKE_RATE_SETTING_NODE(node_B, test_rate);
// Simplest possible scenario: Connect B downstream of A and let
// it find B
connect_nodes(node_A, node_B);
double result_rate = node_A->get_input_samp_rate();
BOOST_CHECK_EQUAL(result_rate, test_rate);
}
BOOST_AUTO_TEST_CASE(test_skip_downstream_search)
{
const double test_rate = 0.25;
MAKE_RATE_NODE(node_A);
MAKE_NODE(node_B);
MAKE_RATE_SETTING_NODE(node_C, test_rate);
// Slightly more elaborate: Add another block in between that has no
// clue about rates
connect_nodes(node_A, node_B);
connect_nodes(node_B, node_C);
double result_rate = node_A->get_input_samp_rate();
BOOST_CHECK_EQUAL(result_rate, test_rate);
}
BOOST_AUTO_TEST_CASE(test_tree_downstream_search)
{
const double test_rate = 0.25;
MAKE_RATE_NODE(node_A);
MAKE_NODE(node_B0);
MAKE_RATE_SETTING_NODE(node_B1, test_rate);
MAKE_RATE_SETTING_NODE(node_C0, test_rate);
MAKE_RATE_SETTING_NODE(node_C1, rate_node_ctrl::RATE_UNDEFINED);
// Tree: Downstream of our first node are 3 rate setting blocks.
// Two set the same rate, the third does not care.
connect_nodes(node_A, node_B0);
connect_nodes(node_A, node_B1);
connect_nodes(node_B0, node_C0);
connect_nodes(node_B0, node_C1);
double result_rate = node_A->get_input_samp_rate();
BOOST_CHECK_EQUAL(result_rate, test_rate);
}
BOOST_AUTO_TEST_CASE(test_tree_downstream_search_throw)
{
const double test_rate = 0.25;
MAKE_RATE_NODE(node_A);
MAKE_NODE(node_B0);
MAKE_RATE_SETTING_NODE(node_B1, test_rate);
MAKE_RATE_SETTING_NODE(node_C0, test_rate);
MAKE_RATE_SETTING_NODE(node_C1, test_rate * 2);
// Tree: Downstream of our first node are 3 rate setting blocks.
// Two set the same rate, the third has a different rate.
// This will cause a throw.
connect_nodes(node_A, node_B0);
connect_nodes(node_A, node_B1);
connect_nodes(node_B0, node_C0);
connect_nodes(node_B0, node_C1);
BOOST_CHECK_THROW(node_A->get_input_samp_rate(), uhd::runtime_error);
}
BOOST_AUTO_TEST_CASE(test_skip_upstream_search)
{
const double test_rate = 0.25;
MAKE_RATE_SETTING_NODE(node_A, test_rate);
MAKE_NODE(node_B);
MAKE_RATE_NODE(node_C);
// Slightly more elaborate: Add another block in between that has no
// clue about rates
connect_nodes(node_A, node_B);
connect_nodes(node_B, node_C);
double result_rate = node_C->get_output_samp_rate();
BOOST_CHECK_EQUAL(result_rate, test_rate);
}
|