Ejemplo n.º 1
0
 def test_smoke(self):
     device = APRSISRXDevice(reactor=self.clock,
                             aprs_filter='r/0/0/100',
                             client=_StubAPRSClient())
     state_smoke_test(device)
     device.close()
     state_smoke_test(device)
Ejemplo n.º 2
0
 def test_state_smoke_full(self):
     state_smoke_test(Device(
         name=u'x',
         rx_driver=StubRXDriver(),
         tx_driver=StubTXDriver(),
         vfo_cell=_ConstantVFOCell(1),
         components={'c': StubComponent()}))
Ejemplo n.º 3
0
 def test_state_smoke_full(self):
     state_smoke_test(
         Device(name=u'x',
                rx_driver=StubRXDriver(),
                tx_driver=StubTXDriver(),
                vfo_cell=_ConstantVFOCell(1),
                components={'c': StubComponent()}))
Ejemplo n.º 4
0
 def test_smoke(self):
     device = APRSISRXDevice(
         reactor=the_reactor,
         aprs_filter='r/0/0/100',
         client=_StubAPRSClient())
     state_smoke_test(device)
     device.close()
     state_smoke_test(device)
Ejemplo n.º 5
0
 def test_state_smoke(self):
     state_smoke_test(Top(devices={'s1': simulate.SimulatedDevice()}))
Ejemplo n.º 6
0
 def test_state_smoke(self):
     state_smoke_test(self.device)
Ejemplo n.º 7
0
 def test_state_smoke_empty(self):
     state_smoke_test(Device())
Ejemplo n.º 8
0
 def test_state_smoke(self):
     state_smoke_test(self.__rig)
     yield self.__rig.sync()
     state_smoke_test(self.__rig)
Ejemplo n.º 9
0
 def test_state_smoke(self):
     state_smoke_test(self.proxy)
Ejemplo n.º 10
0
 def test_state_smoke(self):
     state_smoke_test(Session(
         receive_flowgraph=Top(devices={'s1': SimulatedDevice()}),
         features={}))
Ejemplo n.º 11
0
 def test_smoke_nofilter(self):
     device = APRSISRXDevice(reactor=self.clock, client=_StubAPRSClient())
     state_smoke_test(device)
Ejemplo n.º 12
0
 def test_state_smoke(self):
     state_smoke_test(self.proxy)
Ejemplo n.º 13
0
 def test_smoke_nofilter(self):
     device = APRSISRXDevice(
         reactor=the_reactor,
         client=_StubAPRSClient())
     state_smoke_test(device)
Ejemplo n.º 14
0
 def test_smoke(self):
     state_smoke_test(self.receiver)
Ejemplo n.º 15
0
 def test_state_smoke(self):
     state_smoke_test(Top(devices={'s1': SimulatedDeviceForTest()}))
Ejemplo n.º 16
0
 def test_state_smoke(self):
     state_smoke_test(self.device)
Ejemplo n.º 17
0
 def test_state_smoke(self):
     state_smoke_test(Top(devices={'s1': SimulatedDeviceForTest()}))
Ejemplo n.º 18
0
 def test_state_smoke_empty(self):
     state_smoke_test(Device())
Ejemplo n.º 19
0
 def test_state_smoke(self):
     state_smoke_test(Top(devices={'s1': simulate.SimulatedDevice()}))
Ejemplo n.º 20
0
 def test_state_smoke(self):
     state_smoke_test(self.session)
Ejemplo n.º 21
0
 def test_smoke(self):
     state_smoke_test(self.receiver)
Ejemplo n.º 22
0
 def test_state_smoke(self):
     state_smoke_test(self.session)
Ejemplo n.º 23
0
 def test_state_smoke(self):
     state_smoke_test(self.__rig)
     yield self.__rig.sync()
     state_smoke_test(self.__rig)
Ejemplo n.º 24
0
 def test_state_smoke(self):
     state_smoke_test(
         Session(receive_flowgraph=Top(devices={'s1': SimulatedDevice()}),
                 features={}))