コード例 #1
0
 def to_knx(self, value):
     """Convert value to payload."""
     return DPTArray(DPTValue1Ucount.to_knx(value))
コード例 #2
0
 def from_knx(self, payload):
     """Convert current payload to value."""
     return DPTValue1Ucount.from_knx(payload.value)
コード例 #3
0
 def test_from_knx_wrong_value(self):
     """Test parsing of DPTValue1Ucount with value which exceeds limits."""
     with self.assertRaises(ConversionError):
         DPTValue1Ucount().from_knx((0x256, ))
コード例 #4
0
 def test_from_knx_wrong_parameter2(self):
     """Test parsing of DPTValue1Ucount with wrong value (array containing string)."""
     with self.assertRaises(ConversionError):
         DPTValue1Ucount().from_knx(("0x23"))
コード例 #5
0
 def test_to_knx_wrong_parameter(self):
     """Test parsing of DPTValue1Ucount with wrong value (string)."""
     with self.assertRaises(ConversionError):
         DPTValue1Ucount().to_knx("fnord")
コード例 #6
0
 def test_from_knx_wrong_parameter(self):
     """Test parsing of DPTValue1Ucount with wrong value (3 byte array)."""
     with self.assertRaises(ConversionError):
         DPTValue1Ucount().from_knx((0x01, 0x02, 0x03))
コード例 #7
0
 def test_to_knx_max_exceeded(self):
     """Test parsing of DPTValue1Ucount with wrong value (overflow)."""
     with self.assertRaises(ConversionError):
         DPTValue1Ucount().to_knx(DPTValue1Ucount.value_max + 1)
コード例 #8
0
 def test_value_min(self):
     """Test parsing and streaming of DPTValue1Ucount 0."""
     self.assertEqual(DPTValue1Ucount().to_knx(0), (0x00, ))
     self.assertEqual(DPTValue1Ucount().from_knx((0x00, )), 0)
コード例 #9
0
 def test_value_max(self):
     """Test parsing and streaming of DPTValue1Ucount 255."""
     self.assertEqual(DPTValue1Ucount().to_knx(255), (0xFF, ))
     self.assertEqual(DPTValue1Ucount().from_knx((0xFF, )), 255)
コード例 #10
0
 def test_value_50(self):
     """Test parsing and streaming of DPTValue1Ucount 50."""
     self.assertEqual(DPTValue1Ucount().to_knx(50), (0x32, ))
     self.assertEqual(DPTValue1Ucount().from_knx((0x32, )), 50)
コード例 #11
0
 def test_value_max(self):
     """Test parsing and streaming of DPTValue1Ucount 63."""
     self.assertEqual(DPTValue1Ucount().to_knx(63), (0x3F, ))
     self.assertEqual(DPTValue1Ucount().from_knx((0x3F, )), 63)