Beispiel #1
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)
Beispiel #2
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)
Beispiel #3
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)
Beispiel #4
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'))
Beispiel #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)
Beispiel #6
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")
Beispiel #7
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)
Beispiel #8
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)
Beispiel #9
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')
Beispiel #10
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)
Beispiel #11
0
    def test_notification_payload_ok(self):
        """testing data processing"""

        notification_response = (
            "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"
        )
        data = GatttoolBackend().extract_notification_payload(notification_response)
        self.assertTrue(len(data) == 3)
        self.assertTrue(data[0] == "54 3d 32 37 2e 33 20 48 3d 32 37 2e 30 00")
        self.assertTrue(data[2] == "54 3d 32 37 2e 31 20 48 3d 32 37 2e 34 00")
Beispiel #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)
Beispiel #13
0
 def test_supports_scanning(self):
     """Check if scanning is set correctly."""
     backend = GatttoolBackend()
     self.assertTrue(backend.supports_scanning())
Beispiel #14
0
 def test_notification_not_connected(self):
     """Test writing data when not connected."""
     backend = GatttoolBackend()
     with self.assertRaises(BluetoothBackendException):
         backend.wait_for_notification(0xFF, self, 10)
 def setUp(self):
     """Setup of the test case."""
     self.backend = GatttoolBackend(retries=0, timeout=20)
Beispiel #16
0
 def test_check_backend_ok(self, call_mock):
     """Test check_backend successfully."""
     self.assertTrue(GatttoolBackend().check_backend())
Beispiel #17
0
 def test_read_not_connected(self):
     """Test reading data when not connected."""
     backend = GatttoolBackend()
     with self.assertRaises(BluetoothBackendException):
         backend.read_handle(0xFF)
Beispiel #18
0
 def test_check_backend_fail(self, call_mock):
     """Test check_backend with IOError being risen."""
     self.assertFalse(GatttoolBackend().check_backend())
Beispiel #19
0
 def test_write_not_connected(self):
     """Test writing data when not connected."""
     backend = GatttoolBackend()
     with self.assertRaises(BluetoothBackendException):
         backend.write_handle(0xFF, [0x00])
Beispiel #20
0
 def setUp(self):
     """Set up the test environment."""
     self.backend = GatttoolBackend()