|
| 1 | +.. _bluetooth_classic_sdp_server_tests: |
| 2 | + |
| 3 | +Bluetooth Classic SDP Server Tests |
| 4 | +################################## |
| 5 | + |
| 6 | +Overview |
| 7 | +******** |
| 8 | + |
| 9 | +This test suite uses ``bumble`` for testing Bluetooth Classic communication between a host |
| 10 | +PC (running :ref:`Twister <twister_script>`) and a device under test (DUT) running Zephyr. |
| 11 | + |
| 12 | +Prerequisites |
| 13 | +************* |
| 14 | + |
| 15 | +The test suite has the following prerequisites: |
| 16 | + |
| 17 | +* The ``bumble`` library installed on the host PC. |
| 18 | +The Bluetooth Classic controller on PC side is required. Refer to getting started of `bumble`_ |
| 19 | +for details. |
| 20 | + |
| 21 | +The HCI transport for ``bumble`` can be configured as follows: |
| 22 | + |
| 23 | +* A specific configuration context can be provided along with the ``usb_hci`` fixture separated by |
| 24 | + a ``:`` (i.e. specify fixture ``usb_hci:usb:0`` to use the ``usb:0`` as hci transport for |
| 25 | + ``bumble``). |
| 26 | +* The configuration context can be overridden using the `hci transport`_ can be provided using the |
| 27 | + ``--hci-transport`` test suite argument (i.e. run ``twister`` with the |
| 28 | + ``--pytest-args=--hci-transport=usb:0`` argument to use the ``usb:0`` as hci transport for |
| 29 | + ``bumble``). |
| 30 | + |
| 31 | +Building and Running |
| 32 | +******************** |
| 33 | + |
| 34 | +Running on mimxrt1170_evk@B/mimxrt1176/cm7 |
| 35 | +========================================== |
| 36 | + |
| 37 | +Running the test suite on :ref:`mimxrt1170_evk` relies on configuration of ``bumble``. |
| 38 | + |
| 39 | +On the host PC, a HCI transport needs to be required. Refer to `bumble platforms`_ page of |
| 40 | +``bumble`` for details. |
| 41 | + |
| 42 | +For example, on windows, a PTS dongle is used. After `WinUSB driver`_ has been installed, |
| 43 | +the HCI transport would be USB transport interface ``usb:<index>``. |
| 44 | + |
| 45 | +If the HCI transport is ``usb:0`` and debug console port is ``COM4``, the test suite can be |
| 46 | +launched using Twister: |
| 47 | + |
| 48 | +.. code-block:: shell |
| 49 | +
|
| 50 | + west twister -v -p mimxrt1170_evk@B/mimxrt1176/cm7 --device-testing --device-serial COM4 -T tests/bluetooth/classic/sdp_s -O sdp_s --force-platform --west-flash --west-runner=jlink -X usb_hci:usb:0 |
| 51 | +
|
| 52 | +Running on Hardware |
| 53 | +=================== |
| 54 | + |
| 55 | +Running the test suite on hardware requires a HCI transport connected to the host PC. |
| 56 | + |
| 57 | +The test suite can be launched using Twister. Below is an example for running on the |
| 58 | +:zephyr:board:`mimxrt1170_evk@B/mimxrt1176/cm7`: |
| 59 | + |
| 60 | +.. code-block:: shell |
| 61 | +
|
| 62 | + west twister -v -p mimxrt1170_evk@B/mimxrt1176/cm7 --device-testing --device-serial COM4 -T tests/bluetooth/classic/sdp_s -O sdp_s --force-platform --west-flash --west-runner=jlink -X usb_hci:usb:0 |
| 63 | +
|
| 64 | +.. _bumble: |
| 65 | + https://google.github.io/bumble/getting_started.html |
| 66 | + |
| 67 | +.. _hci transport: |
| 68 | + https://google.github.io/bumble/transports/index.html |
| 69 | + |
| 70 | +.. _bumble platforms: |
| 71 | + https://google.github.io/bumble/platforms/index.html |
| 72 | + |
| 73 | +.. _WinUSB driver: |
| 74 | + https://google.github.io/bumble/platforms/windows.html |
0 commit comments