blob: 42ade1a7f60af06acc4647e3007b0f777214b87d [file] [log] [blame]
<!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-test.js"></script>
<script src="/bluetooth/resources/bluetooth-fake-devices.js"></script>
<script>
'use strict';
const test_desc = 'Trying to write more than 512 bytes should return an error.'
let characteristic;
bluetooth_test(() => getMeasurementIntervalCharacteristic()
.then(({characteristic}) => assert_promise_rejects_with_message(
characteristic.writeValue(new Uint8Array(513 /* length */)),
new DOMException(
'Failed to execute \'writeValue\' on ' +
'\'BluetoothRemoteGATTCharacteristic\': ' +
'Value can\'t exceed 512 bytes.',
'InvalidModificationError'
), 'Value passed was too long.')),
test_desc);
</script>