[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 02/02: zeromq: Add qa code for zeromq_pubsu
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 02/02: zeromq: Add qa code for zeromq_pubsub |
Date: |
Tue, 27 May 2014 22:15:31 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a commit to branch master
in repository gnuradio.
commit ad799cfe7f8361b5eb415e296d0fde2ab77d6494
Author: Camilo Solano <address@hidden>
Date: Mon May 19 15:14:18 2014 +0200
zeromq: Add qa code for zeromq_pubsub
---
gr-zeromq/python/zeromq/qa_zeromq_pubsub.py | 52 +++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
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 0000000..d49a9a3
--- /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)