-
Notifications
You must be signed in to change notification settings - Fork 374
/
Copy pathCentralManagerTest+ScanForPeripherals.swift
143 lines (116 loc) · 7.16 KB
/
CentralManagerTest+ScanForPeripherals.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
import XCTest
import RxTest
import RxSwift
import CoreBluetooth
@testable
import RxBluetoothKit
class CentralManagerTest_ScanForPeripherals: BaseCentralManagerTest {
var testScheduler: TestScheduler!
var disposeBag: DisposeBag!
let subscribeTime = TestScheduler.Defaults.subscribed
func testErrorPropagationAtStart() {
for stateWithError in _BluetoothError.invalidStateErrors {
let observer = setUpScanForPeripherals(withServices: nil, options: nil)
let (state, error) = stateWithError
centralManagerMock.state = state
testScheduler.advanceTo(subscribeTime)
XCTAssertEqual(observer.events.count, 1, "should get error for state \(state)")
XCTAssertError(observer.events[0].value, error, "should get proper error \(error)")
}
}
func testErrorPropagationAtScanInProgress() {
let observer = setUpScanForPeripherals(withServices: nil, options: nil)
centralManagerMock.state = .poweredOn
self.manager.scanForPeripherals(withServices: nil, options: nil).subscribe().disposed(by: disposeBag)
testScheduler.advanceTo(subscribeTime)
XCTAssertEqual(observer.events.count, 1, "should get ongoing error event")
XCTAssertError(observer.events[0].value, _BluetoothError.scanInProgress, "should get proper ongoing error event")
}
func testProperScanMethodCall() {
let args1 = (
cbuuids: nil as [CBUUID]?,
options: nil as [String: Any]?
)
let args2 = (
cbuuids: [CBUUID(), CBUUID()],
options: ["key": "value"] as [String: Any]
)
_ = setUpScanForPeripherals(withServices: args1.cbuuids, options: args1.options)
centralManagerMock.state = .poweredOn
testScheduler.advanceTo(subscribeTime)
XCTAssertEqual(centralManagerMock.scanForPeripheralsParams.count, 1, "should call scan for peripherals")
XCTAssertNil(centralManagerMock.scanForPeripheralsParams[0].0, "should call with nil cbuuids")
XCTAssertNil(centralManagerMock.scanForPeripheralsParams[0].1, "should call with nil options")
_ = setUpScanForPeripherals(withServices: args2.cbuuids, options: args2.options)
centralManagerMock.state = .poweredOn
testScheduler.advanceTo(subscribeTime)
XCTAssertEqual(centralManagerMock.scanForPeripheralsParams.count, 1, "should call scan for peripherals")
XCTAssertEqual(centralManagerMock.scanForPeripheralsParams[0].0!, args2.cbuuids, "should call with correct cbuuids")
XCTAssertEqual(centralManagerMock.scanForPeripheralsParams[0].1!.count, args2.options.count, "should call with correct options")
}
typealias DiscoverResult = (CBPeripheralMock, [String: Any], NSNumber)
func testPeripheralDiscovered() {
let observer = setUpScanForPeripherals(withServices: nil, options: nil)
centralManagerMock.state = .poweredOn
let peripheralMocks = [CBPeripheralMock(), CBPeripheralMock(), CBPeripheralMock()]
providerMock.provideReturns = [
_Peripheral(manager: manager, peripheral: peripheralMocks[1], delegateWrapper: CBPeripheralDelegateWrapperMock()),
_Peripheral(manager: manager, peripheral: peripheralMocks[2], delegateWrapper: CBPeripheralDelegateWrapperMock())
]
let events: [Recorded<Event<DiscoverResult>>] = [
Recorded.next(subscribeTime - 100, (peripheralMocks[0], [:], 10)),
Recorded.next(subscribeTime + 100, (peripheralMocks[1], [CBAdvertisementDataLocalNameKey: "value1"], 20)),
Recorded.next(subscribeTime + 101, (peripheralMocks[2], [CBAdvertisementDataIsConnectable: true], 30)),
]
testScheduler.createHotObservable(events).subscribe(wrapperMock.didDiscoverPeripheral).disposed(by: disposeBag)
let expectedEvents: [Recorded<Event<_ScannedPeripheral>>] = [
Recorded.next(subscribeTime + 100, createScannedPeripheral(peripheralMocks[1], [CBAdvertisementDataLocalNameKey: "value1"], 20)),
Recorded.next(subscribeTime + 101, createScannedPeripheral(peripheralMocks[2], [CBAdvertisementDataIsConnectable: true], 20))
]
testScheduler.advanceTo(subscribeTime + 200)
XCTAssertEqual(observer.events.count, 2, "should receive 2 scan events")
for eventIndex in 0...(expectedEvents.count - 2) {
let element = observer.events[eventIndex].value.element!
let expected = expectedEvents[eventIndex].value.element!
XCTAssertEqual(element.rssi, expected.rssi, "should receive correct rssi for event index \(eventIndex)")
XCTAssertEqual(element.peripheral, expected.peripheral, "should receive correct peripheral for event index \(eventIndex)")
XCTAssertEqual(element.advertisementData.localName, expected.advertisementData.localName, "should receive correct advertisement data for event index \(eventIndex)")
XCTAssertEqual(element.advertisementData.isConnectable, expected.advertisementData.isConnectable, "should receive correct advertisement data for event index \(eventIndex)")
}
}
func testScanInProgress() {
let observer = setUpScanForPeripherals(withServices: nil, options: nil)
centralManagerMock.state = .poweredOn
XCTAssertFalse(manager.isScanInProgress)
let scanningDisposable = self.manager.scanForPeripherals(withServices: nil, options: nil)
.subscribe(onNext: { [weak self] _ in
guard let self = self else { return }
XCTAssertTrue(self.manager.isScanInProgress)
})
testScheduler.advanceTo(subscribeTime)
XCTAssertEqual(observer.events.count, 1, "should receive 1 scan event")
scanningDisposable.dispose()
XCTAssertFalse(manager.isScanInProgress)
}
// Mark: - Utilities
private func createScannedPeripheral(_ peripheral: CBPeripheralMock, _ advertisementData: [String: Any], _ rssi: NSNumber) -> _ScannedPeripheral {
return _ScannedPeripheral(
peripheral: _Peripheral(manager: manager, peripheral: peripheral, delegateWrapper: CBPeripheralDelegateWrapperMock()),
advertisementData: AdvertisementData(advertisementData: advertisementData),
rssi: rssi
)
}
private func setUpScanForPeripherals(withServices services: [CBUUID]?, options: [String: Any]?) -> ScheduledObservable<_ScannedPeripheral> {
setUpProperties()
providerMock.provideReturn = _Peripheral(manager: manager, peripheral: CBPeripheralMock(), delegateWrapper: CBPeripheralDelegateWrapperMock())
let peripheralsObserver: ScheduledObservable<_ScannedPeripheral> = testScheduler.scheduleObservable {
self.manager.scanForPeripherals(withServices: services, options: options).asObservable()
}
return peripheralsObserver
}
override func setUpProperties() {
super.setUpProperties()
testScheduler = TestScheduler(initialClock: 0, resolution: 1.0, simulateProcessingDelay: false)
disposeBag = DisposeBag()
}
}