aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtBluetooth
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtBluetooth')
-rw-r--r--sources/pyside6/tests/QtBluetooth/CMakeLists.txt2
-rw-r--r--sources/pyside6/tests/QtBluetooth/QtBluetooth.pyproject4
-rw-r--r--sources/pyside6/tests/QtBluetooth/localdevice.py25
-rw-r--r--sources/pyside6/tests/QtBluetooth/lowenergy_characteristics.py51
4 files changed, 82 insertions, 0 deletions
diff --git a/sources/pyside6/tests/QtBluetooth/CMakeLists.txt b/sources/pyside6/tests/QtBluetooth/CMakeLists.txt
new file mode 100644
index 000000000..a075c3c9b
--- /dev/null
+++ b/sources/pyside6/tests/QtBluetooth/CMakeLists.txt
@@ -0,0 +1,2 @@
+PYSIDE_TEST(localdevice.py)
+PYSIDE_TEST(lowenergy_characteristics.py)
diff --git a/sources/pyside6/tests/QtBluetooth/QtBluetooth.pyproject b/sources/pyside6/tests/QtBluetooth/QtBluetooth.pyproject
new file mode 100644
index 000000000..176b335e2
--- /dev/null
+++ b/sources/pyside6/tests/QtBluetooth/QtBluetooth.pyproject
@@ -0,0 +1,4 @@
+{
+ "files": ["localdevice.py",
+ "lowenergy_characteristics.py"]
+}
diff --git a/sources/pyside6/tests/QtBluetooth/localdevice.py b/sources/pyside6/tests/QtBluetooth/localdevice.py
new file mode 100644
index 000000000..21801106f
--- /dev/null
+++ b/sources/pyside6/tests/QtBluetooth/localdevice.py
@@ -0,0 +1,25 @@
+#!/usr/bin/python
+# Copyright (C) 2022 The Qt Company Ltd.
+# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+
+'''Test cases for QBluetoothLocalDevice'''
+
+import os
+import sys
+import unittest
+
+from pathlib import Path
+sys.path.append(os.fspath(Path(__file__).resolve().parents[1]))
+from init_paths import init_test_paths
+init_test_paths(False)
+
+from PySide6.QtBluetooth import QBluetoothLocalDevice
+
+
+class QBluetoothLocalDeviceTest(unittest.TestCase):
+ def testInitialization(self):
+ device = QBluetoothLocalDevice()
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/sources/pyside6/tests/QtBluetooth/lowenergy_characteristics.py b/sources/pyside6/tests/QtBluetooth/lowenergy_characteristics.py
new file mode 100644
index 000000000..0f7298fec
--- /dev/null
+++ b/sources/pyside6/tests/QtBluetooth/lowenergy_characteristics.py
@@ -0,0 +1,51 @@
+#!/usr/bin/python
+# Copyright (C) 2022 The Qt Company Ltd.
+# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+
+'''Test cases for QLowEnergyServiceData'''
+
+import os
+import sys
+import unittest
+
+from pathlib import Path
+sys.path.append(os.fspath(Path(__file__).resolve().parents[1]))
+from init_paths import init_test_paths
+init_test_paths(False)
+
+from PySide6.QtCore import QUuid
+from PySide6.QtBluetooth import (QBluetoothUuid, QLowEnergyServiceData,
+ QLowEnergyDescriptorData,
+ QLowEnergyCharacteristicData)
+
+
+class QLowEnergyCharacteristicsTest(unittest.TestCase):
+
+ def testCharacteristics(self):
+ uuid = QUuid("11111111-1111-1111-1111-111111111111")
+ self.assertFalse(uuid.isNull())
+
+ new_characteristic = QLowEnergyCharacteristicData()
+ bluetooth_uuid = QBluetoothUuid(uuid)
+ new_characteristic.setUuid(bluetooth_uuid)
+ new_characteristic.setValue(b"blabla")
+ new_characteristic.setValueLength(6, 20)
+
+ desc = QLowEnergyDescriptorData()
+ desc.setUuid(bluetooth_uuid)
+ desc.setValue(b"blabla")
+
+ new_characteristic.addDescriptor(desc)
+ self.assertTrue(new_characteristic.isValid())
+
+ data = QLowEnergyServiceData()
+ data.addCharacteristic(new_characteristic)
+
+ characteristics = data.characteristics()
+ self.assertEqual(len(characteristics), 1)
+
+ self.assertEqual(characteristics[0].uuid(), bluetooth_uuid)
+
+
+if __name__ == '__main__':
+ unittest.main()