'use strict'; function toMojoCentralState(state) { switch (state) { case 'absent': return bluetooth.mojom.CentralState.ABSENT; case 'powered-off': return bluetooth.mojom.CentralState.POWERED_OFF; case 'powered-on': return bluetooth.mojom.CentralState.POWERED_ON; default: throw `Unsupported value ${state} for state.`; } } // Canonicalizes UUIDs and converts them to Mojo UUIDs. function canonicalizeAndConvertToMojoUUID(uuids) { let canonicalUUIDs = uuids.map(val => ({uuid: BluetoothUUID.getService(val)})); return canonicalUUIDs; } // Converts WebIDL a record to a map> to // use for Mojo, where the value for K is calculated using keyFn. function convertToMojoMap(record, keyFn) { let map = new Map(); for (const [key, value] of Object.entries(record)) { let buffer = ArrayBuffer.isView(value) ? value.buffer : value; map.set(keyFn(key), Array.from(new Uint8Array(buffer))); } return map; } // Mapping of the property names of // BluetoothCharacteristicProperties defined in // https://webbluetoothcg.github.io/web-bluetooth/#characteristicproperties // to property names of the CharacteristicProperties mojo struct. const CHARACTERISTIC_PROPERTIES_WEB_TO_MOJO = { broadcast: 'broadcast', read: 'read', write_without_response: 'write_without_response', write: 'write', notify: 'notify', indicate: 'indicate', authenticatedSignedWrites: 'authenticated_signed_writes', extended_properties: 'extended_properties', }; function ArrayToMojoCharacteristicProperties(arr) { let struct = new bluetooth.mojom.CharacteristicProperties(); arr.forEach(val => { let mojo_property = CHARACTERISTIC_PROPERTIES_WEB_TO_MOJO[val]; if (struct.hasOwnProperty(mojo_property)) struct[mojo_property] = true; else throw `Invalid member '${val}' for CharacteristicProperties`; }); return struct; } class FakeBluetooth { constructor() { this.fake_bluetooth_ptr_ = new bluetooth.mojom.FakeBluetoothPtr(); Mojo.bindInterface(bluetooth.mojom.FakeBluetooth.name, mojo.makeRequest(this.fake_bluetooth_ptr_).handle, 'process'); } // Set it to indicate whether the platform supports BLE. For example, // Windows 7 is a platform that doesn't support Low Energy. On the other // hand Windows 10 is a platform that does support LE, even if there is no // Bluetooth radio present. async setLESupported(supported) { if (typeof supported !== 'boolean') throw 'Type Not Supported'; await this.fake_bluetooth_ptr_.setLESupported(supported); } // Returns a promise that resolves with a FakeCentral that clients can use // to simulate events that a device in the Central/Observer role would // receive as well as monitor the operations performed by the device in the // Central/Observer role. // Calls sets LE as supported. // // A "Central" object would allow its clients to receive advertising events // and initiate connections to peripherals i.e. operations of two roles // defined by the Bluetooth Spec: Observer and Central. // See Bluetooth 4.2 Vol 3 Part C 2.2.2 "Roles when Operating over an // LE Physical Transport". async simulateCentral({state}) { await this.setLESupported(true); let {fakeCentral: fake_central_ptr} = await this.fake_bluetooth_ptr_.simulateCentral( toMojoCentralState(state)); return new FakeCentral(fake_central_ptr); } // Returns true if there are no pending responses. async allResponsesConsumed() { let {consumed} = await this.fake_bluetooth_ptr_.allResponsesConsumed(); return consumed; } // Returns a promise that resolves with a FakeChooser that clients can use to // simulate chooser events. async getManualChooser() { if (typeof this.fake_chooser_ === 'undefined') { this.fake_chooser_ = new FakeChooser(); } return this.fake_chooser_; } } // FakeCentral allows clients to simulate events that a device in the // Central/Observer role would receive as well as monitor the operations // performed by the device in the Central/Observer role. class FakeCentral { constructor(fake_central_ptr) { this.fake_central_ptr_ = fake_central_ptr; this.peripherals_ = new Map(); } // Simulates a peripheral with |address|, |name| and |known_service_uuids| // that has already been connected to the system. If the peripheral existed // already it updates its name and known UUIDs. |known_service_uuids| should // be an array of BluetoothServiceUUIDs // https://webbluetoothcg.github.io/web-bluetooth/#typedefdef-bluetoothserviceuuid // // Platforms offer methods to retrieve devices that have already been // connected to the system or weren't connected through the UA e.g. a user // connected a peripheral through the system's settings. This method is // intended to simulate peripherals that those methods would return. async simulatePreconnectedPeripheral({ address, name, knownServiceUUIDs = []}) { await this.fake_central_ptr_.simulatePreconnectedPeripheral( address, name, canonicalizeAndConvertToMojoUUID(knownServiceUUIDs)); return this.fetchOrCreatePeripheral_(address); } // Simulates an advertisement packet described by |scanResult| being received // from a device. If central is currently scanning, the device will appear on // the list of discovered devices. async simulateAdvertisementReceived(scanResult) { if ('uuids' in scanResult.scanRecord) { scanResult.scanRecord.uuids = canonicalizeAndConvertToMojoUUID(scanResult.scanRecord.uuids); } // Convert the optional appearance and txPower fields to the corresponding // Mojo structures, since Mojo does not support optional interger values. If // the fields are undefined, set the hasValue field as false and value as 0. // Otherwise, set the hasValue field as true and value with the field value. const has_appearance = 'appearance' in scanResult.scanRecord; scanResult.scanRecord.appearance = { hasValue: has_appearance, value: (has_appearance ? scanResult.scanRecord.appearance : 0) } const has_tx_power = 'txPower' in scanResult.scanRecord; scanResult.scanRecord.txPower = { hasValue: has_tx_power, value: (has_tx_power ? scanResult.scanRecord.txPower : 0) } // Convert manufacturerData from a record into a // map> for Mojo. if ('manufacturerData' in scanResult.scanRecord) { scanResult.scanRecord.manufacturerData = convertToMojoMap( scanResult.scanRecord.manufacturerData, Number); } // Convert serviceData from a record into a // map> for Mojo. if ('serviceData' in scanResult.scanRecord) { scanResult.scanRecord.serviceData.serviceData = convertToMojoMap( scanResult.scanRecord.serviceData, BluetoothUUID.getService); } await this.fake_central_ptr_.simulateAdvertisementReceived( new bluetooth.mojom.ScanResult(scanResult)); return this.fetchOrCreatePeripheral_(scanResult.deviceAddress); } // Create a fake_peripheral object from the given address. fetchOrCreatePeripheral_(address) { let peripheral = this.peripherals_.get(address); if (peripheral === undefined) { peripheral = new FakePeripheral(address, this.fake_central_ptr_); this.peripherals_.set(address, peripheral); } return peripheral; } } class FakePeripheral { constructor(address, fake_central_ptr) { this.address = address; this.fake_central_ptr_ = fake_central_ptr; } // Adds a fake GATT Service with |uuid| to be discovered when discovering // the peripheral's GATT Attributes. Returns a FakeRemoteGATTService // corresponding to this service. |uuid| should be a BluetoothServiceUUIDs // https://webbluetoothcg.github.io/web-bluetooth/#typedefdef-bluetoothserviceuuid async addFakeService({uuid}) { let {serviceId: service_id} = await this.fake_central_ptr_.addFakeService( this.address, {uuid: BluetoothUUID.getService(uuid)}); if (service_id === null) throw 'addFakeService failed'; return new FakeRemoteGATTService( service_id, this.address, this.fake_central_ptr_); } // Sets the next GATT Connection request response to |code|. |code| could be // an HCI Error Code from BT 4.2 Vol 2 Part D 1.3 List Of Error Codes or a // number outside that range returned by specific platforms e.g. Android // returns 0x101 to signal a GATT failure // https://developer.android.com/reference/android/bluetooth/BluetoothGatt.html#GATT_FAILURE async setNextGATTConnectionResponse({code}) { let {success} = await this.fake_central_ptr_.setNextGATTConnectionResponse( this.address, code); if (success !== true) throw 'setNextGATTConnectionResponse failed.'; } // Sets the next GATT Discovery request response for peripheral with // |address| to |code|. |code| could be an HCI Error Code from // BT 4.2 Vol 2 Part D 1.3 List Of Error Codes or a number outside that // range returned by specific platforms e.g. Android returns 0x101 to signal // a GATT failure // https://developer.android.com/reference/android/bluetooth/BluetoothGatt.html#GATT_FAILURE // // The following procedures defined at BT 4.2 Vol 3 Part G Section 4. // "GATT Feature Requirements" are used to discover attributes of the // GATT Server: // - Primary Service Discovery // - Relationship Discovery // - Characteristic Discovery // - Characteristic Descriptor Discovery // This method aims to simulate the response once all of these procedures // have completed or if there was an error during any of them. async setNextGATTDiscoveryResponse({code}) { let {success} = await this.fake_central_ptr_.setNextGATTDiscoveryResponse( this.address, code); if (success !== true) throw 'setNextGATTDiscoveryResponse failed.'; } // Simulates a GATT disconnection from the peripheral with |address|. async simulateGATTDisconnection() { let {success} = await this.fake_central_ptr_.simulateGATTDisconnection(this.address); if (success !== true) throw 'simulateGATTDisconnection failed.'; } // Simulates an Indication from the peripheral's GATT `Service Changed` // Characteristic from BT 4.2 Vol 3 Part G 7.1. This Indication is signaled // when services, characteristics, or descriptors are changed, added, or // removed. // // The value for `Service Changed` is a range of attribute handles that have // changed. However, this testing specification works at an abstracted // level and does not expose setting attribute handles when adding // attributes. Consequently, this simulate method should include the full // range of all the peripheral's attribute handle values. async simulateGATTServicesChanged() { let {success} = await this.fake_central_ptr_.simulateGATTServicesChanged(this.address); if (success !== true) throw 'simulateGATTServicesChanged failed.'; } } class FakeRemoteGATTService { constructor(service_id, peripheral_address, fake_central_ptr) { this.service_id_ = service_id; this.peripheral_address_ = peripheral_address; this.fake_central_ptr_ = fake_central_ptr; } // Adds a fake GATT Characteristic with |uuid| and |properties| // to this fake service. The characteristic will be found when discovering // the peripheral's GATT Attributes. Returns a FakeRemoteGATTCharacteristic // corresponding to the added characteristic. async addFakeCharacteristic({uuid, properties}) { let {characteristicId: characteristic_id} = await this.fake_central_ptr_.addFakeCharacteristic( {uuid: BluetoothUUID.getCharacteristic(uuid)}, ArrayToMojoCharacteristicProperties(properties), this.service_id_, this.peripheral_address_); if (characteristic_id === null) throw 'addFakeCharacteristic failed'; return new FakeRemoteGATTCharacteristic( characteristic_id, this.service_id_, this.peripheral_address_, this.fake_central_ptr_); } // Removes the fake GATT service from its fake peripheral. async remove() { let {success} = await this.fake_central_ptr_.removeFakeService( this.service_id_, this.peripheral_address_); if (!success) throw 'remove failed'; } } class FakeRemoteGATTCharacteristic { constructor(characteristic_id, service_id, peripheral_address, fake_central_ptr) { this.ids_ = [characteristic_id, service_id, peripheral_address]; this.descriptors_ = []; this.fake_central_ptr_ = fake_central_ptr; } // Adds a fake GATT Descriptor with |uuid| to be discovered when // discovering the peripheral's GATT Attributes. Returns a // FakeRemoteGATTDescriptor corresponding to this descriptor. |uuid| should // be a BluetoothDescriptorUUID // https://webbluetoothcg.github.io/web-bluetooth/#typedefdef-bluetoothdescriptoruuid async addFakeDescriptor({uuid}) { let {descriptorId: descriptor_id} = await this.fake_central_ptr_.addFakeDescriptor( {uuid: BluetoothUUID.getDescriptor(uuid)}, ...this.ids_); if (descriptor_id === null) throw 'addFakeDescriptor failed'; let fake_descriptor = new FakeRemoteGATTDescriptor( descriptor_id, ...this.ids_, this.fake_central_ptr_); this.descriptors_.push(fake_descriptor); return fake_descriptor; } // Sets the next read response for characteristic to |code| and |value|. // |code| could be a GATT Error Response from // BT 4.2 Vol 3 Part F 3.4.1.1 Error Response or a number outside that range // returned by specific platforms e.g. Android returns 0x101 to signal a GATT // failure. // https://developer.android.com/reference/android/bluetooth/BluetoothGatt.html#GATT_FAILURE async setNextReadResponse(gatt_code, value=null) { if (gatt_code === 0 && value === null) { throw '|value| can\'t be null if read should success.'; } if (gatt_code !== 0 && value !== null) { throw '|value| must be null if read should fail.'; } let {success} = await this.fake_central_ptr_.setNextReadCharacteristicResponse( gatt_code, value, ...this.ids_); if (!success) throw 'setNextReadCharacteristicResponse failed'; } // Sets the next write response for this characteristic to |code|. If // writing to a characteristic that only supports 'write_without_response' // the set response will be ignored. // |code| could be a GATT Error Response from // BT 4.2 Vol 3 Part F 3.4.1.1 Error Response or a number outside that range // returned by specific platforms e.g. Android returns 0x101 to signal a GATT // failure. async setNextWriteResponse(gatt_code) { let {success} = await this.fake_central_ptr_.setNextWriteCharacteristicResponse( gatt_code, ...this.ids_); if (!success) throw 'setNextWriteCharacteristicResponse failed'; } // Sets the next subscribe to notifications response for characteristic with // |characteristic_id| in |service_id| and in |peripheral_address| to // |code|. |code| could be a GATT Error Response from BT 4.2 Vol 3 Part F // 3.4.1.1 Error Response or a number outside that range returned by // specific platforms e.g. Android returns 0x101 to signal a GATT failure. async setNextSubscribeToNotificationsResponse(gatt_code) { let {success} = await this.fake_central_ptr_.setNextSubscribeToNotificationsResponse( gatt_code, ...this.ids_); if (!success) throw 'setNextSubscribeToNotificationsResponse failed'; } // Sets the next unsubscribe to notifications response for characteristic with // |characteristic_id| in |service_id| and in |peripheral_address| to // |code|. |code| could be a GATT Error Response from BT 4.2 Vol 3 Part F // 3.4.1.1 Error Response or a number outside that range returned by // specific platforms e.g. Android returns 0x101 to signal a GATT failure. async setNextUnsubscribeFromNotificationsResponse(gatt_code) { let {success} = await this.fake_central_ptr_.setNextUnsubscribeFromNotificationsResponse( gatt_code, ...this.ids_); if (!success) throw 'setNextUnsubscribeToNotificationsResponse failed'; } // Returns true if notifications from the characteristic have been subscribed // to. async isNotifying() { let {success, isNotifying} = await this.fake_central_ptr_.isNotifying(...this.ids_); if (!success) throw 'isNotifying failed'; return isNotifying; } // Gets the last successfully written value to the characteristic. // Returns null if no value has yet been written to the characteristic. async getLastWrittenValue() { let {success, value} = await this.fake_central_ptr_.getLastWrittenCharacteristicValue( ...this.ids_); if (!success) throw 'getLastWrittenCharacteristicValue failed'; return value; } // Removes the fake GATT Characteristic from its fake service. async remove() { let {success} = await this.fake_central_ptr_.removeFakeCharacteristic(...this.ids_); if (!success) throw 'remove failed'; } } class FakeRemoteGATTDescriptor { constructor(descriptor_id, characteristic_id, service_id, peripheral_address, fake_central_ptr) { this.ids_ = [ descriptor_id, characteristic_id, service_id, peripheral_address]; this.fake_central_ptr_ = fake_central_ptr; } // Sets the next read response for descriptor to |code| and |value|. // |code| could be a GATT Error Response from // BT 4.2 Vol 3 Part F 3.4.1.1 Error Response or a number outside that range // returned by specific platforms e.g. Android returns 0x101 to signal a GATT // failure. // https://developer.android.com/reference/android/bluetooth/BluetoothGatt.html#GATT_FAILURE async setNextReadResponse(gatt_code, value=null) { if (gatt_code === 0 && value === null) { throw '|value| cannot be null if read should succeed.'; } if (gatt_code !== 0 && value !== null) { throw '|value| must be null if read should fail.'; } let {success} = await this.fake_central_ptr_.setNextReadDescriptorResponse( gatt_code, value, ...this.ids_); if (!success) throw 'setNextReadDescriptorResponse failed'; } // Sets the next write response for this descriptor to |code|. // |code| could be a GATT Error Response from // BT 4.2 Vol 3 Part F 3.4.1.1 Error Response or a number outside that range // returned by specific platforms e.g. Android returns 0x101 to signal a GATT // failure. async setNextWriteResponse(gatt_code) { let {success} = await this.fake_central_ptr_.setNextWriteDescriptorResponse( gatt_code, ...this.ids_); if (!success) throw 'setNextWriteDescriptorResponse failed'; } // Gets the last successfully written value to the descriptor. // Returns null if no value has yet been written to the descriptor. async getLastWrittenValue() { let {success, value} = await this.fake_central_ptr_.getLastWrittenDescriptorValue( ...this.ids_); if (!success) throw 'getLastWrittenDescriptorValue failed'; return value; } // Removes the fake GATT Descriptor from its fake characteristic. async remove() { let {success} = await this.fake_central_ptr_.removeFakeDescriptor(...this.ids_); if (!success) throw 'remove failed'; } } // FakeChooser allows clients to simulate events that a user would trigger when // using the Bluetooth chooser, and monitor the events that are produced. class FakeChooser { constructor() { this.fake_bluetooth_chooser_ptr_ = new content.mojom.FakeBluetoothChooserPtr(); Mojo.bindInterface(content.mojom.FakeBluetoothChooser.name, mojo.makeRequest(this.fake_bluetooth_chooser_ptr_).handle, 'process'); } } // If this line fails, it means that current environment does not support the // Web Bluetooth Test API. try { navigator.bluetooth.test = new FakeBluetooth(); } catch { throw 'Web Bluetooth Test API is not implemented on this ' + 'environment. See the bluetooth README at ' + 'https://github.com/web-platform-tests/wpt/blob/master/bluetooth/README.md#web-bluetooth-testing'; }