Example #1
0
 def test_from_knx_startstop_invert(self):
     """Test from_knx function with inverted operation."""
     xknx = XKNX(loop=self.loop)
     remote_value = RemoteValueStartStopBlinds(xknx, invert=True)
     self.assertEqual(remote_value.from_knx(DPTBinary(9)),
                      RemoteValueStartStopBlinds.Direction.UP)
     self.assertEqual(remote_value.from_knx(DPTBinary(1)),
                      RemoteValueStartStopBlinds.Direction.DOWN)
Example #2
0
 def test_to_knx_startstop(self):
     """Test to_knx function with normal operation."""
     xknx = XKNX(loop=self.loop)
     remote_value = RemoteValueStartStopBlinds(xknx)
     self.assertEqual(
         remote_value.to_knx(RemoteValueStartStopBlinds.Direction.DOWN),
         DPTBinary(9))
     self.assertEqual(
         remote_value.to_knx(RemoteValueStartStopBlinds.Direction.UP),
         DPTBinary(1))
Example #3
0
 def test_process(self):
     """Test process telegram."""
     xknx = XKNX(loop=self.loop)
     remote_value = RemoteValueStartStopBlinds(
         xknx, group_address=GroupAddress("1/2/3"))
     telegram = Telegram(group_address=GroupAddress("1/2/3"),
                         payload=DPTBinary(1))
     self.assertEqual(remote_value.value, None)
     self.loop.run_until_complete(
         asyncio.Task(remote_value.process(telegram)))
     self.assertEqual(remote_value.value,
                      RemoteValueStartStopBlinds.Direction.UP)
Example #4
0
 def test_set(self):
     """Test setting value."""
     xknx = XKNX(loop=self.loop)
     remote_value = RemoteValueStartStopBlinds(
         xknx, group_address=GroupAddress("1/2/3"))
     self.loop.run_until_complete(asyncio.Task(remote_value.up()))
     self.assertEqual(xknx.telegrams.qsize(), 1)
     telegram = xknx.telegrams.get_nowait()
     self.assertEqual(telegram,
                      Telegram(GroupAddress('1/2/3'), payload=DPTBinary(1)))
     self.loop.run_until_complete(asyncio.Task(remote_value.down()))
     self.assertEqual(xknx.telegrams.qsize(), 1)
     telegram = xknx.telegrams.get_nowait()
     self.assertEqual(telegram,
                      Telegram(GroupAddress('1/2/3'), payload=DPTBinary(9)))
Example #5
0
 def test_to_process_error(self):
     """Test process errornous telegram."""
     xknx = XKNX(loop=self.loop)
     remote_value = RemoteValueStartStopBlinds(
         xknx, group_address=GroupAddress("1/2/3"))
     with self.assertRaises(CouldNotParseTelegram):
         telegram = Telegram(group_address=GroupAddress("1/2/3"),
                             payload=DPTArray((0x01)))
         self.loop.run_until_complete(
             asyncio.Task(remote_value.process(telegram)))
     with self.assertRaises(CouldNotParseTelegram):
         telegram = Telegram(group_address=GroupAddress("1/2/3"),
                             payload=DPTBinary(0x10))
         self.loop.run_until_complete(
             asyncio.Task(remote_value.process(telegram)))
         # pylint: disable=pointless-statement
         remote_value.value
Example #6
0
 def test_to_knx_startstop_error(self):
     """Test to_knx function with wrong parametern."""
     xknx = XKNX(loop=self.loop)
     remote_value = RemoteValueStartStopBlinds(xknx)
     with self.assertRaises(ConversionError):
         remote_value.to_knx(1)