blob: 1619fd1715958a2d156f1c897a6cdf5c97530ecd [file] [log] [blame]
<!DOCTYPE html>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="../resources/bluetooth/bluetooth-helpers.js"></script>
<script>
'use strict';
test(t => { assert_true(window.testRunner instanceof Object); t.done(); },
'window.testRunner is required for the following tests.');
promise_test(() => {
return setBluetoothFakeAdapter('HeartRateAdapter')
.then(() => requestDeviceWithKeyDown({
filters: [{services: ['heart_rate']}]}))
.then(device => device.gatt.connect())
.then(gattServer => gattServer.getPrimaryService('heart_rate'))
.then(service => {
return Promise.all([service.getCharacteristic('body_sensor_location'),
service.getCharacteristic('heart_rate_measurement')]);
}).then(characteristics => {
let bsl_properties = characteristics[0].properties;
let bsl_expected_properties = new TestCharacteristicProperties({read: true});
assert_properties_equal(bsl_properties, bsl_expected_properties);
let hrm_properties = characteristics[1].properties;
let hrm_expected_properties = new TestCharacteristicProperties({notify: true});
assert_properties_equal(hrm_properties, hrm_expected_properties);
});
}, 'HeartRate device properties');
</script>