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
|
#!/usr/bin/env python
#
# Copyright 2021 Malte Lenhart
#
# This file is part of GNU Radio
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
#
from gnuradio import gr, gr_unittest
from gnuradio import blocks
import pmt
import time
# this test tests message strobe and message debug blocks against each other
# similar tests contained in message_strobe class
# this tests only the store port and the message retrival methods of the debug block
# print() and print_pdu() were omitted as they print to stdout
class qa_message_debug(gr_unittest.TestCase):
def setUp(self):
self.tb = gr.top_block()
def tearDown(self):
self.tb = None
def test_001_t(self):
test_str = "test_msg"
new_msg = "new_msg"
message_period_ms = 100
msg_strobe = blocks.message_strobe(
pmt.intern(test_str), message_period_ms)
msg_debug = blocks.message_debug()
self.tb.msg_connect(msg_strobe, "strobe", msg_debug, "store")
self.tb.start()
self.assertAlmostEqual(msg_debug.num_messages(),
0, delta=2) # 1st call, expect 0
time.sleep(1) # floor(1000/100) = 10
self.assertAlmostEqual(msg_debug.num_messages(),
10, delta=3) # 2nd call == 1
time.sleep(1) # floor(2000/100) = 15
self.assertAlmostEqual(msg_debug.num_messages(),
20, delta=3) # 3th call == 3
# change test message
msg_strobe.to_basic_block()._post(pmt.intern("set_msg"), pmt.intern(new_msg))
time.sleep(1)
self.tb.stop()
self.tb.wait()
# check data
# first received message matchs initial test message
self.assertAlmostEqual(pmt.to_python(msg_debug.get_message(
0)), test_str, "mismatch initial test string")
# last message matches changed test message
no_msgs = msg_debug.num_messages()
self.assertAlmostEqual(pmt.to_python(msg_debug.get_message(
no_msgs - 1)), new_msg, "failed to update string")
if __name__ == '__main__':
gr_unittest.run(qa_message_debug)
|