Exemplo n.º 1
0
 def test_cb_callback(self):
     cb1 = CollateBuffer(nant=NANT,npol=1,nchan=2048,nwin=1)
     cb2 = CollateBuffer(nant=NANT,npol=1,nchan=2048,nwin=1, sdisp=1, sdisp_destination_ip="192.168.1.196")
     def callback(i,j,pol,t,data, flags):
         global data_in_readout
         data_in_readout = True
     cb1.set_callback(callback)
     bs = BufferSocket()
     bs.set_callback(cb1)
     bs.start(PORT)
     xengs = [sim.XEngine(nant=NANT,npol=1,nchan=2048,engine_id=x, intlen=1562500) \
         for x in range(NANT)]
     xstreams = [x.get_pkt_stream() for x in xengs]
     timestamp = None
     cnt = 0
     while True:
         for x in xstreams:
             pkt = x.next()
             pkt.currerr = cnt
             cnt += 1
             if timestamp is None: timestamp = pkt.timestamp
             if pkt.timestamp > timestamp + 2: break
             loopback(pkt.pack(), port=PORT)
             cb2.collate_packet(pkt)
         time.sleep(.0001)
         if pkt.timestamp > timestamp + 2: break
     bs.stop()
     self.assertTrue(data_in_readout)
Exemplo n.º 2
0
 def dtest_auto_shutdown(self):
     bs = BufferSocket()
     def callback(s): pass
     bs.set_callback(callback)
     bs.start(PORT)
     for i in range(10):
         loopback('Test' * 10)
         time.sleep(.0001)
     del(bs)
     loopback('Test' * 10)
Exemplo n.º 3
0
 def dtest_all_data(self):
     cb = CollateBuffer(nant=NANT,npol=1,nchan=2048,nwin=1)
     def callback(i,j,pol,t,data,flags):
         self.assertTrue(n.all(flags == 0))
     cb.set_callback(callback)
     bs = BufferSocket()
     bs.set_callback(cb)
     bs.start(PORT)
     xengs = [sim.XEngine(nant=NANT,npol=1,nchan=2048,engine_id=x) \
         for x in range(NANT)]
     xstreams = [x.get_pkt_stream() for x in xengs]
     timestamp = None
     while True:
         for x in xstreams:
             pkt = x.next()
             if timestamp is None: timestamp = pkt.timestamp
             if pkt.timestamp > timestamp + 2: break
             loopback(pkt.pack(), port=PORT)
         time.sleep(.0001)
         if pkt.timestamp > timestamp + 2: break
     bs.stop()
Exemplo n.º 4
0
 def dtest_init(self):
     bs = BufferSocket(item_count=10)
     bs = BufferSocket(payload_len=1024)
     bs = BufferSocket(item_count=100, payload_len=9000)
Exemplo n.º 5
0
 def setUp(self):
     self.bs = BufferSocket()