mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 14:20:14 +02:00
MozReview-Commit-ID: CSM0hnryiTp --HG-- rename : testing/web-platform/tests/content-security-policy/reporting/reporting-api-doesnt-send-reports-without-violation.https.sub.html => testing/web-platform/tests/content-security-policy/reporting-api/reporting-api-doesnt-send-reports-without-violation.https.sub.html rename : testing/web-platform/tests/content-security-policy/reporting/reporting-api-report-only-sends-reports-on-violation.https.sub.html => testing/web-platform/tests/content-security-policy/reporting-api/reporting-api-report-only-sends-reports-on-violation.https.sub.html rename : testing/web-platform/tests/content-security-policy/reporting/reporting-api-report-to-overrides-report-uri-1.https.sub.html => testing/web-platform/tests/content-security-policy/reporting-api/reporting-api-report-to-overrides-report-uri-1.https.sub.html rename : testing/web-platform/tests/content-security-policy/reporting/reporting-api-report-to-overrides-report-uri-2.https.sub.html => testing/web-platform/tests/content-security-policy/reporting-api/reporting-api-report-to-overrides-report-uri-2.https.sub.html rename : testing/web-platform/tests/content-security-policy/reporting/reporting-api-sends-reports-on-violation.https.sub.html => testing/web-platform/tests/content-security-policy/reporting-api/reporting-api-sends-reports-on-violation.https.sub.html
31 lines
1.2 KiB
HTML
31 lines
1.2 KiB
HTML
<!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 = 'Request for service. Should return right service';
|
|
let device;
|
|
|
|
bluetooth_test(() => getHealthThermometerDevice({
|
|
filters: [{services: ['health_thermometer']}],
|
|
optionalServices: ['generic_access']
|
|
})
|
|
.then(_ => ({device} = _))
|
|
.then(() => Promise.all([
|
|
device.gatt.getPrimaryService(generic_access.alias),
|
|
device.gatt.getPrimaryService(generic_access.name),
|
|
device.gatt.getPrimaryService(generic_access.uuid)]))
|
|
.then(services => {
|
|
services.forEach(service => {
|
|
assert_equals(service.uuid, generic_access.uuid,
|
|
'Service UUID should be the same as requested UUID.');
|
|
assert_true(service.isPrimary,
|
|
'getPrimaryService should return a primary service.');
|
|
assert_equals(service.device, device,
|
|
'Service device should be the same as device.');
|
|
})
|
|
}), test_desc);
|
|
</script>
|