Exemple #1
0
 def test_read_handle_timeout(self, time_mock, popen_mock, os_mock):
     """Test notification when timeout"""
     _configure_popenmock_timeout(popen_mock, "Characteristic")
     backend = GatttoolBackend()
     backend.connect(TEST_MAC)
     with self.assertRaises(BluetoothBackendException):
         backend.read_handle(0xFF)
Exemple #2
0
 def test_read_handle_empty_output(self, _, popen_mock):
     """Test reading handle where no result is returned."""
     _configure_popenmock(popen_mock, "")
     backend = GatttoolBackend()
     backend.connect(TEST_MAC)
     with self.assertRaises(BluetoothBackendException):
         backend.read_handle(0xFF)
Exemple #3
0
 def test_write_handle_no_answer(self, time_mock, popen_mock):
     """Test writing to a handle when no result is returned."""
     _configure_popenmock(popen_mock, "")
     backend = GatttoolBackend()
     backend.connect(TEST_MAC)
     with self.assertRaises(BluetoothBackendException):
         backend.write_handle(0xFF, b"\x00\x10\xFF")
Exemple #4
0
 def test_run_connect_disconnect(self):
     """Just run connect and disconnect"""
     backend = GatttoolBackend()
     backend.connect(TEST_MAC)
     self.assertEqual(TEST_MAC, backend._mac)
     backend.disconnect()
     self.assertEqual(None, backend._mac)
Exemple #5
0
 def test_notification_no_answer(self, time_mock, popen_mock):
     """Test notification when no result is returned."""
     _configure_popenmock(popen_mock, "")
     backend = GatttoolBackend()
     backend.connect(TEST_MAC)
     with self.assertRaises(BluetoothBackendException):
         backend.wait_for_notification(0xFF, self, 10)
class TestGatttoolBackend(unittest.TestCase):
    """Test GatttoolBackend with real sensor."""

    # pylint does not understand pytest fixtures, so we have to disable the warning
    # pylint: disable=no-member

    def setUp(self):
        """Setup of the test case."""
        self.backend = GatttoolBackend(retries=0, timeout=20)

    @pytest.mark.usefixtures("mac")
    def test_read(self):
        """Test reading a handle from the sensor."""
        self.backend.connect(self.mac)
        result = self.backend.read_handle(HANDLE_READ_NAME)
        self.assertIsNotNone(result)
        self.backend.disconnect()

    def test_read_not_connected(self):
        """Test error handling if not connected."""
        with self.assertRaises(BluetoothBackendException):
            self.backend.read_handle(HANDLE_READ_NAME)

    def test_check_backend(self):
        """Test check_backend function."""
        self.assertTrue(self.backend.check_backend())

    def test_invalid_mac_exception(self):
        """Test writing data to handle of the sensor."""
        with self.assertRaises(BluetoothBackendException):
            self.backend.connect(TEST_MAC)
            self.backend.read_handle(HANDLE_READ_NAME)
Exemple #7
0
 def test_write_handle_ok(self, time_mock, popen_mock):
     """Test writing to a handle successfully."""
     _configure_popenmock(popen_mock,
                          'Characteristic value was written successfully')
     backend = GatttoolBackend()
     backend.connect(TEST_MAC)
     self.assertTrue(backend.write_handle(0xFF, b'\x00\x10\xFF'))
Exemple #8
0
 def test_read_handle_ok(self, popen_mock):
     """Test reading handle successfully."""
     gattoutput = bytes([0x00, 0x11, 0xAA, 0xFF])
     _configure_popenmock(popen_mock, "Characteristic value/descriptor: 00 11 AA FF")
     backend = GatttoolBackend()
     backend.connect(TEST_MAC)
     result = backend.read_handle(0xFF)
     self.assertEqual(gattoutput, result)
Exemple #9
0
 def test_read_handle_wrong_handle(self, popen_mock):
     """Test reading invalid handle."""
     _configure_popenmock(
         popen_mock, "Characteristic value/descriptor read failed: Invalid handle"
     )
     backend = GatttoolBackend()
     backend.connect(TEST_MAC)
     with self.assertRaises(BluetoothBackendException):
         backend.read_handle(0xFF)
Exemple #10
0
 def test_write_handle_wrong_handle(self, time_mock, popen_mock):
     """Test writing to a non-writable handle."""
     _configure_popenmock(
         popen_mock,
         "Characteristic Write Request failed: Attribute can't be written")
     backend = GatttoolBackend()
     backend.connect(TEST_MAC)
     with self.assertRaises(BluetoothBackendException):
         backend.write_handle(0xFF, b'\x00\x10\xFF')
Exemple #11
0
 def test_notification_wrong_handle(self, time_mock, popen_mock):
     """Test notification when wrong handle"""
     _configure_popenmock(
         popen_mock,
         "Characteristic Write Request failed: Attribute can't be written")
     backend = GatttoolBackend()
     backend.connect(TEST_MAC)
     with self.assertRaises(BluetoothBackendException):
         backend.wait_for_notification(0xFF, self, 10)
Exemple #12
0
 def test_notification_timeout(self, time_mock, popen_mock, os_mock):
     """Test notification when timeout"""
     _configure_popenmock_timeout(popen_mock, (
         "Characteristic value was written successfully\n"
         "Notification handle = 0x000e value: 54 3d 32 37 2e 33 20 48 3d 32 37 2e 30 00\n"
         "Notification handle = 0x000e value: 54 3d 32 37 2e 32 20 48 3d 32 37 2e 32 00\n"
         "Notification handle = 0x000e value: 54 3d 32 37 2e 31 20 48 3d 32 37 2e 34 00"
     ))
     backend = GatttoolBackend()
     backend.connect(TEST_MAC)
     self.handle_notification_called = False
     self.assertTrue(backend.wait_for_notification(0xFF, self, 10))
     self.assertTrue(self.handle_notification_called)