Пример #1
0
    def testProtocolCallback(self):
        io = TestIo( os.path.join( os.path.dirname(__file__), "data/wb_reset.log") )

        sp = SpProtocolHandler(io, self.protocol_callback)
        time.sleep(0.1)
        while sp.is_running:
            time.sleep(0.2)

        self.assertNotEqual(0, len(self._updates) )
        address, length, raw_data = self._updates[-1]
        io.close()
Пример #2
0
    def testUpdate(self):
        values = Sp_parser(os.path.join(os.path.dirname(__file__), "../wb_sources"))

        io = TestIo(os.path.join(os.path.dirname(__file__), "data/wb_reset.log"))
        sp = SpProtocolHandler(io, sp_object_update(values))
        while sp.is_running:
            time.sleep(0.2)
        io.close()

        for spo in values.by_name:
            #            print spo.to_string()
            self.assertNotEqual("", spo.name)
            self.failUnless(spo.o_type in [1, 2, 3, 4])
            if spo.o_type == spo.T_byte:
                self.assertEqual(1, spo.size)
            if spo.o_type == spo.T_integer:
                self.assertEqual(2, spo.size)
            if spo.o_type == spo.T_string:
                self.failUnless(spo.size > 0)
            if spo.o_type == spo.T_dd:
                self.assertEqual(4, spo.size)
            self.failUnless(spo.address is not None)
            if spo.address < (1024 * 63):
                self.failUnless(spo.value is not None)