Automatic update from web-platform-testsbluetooth: Use DeviceUUID in FakeBluetooth This change refactors the Web Bluetooth test API to use the DeviceUUIDs helper class defined in BluetoothDevice. Additionally, this change finishes the implementation of SimulateGATTServicesChanged, and as a result, tests are updated to set the next discovery response before calling this interface. BUG=719826 Change-Id: I0f986eb7afe6fbf7ebaa80ac4b633d46a027b80d Reviewed-on: https://chromium-review.googlesource.com/939984 Commit-Queue: Ovidio Henriquez <odejesush@chromium.org> Reviewed-by: Giovanni Ortuño Urquidi <ortuno@chromium.org> Cr-Commit-Position: refs/heads/master@{#541577} wpt-commits: 4038be686e4912ac1779f73f9fca8d9cbfbb1ec0 wpt-pr: 9858 wpt-commits: 4038be686e4912ac1779f73f9fca8d9cbfbb1ec0 wpt-pr: 9858
Web Bluetooth Testing
Web Bluetooth testing relies on the Web Bluetooth Testing API which must be provided by browsers under test.
In this test suite resources/bluetooth-helpers.js detects and triggers
the API to be loaded as needed.
The Chromium implementation is provided by
../resources/chromium/web-bluetooth-test.js.
The Chromium implementation is not included in stable Chrome builds since it
would add too much to the binary size. On Chromium infrastructure, it is run
using the content_shell executable.
In the future, Chromium src/device/bluetooth may be refactored into a Mojo
service. At this point, it would be possible to add the necessary testing hooks
into stable Chrome without substantially increasing the binary size, similar to
WebUSB.
These bluetooth tests are upstreamed here because other browsers can reuse them by implementing the Web Bluetooth Testing API, even if only on their internal infrastructure.
Generated gen-* files from generator.py
generator.py builds gen-*.html tests using templates in
script-tests/*/*.js.
The subdirectory structure in bluetooth/script-test/* is recreated into
bluetooth/*. The generator expands each CALL function from templates
into new leaf directories and files.
Example:
script-tests/server/get-same-object.js contains:
gattServer.CALLS([
getPrimaryService('heart_rate')|
getPrimaryServices()|
getPrimaryServices('heart_rate')[UUID]]),
Generating:
server/getPrimaryService/gen-get-same-object.html
server/getPrimaryServices/gen-get-same-object.html
server/getPrimaryServices/gen-get-same-object-with-uuid.html
Usage:
$ python generate.py
More details documented in generate.py.