Web Bluetooth Blink Module
Source/modules/bluetooth implements the renderer process details and bindings
for the Web Bluetooth specification. It uses the Web Bluetooth Service
mojom to communicate with the Web Bluetooth Service.
LE only Scanning
There isn't much support for GATT over BR/EDR from neither platforms nor devices so performing a Dual scan will find devices that the API is not able to interact with. To avoid wasting power and confusing users with devices they are not able to interact with, navigator.bluetooth.requestDevice performs an LE-only Scan.
Testing
Web Bluetooth implementation details are tested at several layers:
/device/bluetooth/*_unittest.ccdevice_unittests --gtest_filter="*Bluetooth*"- General bluetooth platform abstraction level down to the OS. See device/bluetooth/test for details.
/chrome/browser/*bluetooth*_browsertest.ccout/Release/browser_tests --gtest_filter="*Bluetooth*"- Browser policy level tests (crash recovery, blocklist, killswitch).
/content/*/bluetooth/*_unittest.ccout/Release/content_unittests --gtest_filter="*Bluetooth*"- Trusted Web Bluetooth code (browser process) tests (as opposed to untrusted renderer process).
web_tests/bluetooth/*/*.htmlblink/tools/run_layout_tests.sh bluetooth- Web tests in
web_tests/bluetooth/rely on fake Bluetooth implementation classes constructed incontent/shell/browser/web_test/web_test_bluetooth_adapter_provider. These tests span JavaScript binding to thedevice/bluetoothplatform abstraction layer.
testing/clusterfuzz- Web Bluetooth Fuzzer runs on cluster fuzz infrastructure.
- Web Bluetooth Manual Tests
- Not browser-specific.
- Relies on the full Bluetooth hardware stack. Helps find bugs specific to an operating system, or even OS level bugs.
- Can be run by external web-application developers.
Design Documents
See: Class Diagram of Web Bluetooth through Bluetooth Android