-
Notifications
You must be signed in to change notification settings - Fork 389
/
Copy pathPacketTunnelActorTests.swift
475 lines (404 loc) · 19.6 KB
/
PacketTunnelActorTests.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
//
// PacketTunnelActorTests.swift
// PacketTunnelCoreTests
//
// Created by pronebird on 05/09/2023.
// Copyright © 2023 Mullvad VPN AB. All rights reserved.
//
import Combine
@testable import MullvadREST
@testable import MullvadSettings
import MullvadTypes
import Network
@testable import PacketTunnelCore
import WireGuardKitTypes
import XCTest
final class PacketTunnelActorTests: XCTestCase {
private var stateSink: Combine.Cancellable?
private let launchOptions = StartOptions(launchSource: .app)
override func tearDown() async throws {
stateSink?.cancel()
}
/**
Test a happy path start sequence.
As actor should transition through the following states: .initial → .connecting → .connected
*/
func testStartGoesToConnectedInSequence() async throws {
let actor = PacketTunnelActor.mock()
// As actor starts it should transition through the following states based on simulation:
// .initial → .connecting → .connected
let initialStateExpectation = expectation(description: "Expect initial state")
let connectingExpectation = expectation(description: "Expect connecting state")
let connectedStateExpectation = expectation(description: "Expect connected state")
let allExpectations = [initialStateExpectation, connectingExpectation, connectedStateExpectation]
stateSink = await actor.$observedState
.receive(on: DispatchQueue.main)
.sink { newState in
switch newState {
case .initial:
initialStateExpectation.fulfill()
case .connecting:
connectingExpectation.fulfill()
case .connected:
connectedStateExpectation.fulfill()
default:
break
}
}
actor.start(options: launchOptions)
await fulfillment(of: allExpectations, timeout: 1, enforceOrder: true)
}
func testStartIgnoresSubsequentStarts() async throws {
let actor = PacketTunnelActor.mock()
// As actor starts it should transition through the following states based on simulation:
// .initial → .connecting → .connected
let initialStateExpectation = expectation(description: "Expect initial state")
let connectingExpectation = expectation(description: "Expect connecting state")
let connectedStateExpectation = expectation(description: "Expect connected state")
let allExpectations = [initialStateExpectation, connectingExpectation, connectedStateExpectation]
stateSink = await actor.$observedState
.receive(on: DispatchQueue.main)
.sink { newState in
switch newState {
case .initial:
initialStateExpectation.fulfill()
case .connecting:
connectingExpectation.fulfill()
case .connected:
connectedStateExpectation.fulfill()
default:
break
}
}
actor.start(options: launchOptions)
actor.start(options: launchOptions)
await fulfillment(of: allExpectations, timeout: 1, enforceOrder: true)
}
/**
Each subsequent connection attempt should produce a single change to `state` containing the incremented attempt counter and new relay.
.connecting (attempt: 0) → .connecting (attempt: 1) → .connecting (attempt: 2) → ...
*/
func testConnectionAttemptTransition() async throws {
let tunnelMonitor = TunnelMonitorStub { _, _ in }
let actor = PacketTunnelActor.mock(tunnelMonitor: tunnelMonitor)
let connectingStateExpectation = expectation(description: "Expect connecting state")
connectingStateExpectation.expectedFulfillmentCount = 5
var nextAttemptCount: UInt = 0
stateSink = await actor.$observedState
.receive(on: DispatchQueue.main)
.sink { newState in
switch newState {
case .initial:
break
case let .connecting(connState):
XCTAssertEqual(connState.connectionAttemptCount, nextAttemptCount)
nextAttemptCount += 1
connectingStateExpectation.fulfill()
if nextAttemptCount < connectingStateExpectation.expectedFulfillmentCount {
tunnelMonitor.dispatch(.connectionLost, after: .milliseconds(10))
}
default:
XCTFail("Received invalid state: \(newState.name).")
}
}
actor.start(options: StartOptions(launchSource: .app))
await fulfillment(of: [connectingStateExpectation], timeout: 1)
}
func testPostQuantumReconnectionTransition() async throws {
let tunnelMonitor = TunnelMonitorStub { _, _ in }
let actor = PacketTunnelActor.mock(
tunnelMonitor: tunnelMonitor,
settingsReader: SettingsReaderStub.postQuantumConfiguration()
)
let negotiatingPostQuantumKeyStateExpectation = expectation(description: "Expect post quantum state")
negotiatingPostQuantumKeyStateExpectation.expectedFulfillmentCount = 5
var nextAttemptCount: UInt = 0
stateSink = await actor.$observedState
.receive(on: DispatchQueue.main)
.sink { newState in
switch newState {
case .initial:
break
case let .negotiatingPostQuantumKey(connState, _):
XCTAssertEqual(connState.connectionAttemptCount, nextAttemptCount)
nextAttemptCount += 1
negotiatingPostQuantumKeyStateExpectation.fulfill()
if nextAttemptCount < negotiatingPostQuantumKeyStateExpectation.expectedFulfillmentCount {
actor.reconnect(to: .random, reconnectReason: .connectionLoss)
}
default:
XCTFail("Received invalid state: \(newState.name).")
}
}
actor.start(options: StartOptions(launchSource: .app))
await fulfillment(of: [negotiatingPostQuantumKeyStateExpectation], timeout: 1)
}
/**
Each subsequent re-connection attempt should produce a single change to `state` containing the incremented attempt counter and new relay.
.reconnecting (attempt: 0) → .reconnecting (attempt: 1) → .reconnecting (attempt: 2) → ...
*/
func testReconnectionAttemptTransition() async throws {
let tunnelMonitor = TunnelMonitorStub { _, _ in }
let actor = PacketTunnelActor.mock(tunnelMonitor: tunnelMonitor)
let connectingStateExpectation = expectation(description: "Expect connecting state")
let connectedStateExpectation = expectation(description: "Expect connected state")
let reconnectingStateExpectation = expectation(description: "Expect reconnecting state")
reconnectingStateExpectation.expectedFulfillmentCount = 5
var nextAttemptCount: UInt = 0
stateSink = await actor.$observedState
.receive(on: DispatchQueue.main)
.sink { newState in
switch newState {
case .initial:
break
case .connecting:
connectingStateExpectation.fulfill()
tunnelMonitor.dispatch(.connectionEstablished, after: .milliseconds(10))
case .connected:
connectedStateExpectation.fulfill()
tunnelMonitor.dispatch(.connectionLost, after: .milliseconds(10))
case let .reconnecting(connState):
XCTAssertEqual(connState.connectionAttemptCount, nextAttemptCount)
nextAttemptCount += 1
reconnectingStateExpectation.fulfill()
if nextAttemptCount < reconnectingStateExpectation.expectedFulfillmentCount {
tunnelMonitor.dispatch(.connectionLost, after: .milliseconds(10))
}
default:
XCTFail("Received invalid state: \(newState.name).")
}
}
actor.start(options: StartOptions(launchSource: .app))
await fulfillment(
of: [connectingStateExpectation, connectedStateExpectation, reconnectingStateExpectation],
timeout: 1,
enforceOrder: true
)
}
/**
Test start sequence when reading settings yields an error indicating that device is locked.
This is common when network extenesion starts on boot with iOS.
1. The first attempt to read settings yields an error indicating that device is locked.
2. An actor should set up a task to reconnect the tunnel periodically.
3. The issue goes away on the second attempt to read settings.
4. An actor should transition through `.connecting` towards`.connected` state.
*/
func testLockedDeviceErrorOnBoot() async throws {
let initialStateExpectation = expectation(description: "Expect initial state")
let errorStateExpectation = expectation(description: "Expect error state")
let connectingStateExpectation = expectation(description: "Expect connecting state")
let connectedStateExpectation = expectation(description: "Expect connected state")
let allExpectations = [
initialStateExpectation,
errorStateExpectation,
connectingStateExpectation,
connectedStateExpectation,
]
let blockedStateMapper = BlockedStateErrorMapperStub { error in
if let error = error as? POSIXError, error.code == .EPERM {
return .deviceLocked
} else {
return .unknown
}
}
var isFirstReadAttempt = true
let privateKey = PrivateKey()
let settingsReader = SettingsReaderStub {
if isFirstReadAttempt {
isFirstReadAttempt = false
throw POSIXError(.EPERM)
} else {
return Settings(
privateKey: privateKey,
interfaceAddresses: [IPAddressRange(from: "127.0.0.1/32")!],
relayConstraints: RelayConstraints(),
dnsServers: .gateway,
obfuscation: WireGuardObfuscationSettings(state: .off, port: .automatic),
quantumResistance: .automatic,
multihopState: .off
)
}
}
let actor = PacketTunnelActor.mock(blockedStateErrorMapper: blockedStateMapper, settingsReader: settingsReader)
stateSink = await actor.$observedState.receive(on: DispatchQueue.main).sink { newState in
switch newState {
case .initial:
initialStateExpectation.fulfill()
case .error:
errorStateExpectation.fulfill()
case .connecting:
connectingStateExpectation.fulfill()
case .connected:
connectedStateExpectation.fulfill()
default:
break
}
}
actor.start(options: launchOptions)
await fulfillment(of: allExpectations, timeout: 1, enforceOrder: true)
}
func testStopGoesToDisconnected() async throws {
let actor = PacketTunnelActor.mock()
let disconnectedStateExpectation = expectation(description: "Expect disconnected state")
let connectedStateExpectation = expectation(description: "Expect connected state")
let expression: (ObservedState) -> Bool = { if case .connected = $0 { true } else { false } }
await expect(expression, on: actor) {
connectedStateExpectation.fulfill()
}
// Wait for the connected state to happen so it doesn't get coalesced immediately after the call to `actor.stop`
actor.start(options: launchOptions)
await fulfillment(of: [connectedStateExpectation], timeout: 1)
await expect(.disconnected, on: actor) {
disconnectedStateExpectation.fulfill()
}
actor.stop()
await fulfillment(of: [disconnectedStateExpectation], timeout: 1)
}
func testStopIsNoopBeforeStart() async throws {
let actor = PacketTunnelActor.mock()
let disconnectedExpectation = expectation(description: "Disconnected state")
disconnectedExpectation.isInverted = true
await expect(.disconnected, on: actor) {
disconnectedExpectation.fulfill()
}
actor.stop()
actor.stop()
actor.stop()
await fulfillment(of: [disconnectedExpectation], timeout: Duration.milliseconds(100).timeInterval)
}
func testStopCancelsDefaultPathObserver() async throws {
let pathObserver = DefaultPathObserverFake()
let actor = PacketTunnelActor.mock(defaultPathObserver: pathObserver)
let connectedStateExpectation = expectation(description: "Connected state")
let didStopObserverExpectation = expectation(description: "Did stop path observer")
didStopObserverExpectation.expectedFulfillmentCount = 2
pathObserver.onStop = { didStopObserverExpectation.fulfill() }
let expression: (ObservedState) -> Bool = { if case .connected = $0 { true } else { false } }
await expect(expression, on: actor) {
connectedStateExpectation.fulfill()
}
actor.start(options: launchOptions)
await fulfillment(of: [connectedStateExpectation], timeout: 1)
let disconnectedStateExpectation = expectation(description: "Disconnected state")
await expect(.disconnected, on: actor) {
disconnectedStateExpectation.fulfill()
}
actor.stop()
await fulfillment(of: [disconnectedStateExpectation, didStopObserverExpectation], timeout: 1)
}
func testCannotEnterErrorStateWhenStopping() async throws {
let actor = PacketTunnelActor.mock()
let connectingStateExpectation = expectation(description: "Connecting state")
let disconnectedStateExpectation = expectation(description: "Disconnected state")
let errorStateExpectation = expectation(description: "Should not enter error state")
errorStateExpectation.isInverted = true
/// Because of how commands are processed by the actor's `CommandChannel`
/// `start` and `stop` cannot be chained together, otherwise there is a risk that the `start` command
/// gets coalesced by the `stop` command, and leaves the actor in its `.initial` state.
/// Guarantee here that the actor reaches the `.connecting` state before moving on.
let expression: (ObservedState) -> Bool = { if case .connecting = $0 { true } else { false } }
await expect(expression, on: actor) {
connectingStateExpectation.fulfill()
}
actor.start(options: launchOptions)
await fulfillment(of: [connectingStateExpectation], timeout: 1)
stateSink = await actor.$observedState
.receive(on: DispatchQueue.main)
.sink { newState in
switch newState {
case .error:
errorStateExpectation.fulfill()
case .disconnected:
disconnectedStateExpectation.fulfill()
default:
break
}
}
actor.stop()
actor.setErrorState(reason: .readSettings)
await fulfillment(of: [disconnectedStateExpectation], timeout: 1)
await fulfillment(of: [errorStateExpectation], timeout: Duration.milliseconds(100).timeInterval)
}
func testReconnectIsNoopBeforeConnecting() async throws {
let actor = PacketTunnelActor.mock()
let reconnectingStateExpectation = expectation(description: "Expect initial state")
reconnectingStateExpectation.isInverted = true
let expression: (ObservedState) -> Bool = { if case .reconnecting = $0 { true } else { false } }
await expect(expression, on: actor) {
reconnectingStateExpectation.fulfill()
}
actor.reconnect(to: .random, reconnectReason: .userInitiated)
await fulfillment(
of: [reconnectingStateExpectation],
timeout: Duration.milliseconds(100).timeInterval
)
}
func testCannotReconnectAfterStopping() async throws {
let actor = PacketTunnelActor.mock()
let connectedStateExpectation = expectation(description: "Expect connected state")
let connectedState: (ObservedState) -> Bool = { if case .connected = $0 { true } else { false } }
await expect(connectedState, on: actor) {
connectedStateExpectation.fulfill()
}
actor.start(options: launchOptions)
// Wait for the connected state to happen so it doesn't get coalesced immediately after the call to `actor.stop`
await fulfillment(of: [connectedStateExpectation], timeout: 1)
let disconnectedStateExpectation = expectation(description: "Expect disconnected state")
await expect(.disconnected, on: actor) { disconnectedStateExpectation.fulfill() }
actor.stop()
await fulfillment(of: [disconnectedStateExpectation], timeout: 1)
let reconnectingStateExpectation = expectation(description: "Expect reconnecting state")
reconnectingStateExpectation.isInverted = true
let reconnectingState: (ObservedState) -> Bool = { if case .reconnecting = $0 { true } else { false } }
await expect(reconnectingState, on: actor) { reconnectingStateExpectation.fulfill() }
actor.reconnect(to: .random, reconnectReason: .userInitiated)
await fulfillment(
of: [reconnectingStateExpectation],
timeout: Duration.milliseconds(100).timeInterval
)
}
func testReconnectionStopsTunnelMonitor() async throws {
let stopMonitorExpectation = expectation(description: "Tunnel monitor stop")
let tunnelMonitor = TunnelMonitorStub { command, dispatcher in
switch command {
case .start:
dispatcher.send(.connectionEstablished, after: .milliseconds(10))
case .stop:
stopMonitorExpectation.fulfill()
}
}
let actor = PacketTunnelActor.mock(tunnelMonitor: tunnelMonitor)
let connectedExpectation = expectation(description: "Expect connected state")
let expression: (ObservedState) -> Bool = { if case .connected = $0 { return true } else { return false } }
await expect(expression, on: actor) {
connectedExpectation.fulfill()
}
actor.start(options: launchOptions)
await fulfillment(of: [connectedExpectation], timeout: 1)
// Cancel the state sink to avoid overfulfilling the connected expectation
stateSink?.cancel()
actor.reconnect(to: .random, reconnectReason: .userInitiated)
await fulfillment(of: [stopMonitorExpectation], timeout: 1)
}
}
extension PacketTunnelActorTests {
func expect(_ state: ObservedState, on actor: PacketTunnelActor, _ action: @escaping () -> Void) async {
stateSink = await actor.$observedState.receive(on: DispatchQueue.main).sink { newState in
if state == newState {
action()
}
}
}
func expect(
_ expression: @escaping (ObservedState) -> Bool,
on actor: PacketTunnelActor,
_ action: @escaping () -> Void
) async {
stateSink = await actor.$observedState.receive(on: DispatchQueue.main).sink { newState in
if expression(newState) {
action()
}
}
}
}
// swiftlint:disable:this file_length