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 all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Change Log
==========

Version 1.3.3-SNAPSHOT
* Fixed scan filtering by name on API <21 (https://github.com/Polidea/RxAndroidBle/pull/243)

Version 1.3.2
* Fixed completing the `Observable<byte[]>` emitted by `RxBleConnection.setupNotification()`/`RxBleConnection.setupIndication()` when unsubscribed (https://github.com/Polidea/RxAndroidBle/issues/231)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,10 @@ public boolean matches(RxBleInternalScanResult scanResult) {
}

// Local name match.
if (mDeviceName != null && !mDeviceName.equals(scanRecord.getDeviceName())) {
return false;
if (mDeviceName != null) {
if (!(mDeviceName.equals(scanRecord.getDeviceName()) || mDeviceName.equals(device.getName()))) {
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)
}
}