Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed scan filtering by name for API <21. #243

Merged
merged 3 commits into from
Jul 7, 2017
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,12 @@ public boolean matches(RxBleInternalScanResult scanResult) {
}

// Local name match.
if (mDeviceName != null && !mDeviceName.equals(scanRecord.getDeviceName())) {
return false;
if (mDeviceName != null) {
final boolean advertisedDeviceNameMatches = mDeviceName.equals(scanRecord.getDeviceName());
final boolean bluetoothDeviceNameMatches = mDeviceName.equals(device.getName());
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Small but pricy optimization. You can inline check from line 282 (and extract to a method) to avoid code execution when it's not required.

In this example the second check will be executed regardless the first one (even if deviceName matches).

if (!(advertisedDeviceNameMatches || bluetoothDeviceNameMatches)) {
return false;
}
}

// UUID match.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
package com.polidea.rxandroidble.scan

import android.bluetooth.BluetoothDevice
import com.polidea.rxandroidble.internal.scan.RxBleInternalScanResult
import spock.lang.Specification

class ScanFilterTest extends Specification {

RxBleInternalScanResult mockInternalScanResult = Mock RxBleInternalScanResult

BluetoothDevice mockBluetoothDevice = Mock BluetoothDevice

ScanRecord mockScanRecord = Mock ScanRecord

ScanFilter objectUnderTest

def setup() {
mockInternalScanResult.getBluetoothDevice() >> mockBluetoothDevice
mockInternalScanResult.getScanRecord() >> mockScanRecord
}

def "should match by device name if the name is present in ScanRecord"() {

given:
String name = "xxx"
givenScanRecordWith deviceName: name
objectUnderTest = new ScanFilter.Builder().setDeviceName(name).build()

expect:
objectUnderTest.matches(mockInternalScanResult)
}

def "should match by device name if the name is present in BluetoothDevice"() {

given:
String name = "xxx"
mockBluetoothDevice.getName() >> name
objectUnderTest = new ScanFilter.Builder().setDeviceName(name).build()

expect:
objectUnderTest.matches(mockInternalScanResult)
}

def "should not match by device name if the name is not present in BluetoothDevice nor ScanRecord"() {

given:
String name = "xxx"
objectUnderTest = new ScanFilter.Builder().setDeviceName(name).build()

expect:
!objectUnderTest.matches(mockInternalScanResult)
}

private void givenScanRecordWith(Map scanRecordMap) {
mockScanRecord.getDeviceName() >> (scanRecordMap['deviceName'] ?: null)
mockScanRecord.getServiceUuids() >> (scanRecordMap['serviceUuids'] ?: null)
mockScanRecord.getServiceData(_) >> (scanRecordMap['serviceData'] ?: null)
mockScanRecord.getManufacturerSpecificData(_) >> (scanRecordMap['manufacturerSpecificData'] ?: null)
}
}