diff options
author | Camilo Solano <solano@ti.rwth-aachen.de> | 2014-05-19 15:14:18 +0200 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2014-05-27 15:11:25 -0700 |
commit | ad799cfe7f8361b5eb415e296d0fde2ab77d6494 (patch) | |
tree | b66d1f6ad94e229374487f2daa9bfc2f73aeb649 /gr-zeromq | |
parent | 6cda1db8e69db8992d3698cb43b13f2335b0c10d (diff) |
zeromq: Add qa code for zeromq_pubsub
Diffstat (limited to 'gr-zeromq')
-rwxr-xr-x | gr-zeromq/python/zeromq/qa_zeromq_pubsub.py | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/gr-zeromq/python/zeromq/qa_zeromq_pubsub.py b/gr-zeromq/python/zeromq/qa_zeromq_pubsub.py new file mode 100755 index 0000000000..d49a9a3b4a --- /dev/null +++ b/gr-zeromq/python/zeromq/qa_zeromq_pubsub.py @@ -0,0 +1,52 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# +# Copyright 2014 Free Software Foundation, Inc. +# +# This file is part of GNU Radio +# +# GNU Radio 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, or (at your option) +# any later version. +# +# GNU Radio 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 GNU Radio; see the file COPYING. If not, write to +# the Free Software Foundation, Inc., 51 Franklin Street, +# Boston, MA 02110-1301, USA. +# + +from gnuradio import gr, gr_unittest +from gnuradio import blocks, zeromq +import time + +class qa_zeromq_pubsub (gr_unittest.TestCase): + + def setUp (self): + self.tb = gr.top_block () + + def tearDown (self): + self.tb = None + + def test_001 (self): + vlen = 10 + src_data = range(vlen)*100 + src = blocks.vector_source_f(src_data, False, vlen) + zeromq_pub_sink = zeromq.pub_sink(gr.sizeof_float, vlen, "tcp://127.0.0.1:5555", 0) + zeromq_sub_source = zeromq.sub_source(gr.sizeof_float, vlen, "tcp://127.0.0.1:5555", 0) + sink = blocks.vector_sink_f(vlen) + self.tb.connect(src, zeromq_pub_sink) + self.tb.connect(zeromq_sub_source, sink) + self.tb.start() + time.sleep(0.25) + self.tb.stop() + self.tb.wait() + self.assertFloatTuplesAlmostEqual(sink.data(), src_data) + +if __name__ == '__main__': + gr_unittest.run(qa_zeromq_pubsub) |