mirror of
https://github.com/servo/servo.git
synced 2025-08-11 08:25:32 +01:00
Update web-platform-tests to revision ddfc95cf0493ae147a4f6a4d7be8eff1a0c23098
This commit is contained in:
parent
1f6a864ab5
commit
7e6290451f
832 changed files with 16026 additions and 2649 deletions
|
@ -0,0 +1,40 @@
|
|||
<!-- Generated by //third_party/WebKit/LayoutTests/bluetooth/generate.py -->
|
||||
<!DOCTYPE html>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="/resources/testdriver.js"></script>
|
||||
<script src="/resources/testdriver-vendor.js"></script>
|
||||
<script src="/bluetooth/resources/bluetooth-helpers.js"></script>
|
||||
<script>
|
||||
'use strict';
|
||||
const test_desc = 'Calls to getPrimaryService should return the same object.';
|
||||
let device;
|
||||
|
||||
bluetooth_test(() => getHealthThermometerDevice({
|
||||
filters: [{services: ['health_thermometer']}],
|
||||
optionalServices: ['generic_access']})
|
||||
.then(({device}) => Promise.all([
|
||||
device.gatt.getPrimaryService('health_thermometer'),
|
||||
device.gatt.getPrimaryService('health_thermometer')]))
|
||||
.then(([services_first_call, services_second_call]) => {
|
||||
// Convert to arrays if necessary.
|
||||
services_first_call = [].concat(services_first_call);
|
||||
services_second_call = [].concat(services_second_call);
|
||||
|
||||
assert_equals(services_first_call.length, services_second_call.length);
|
||||
|
||||
let first_call_set = new Set(services_first_call);
|
||||
assert_equals(services_first_call.length, first_call_set.size);
|
||||
let second_call_set = new Set(services_second_call);
|
||||
assert_equals(services_second_call.length, second_call_set.size);
|
||||
|
||||
services_first_call.forEach(service => {
|
||||
assert_true(second_call_set.has(service))
|
||||
});
|
||||
|
||||
services_second_call.forEach(service => {
|
||||
assert_true(first_call_set.has(service));
|
||||
});
|
||||
}), test_desc);
|
||||
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue