mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +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,33 @@
|
|||
'use strict';
|
||||
const test_desc = 'Calls to FUNCTION_NAME should return the same object.';
|
||||
let device;
|
||||
|
||||
bluetooth_test(() => getHealthThermometerDevice({
|
||||
filters: [{services: ['health_thermometer']}],
|
||||
optionalServices: ['generic_access']})
|
||||
.then(({device}) => Promise.all([
|
||||
device.gatt.CALLS([
|
||||
getPrimaryService('health_thermometer')|
|
||||
getPrimaryServices()|
|
||||
getPrimaryServices('health_thermometer')[UUID]]),
|
||||
device.gatt.PREVIOUS_CALL]))
|
||||
.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);
|
Loading…
Add table
Add a link
Reference in a new issue