-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathCall_Tests.swift
More file actions
811 lines (692 loc) · 27.3 KB
/
Call_Tests.swift
File metadata and controls
811 lines (692 loc) · 27.3 KB
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
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
//
// Copyright © 2026 Stream.io Inc. All rights reserved.
//
import Combine
@testable import StreamVideo
@preconcurrency import XCTest
@MainActor
final class Call_Tests: StreamVideoTestCase, @unchecked Sendable {
let callType = "default"
let callId = "123"
let callCid = "default:123"
let userId = "test"
let mockResponseBuilder = MockResponseBuilder()
// MARK: - UpdateState
func test_updateState_fromCallAcceptedEvent() {
// Given
let call = streamVideo?.call(callType: callType, callId: callId)
let callResponse = mockResponseBuilder.makeCallResponse(
cid: callCid,
acceptedBy: [userId: Date()]
)
let userResponse = mockResponseBuilder.makeUserResponse()
let event = CallAcceptedEvent(
call: callResponse,
callCid: callCid,
createdAt: Date(),
user: userResponse
)
// When
call?.state.updateState(from: .typeCallAcceptedEvent(event))
// Then
XCTAssert(call?.cId == callCid)
XCTAssert(call?.state.session?.acceptedBy[userId] != nil)
XCTAssert(call?.state.backstage == false)
XCTAssert(call?.state.egress?.broadcasting == false)
XCTAssert(call?.state.recordingState == .noRecording)
XCTAssert(call?.state.session != nil)
}
func test_updateState_fromCallRejectedEvent() {
// Given
let call = streamVideo?.call(callType: callType, callId: callId)
let callResponse = mockResponseBuilder.makeCallResponse(
cid: callCid,
rejectedBy: [userId: Date()]
)
let userResponse = mockResponseBuilder.makeUserResponse()
let event = CallRejectedEvent(
call: callResponse,
callCid: callCid,
createdAt: Date(),
user: userResponse
)
// When
call?.state.updateState(from: .typeCallRejectedEvent(event))
// Then
XCTAssert(call?.cId == callCid)
XCTAssert(call?.state.session?.rejectedBy[userId] != nil)
XCTAssert(call?.state.backstage == false)
XCTAssert(call?.state.egress?.broadcasting == false)
XCTAssert(call?.state.recordingState == .noRecording)
XCTAssert(call?.state.session != nil)
}
func test_updateState_fromCallUpdatedEvent() {
// Given
let call = streamVideo?.call(callType: callType, callId: callId)
let callResponse = mockResponseBuilder.makeCallResponse(
cid: callCid
)
let event = CallUpdatedEvent(
call: callResponse,
callCid: callCid,
capabilitiesByRole: [:],
createdAt: Date()
)
// When
call?.state.updateState(from: .typeCallUpdatedEvent(event))
// Then
XCTAssert(call?.cId == callCid)
XCTAssert(call?.state.backstage == false)
XCTAssert(call?.state.egress?.broadcasting == false)
XCTAssert(call?.state.recordingState == .noRecording)
XCTAssert(call?.state.session != nil)
}
func test_updateState_fromRecordingStartedEvent() {
// Given
let call = streamVideo?.call(callType: callType, callId: callId)
let event = CallRecordingStartedEvent(
callCid: callCid,
createdAt: Date(),
egressId: "123",
recordingType: .composite
)
// When
call?.state.updateState(from: .typeCallRecordingStartedEvent(event))
// Then
XCTAssert(call?.state.recordingState == .recording)
}
func test_updateState_fromRecordingStoppedEvent() {
// Given
let call = streamVideo?.call(callType: callType, callId: callId)
let event = CallRecordingStoppedEvent(
callCid: callCid,
createdAt: Date(),
egressId: "123",
recordingType: .composite
)
// When
call?.state.updateState(from: .typeCallRecordingStoppedEvent(event))
// Then
XCTAssert(call?.state.recordingState == .noRecording)
}
func test_updateState_fromPermissionsEvent() {
// Given
let videoConfig = VideoConfig.dummy()
let userResponse = mockResponseBuilder.makeUserResponse(id: "testuser")
let defaultAPI = DefaultAPI(
basePath: "https://example.com",
transport: URLSessionTransport(urlSession: URLSession.shared),
middlewares: [DefaultParams(apiKey: "key1")]
)
let callController = CallController_Mock(
defaultAPI: defaultAPI,
user: userResponse.toUser,
callId: callId,
callType: callType,
apiKey: "key1",
videoConfig: videoConfig,
initialCallSettings: .default,
cachedLocation: nil
)
let call = Call(
callType: callType,
callId: callId,
coordinatorClient: defaultAPI,
callController: callController
)
let event = UpdatedCallPermissionsEvent(
callCid: callCid,
createdAt: Date(),
ownCapabilities: [.sendAudio],
user: userResponse
)
// When
call.state.updateState(from: .typeUpdatedCallPermissionsEvent(event))
// Then
XCTAssert(call.currentUserHasCapability(.sendAudio) == true)
XCTAssert(call.currentUserHasCapability(.sendVideo) == false)
}
func test_updateState_fromPermissionsEvent_fromDifferentUser_doesNotUpdateOwnCapabilities() {
let streamVideo = StreamVideo.mock(httpClient: HTTPClient_Mock())
self.streamVideo = streamVideo
let call = streamVideo.call(callType: callType, callId: callId)
call.state.ownCapabilities = [.sendVideo]
let userResponse = mockResponseBuilder.makeUserResponse(id: "other-user")
let event = UpdatedCallPermissionsEvent(
callCid: callCid,
createdAt: Date(),
ownCapabilities: [.sendAudio],
user: userResponse
)
// When
call.state.updateState(from: .typeUpdatedCallPermissionsEvent(event))
// Then
XCTAssert(call.state.ownCapabilities == [.sendVideo])
}
func test_updateState_fromPermissionsEvent_usesInitialStreamVideoSessionUser() {
let streamVideo = StreamVideo.mock(httpClient: HTTPClient_Mock())
self.streamVideo = streamVideo
let call = streamVideo.call(callType: callType, callId: callId)
let initialUserId = streamVideo.state.user.id
let updatedUserId = "updated-user-id"
streamVideo.state.user = User(id: updatedUserId)
call.state.ownCapabilities = [.sendVideo]
let userResponse = mockResponseBuilder.makeUserResponse(id: initialUserId)
let event = UpdatedCallPermissionsEvent(
callCid: callCid,
createdAt: Date(),
ownCapabilities: [.sendAudio],
user: userResponse
)
// When
call.state.updateState(from: .typeUpdatedCallPermissionsEvent(event))
// Then
XCTAssertEqual(call.state.ownCapabilities, [.sendAudio])
}
func test_updateState_fromCallResponse_usesTokenForRtmpStreamKey() {
let streamVideo = StreamVideo.mock(
httpClient: HTTPClient_Mock(),
callController: CallController.dummy()
)
self.streamVideo = streamVideo
let call = streamVideo.call(callType: callType, callId: callId)
call.state.update(from: mockResponseBuilder.makeCallResponse(cid: callCid))
XCTAssertEqual(call.state.ingress?.rtmp.streamKey, streamVideo.token.rawValue)
}
func test_updateState_fromCallResponse_usesUpdatedSessionTokenForRtmpStreamKey() {
let tokenSubject = CurrentValueSubject<UserToken, Never>(
UserToken(rawValue: "initial-stream-session-token")
)
let streamSession = StreamVideo.CallSession(
user: .dummy(),
token: UserToken(rawValue: "initial-stream-session-token"),
tokenPublisher: tokenSubject.eraseToAnyPublisher()
)
let state = CallState(streamSession)
state.update(from: mockResponseBuilder.makeCallResponse(cid: callCid))
XCTAssertEqual(
state.ingress?.rtmp.streamKey,
"initial-stream-session-token"
)
tokenSubject.send(UserToken(rawValue: "refreshed-stream-session-token"))
state.update(from: mockResponseBuilder.makeCallResponse(cid: callCid))
XCTAssertEqual(
state.ingress?.rtmp.streamKey,
"refreshed-stream-session-token"
)
}
func test_updateState_fromMemberAddedEvent() {
// Given
let call = streamVideo?.call(callType: callType, callId: callId)
let callResponse = mockResponseBuilder.makeCallResponse(
cid: callCid
)
let userId = "test"
let member = mockResponseBuilder.makeMemberResponse(id: userId)
let event = CallMemberAddedEvent(
call: callResponse,
callCid: callCid,
createdAt: Date(),
members: [member]
)
// When
call?.state.updateState(from: .typeCallMemberAddedEvent(event))
// Then
XCTAssert(call?.state.members.first?.id == userId)
}
func test_updateState_fromMemberRemovedEvent() {
// Given
let userId = "test"
let call = streamVideo?.call(callType: callType, callId: callId)
call?.state.members = [Member(user: .init(id: userId), updatedAt: Date())]
let callResponse = mockResponseBuilder.makeCallResponse(
cid: callCid
)
let event = CallMemberRemovedEvent(
call: callResponse,
callCid: callCid,
createdAt: Date(),
members: [userId]
)
// When
call?.state.updateState(from: .typeCallMemberRemovedEvent(event))
// Then
XCTAssert(call?.state.members.isEmpty == true)
}
func test_updateState_fromMemberUpdatedEvent() {
// Given
let userId = "test"
let call = streamVideo?.call(callType: callType, callId: callId)
let callResponse = mockResponseBuilder.makeCallResponse(
cid: callCid
)
call?.state.members = [Member(user: .init(id: userId), updatedAt: Date())]
let member = mockResponseBuilder.makeMemberResponse(id: userId)
member.user.name = "newname"
let event = CallMemberUpdatedEvent(
call: callResponse,
callCid: callCid,
createdAt: Date(),
members: [member]
)
// When
call?.state.updateState(from: .typeCallMemberUpdatedEvent(event))
// Then
XCTAssert(call?.state.members.first?.user.name == "newname")
}
// MARK: - Transcriptions
func test_updateState_fromTranscriptionStoppedEvent() async throws {
try await assertUpdateState(
with: [
.init(
event: .typeCallTranscriptionStoppedEvent(
CallTranscriptionStoppedEvent(callCid: callCid, createdAt: .init())
),
keyPath: \.state.transcribing,
expected: false
)
]
)
}
func test_updateState_fromTranscriptionStartedEvent() async throws {
try await assertUpdateState(
with: [
.init(
event: .typeCallTranscriptionStartedEvent(
CallTranscriptionStartedEvent(callCid: callCid, createdAt: .init())
),
keyPath: \.state.transcribing,
expected: true
)
]
)
}
func test_updateState_transcriptionStarted_fromTranscriptionFailedEvent() async throws {
try await assertUpdateState(
with: [
.init(
event: .typeCallTranscriptionStartedEvent(
CallTranscriptionStartedEvent(callCid: callCid, createdAt: .init())
),
keyPath: \.state.transcribing,
expected: true
),
.init(
event: .typeCallTranscriptionFailedEvent(
CallTranscriptionFailedEvent(callCid: callCid, createdAt: .init())
),
keyPath: \.state.transcribing,
expected: false
)
]
)
}
// MARK: - Duration
func test_call_duration() async throws {
// Given
let call = streamVideo?.call(callType: callType, callId: callId)
let startDate = Date()
let callResponse = mockResponseBuilder.makeCallResponse(
cid: callCid,
liveStartedAt: startDate
)
// When
call?.state.update(from: callResponse)
try await waitForCallEvent(nanoseconds: 1_500_000_000)
// Then
var duration = call?.state.duration ?? 0
XCTAssertTrue(Int(duration) >= 1)
XCTAssertEqual(startDate, call?.state.startedAt)
// When
let endCallResponse = mockResponseBuilder.makeCallResponse(
cid: callCid,
liveStartedAt: startDate,
liveEndedAt: Date()
)
call?.state.update(from: endCallResponse)
// Then
duration = call?.state.duration ?? 0
XCTAssertTrue(Int(duration) >= 1)
}
// MARK: - setIncomingVideoQualitySettings
func test_setIncomingVideoQualitySettings_updatesCallState() async throws {
let call = streamVideo?.call(callType: callType, callId: callId)
let incomingVideoQualitySettings = IncomingVideoQualitySettings.manual(
group: .custom(sessionIds: [.unique, .unique]),
targetSize: .init(
width: 11,
height: 10
)
)
await call?.setIncomingVideoQualitySettings(incomingVideoQualitySettings)
await fulfilmentInMainActor {
call?.state.incomingVideoQualitySettings == incomingVideoQualitySettings
}
}
// MARK: - setDisconnectionTimeout
func test_setDisconnectionTimeout_setDisconnectionTimeoutOnCallController() async throws {
let mockCallController = MockCallController()
let call = MockCall(.dummy(callController: mockCallController))
call.stub(for: \.state, with: .init(.dummy()))
call.setDisconnectionTimeout(11)
XCTAssertEqual(
mockCallController.recordedInputPayload(
TimeInterval.self,
for: .setDisconnectionTimeout
)?.first,
11
)
}
// MARK: - ClosedCaptions
func test_updateState_fromClosedCaptionsStoppedEvent() async throws {
try await assertUpdateState(
with: [
.init(
event: .typeCallClosedCaptionsStoppedEvent(
CallClosedCaptionsStoppedEvent(callCid: callCid, createdAt: .init())
),
keyPath: \.state.captioning,
expected: false
)
]
)
}
func test_updateState_fromClosedCaptionsStartedEvent() async throws {
try await assertUpdateState(
with: [
.init(
event: .typeCallClosedCaptionsStartedEvent(
CallClosedCaptionsStartedEvent(callCid: callCid, createdAt: .init())
),
keyPath: \.state.captioning,
expected: true
)
]
)
}
func test_updateState_closedCaptionsStarted_fromClosedCaptionsFailedEvent() async throws {
try await assertUpdateState(
with: [
.init(
event: .typeCallClosedCaptionsStartedEvent(
CallClosedCaptionsStartedEvent(callCid: callCid, createdAt: .init())
),
keyPath: \.state.captioning,
expected: true
),
.init(
event: .typeCallClosedCaptionsFailedEvent(
CallClosedCaptionsFailedEvent(callCid: callCid, createdAt: .init())
),
keyPath: \.state.captioning,
expected: false
)
]
)
}
func test_updateState_closedCaptionEventReceived() async throws {
let expected = CallClosedCaption(
endTime: .init(),
speakerId: .unique,
startTime: .init(),
text: .unique,
user: .dummy()
)
try await assertUpdateState(
with: [
.init(
event: .typeCallClosedCaptionsStartedEvent(
CallClosedCaptionsStartedEvent(callCid: callCid, createdAt: .init())
),
keyPath: \.state.captioning,
expected: true
),
.init(
event: .typeClosedCaptionEvent(
.init(
callCid: callCid,
closedCaption: expected,
createdAt: .init()
)
),
keyPath: \.state.closedCaptions,
onEventUpdate: true,
expected: [expected]
)
]
)
}
// MARK: - Recording
func test_coordinatorEventReceived_startedRecording_updatesStateCorrectly() async throws {
try await assertCoordinatorEventReceived(
.typeCallRecordingStartedEvent(
CallRecordingStartedEvent(
callCid: callCid,
createdAt: Date(),
egressId: "123",
recordingType: .composite
)
)
) { call in await fulfilmentInMainActor { call.state.recordingState == .recording } }
}
func test_coordinatorEventReceived_startedRecordingForAnotherCall_doesNotUpdateState() async throws {
try await assertCoordinatorEventReceived(
.typeCallRecordingStartedEvent(
CallRecordingStartedEvent(
callCid: .unique,
createdAt: Date(),
egressId: "123",
recordingType: .composite
)
)
) { @MainActor call in
await wait(for: 1)
XCTAssertEqual(call.state.recordingState, .noRecording)
}
}
// MARK: - join
func test_join_callControllerWasCalledOnlyOnce() async throws {
let mockCallController = MockCallController()
let call = MockCall(.dummy(callController: mockCallController))
call.stub(for: \.state, with: .init(.dummy()))
mockCallController.stub(for: .join, with: JoinCallResponse.dummy())
let executionExpectation = expectation(description: "Iteration expectation")
executionExpectation.expectedFulfillmentCount = 10
for _ in (0..<executionExpectation.expectedFulfillmentCount) {
Task {
do {
_ = try await call.join()
executionExpectation.fulfill()
} catch {
XCTFail()
}
}
}
await safeFulfillment(of: [executionExpectation], timeout: 2)
XCTAssertEqual(mockCallController.timesCalled(.join), 1)
}
func test_join_stateContainsJoinSource_joinSourceWasPassedToCallController() async throws {
let mockCallController = MockCallController()
let call = MockCall(.dummy(callController: mockCallController))
call.stub(for: \.state, with: .init(.dummy()))
mockCallController.stub(for: .join, with: JoinCallResponse.dummy())
let expectedJoinSource = JoinSource.callKit(.init {})
call.state.joinSource = expectedJoinSource
_ = try await call.join()
XCTAssertEqual(
mockCallController.recordedInputPayload(
(Bool, CallSettings?, CreateCallOptions?, Bool, Bool, JoinSource).self,
for: .join
)?.first?.5,
expectedJoinSource
)
}
func test_join_stateDoesNotJoinSource_joinSourceDefaultsToInAppAndWasPassedToCallController() async throws {
let mockCallController = MockCallController()
let call = MockCall(.dummy(callController: mockCallController))
call.stub(for: \.state, with: .init(.dummy()))
mockCallController.stub(for: .join, with: JoinCallResponse.dummy())
call.state.joinSource = nil
_ = try await call.join()
XCTAssertEqual(
mockCallController.recordedInputPayload(
(Bool, CallSettings?, CreateCallOptions?, Bool, Bool, JoinSource).self,
for: .join
)?.first?.5,
.inApp
)
}
// MARK: - updateParticipantsSorting
func test_call_customSorting() async throws {
// Given
let nameComparator: StreamSortComparator<CallParticipant> = {
comparison($0, $1, keyPath: \.name)
}
let call = streamVideo?.call(callType: callType, callId: callId)
call?.updateParticipantsSorting(with: [nameComparator])
// When
call?.state.participantsMap = [
"martin": .dummy(id: "martin", name: "Martin", isSpeaking: true),
"ilias": .dummy(id: "ilias", name: "Ilias", pin: PinInfo(isLocal: false, pinnedAt: Date())),
"alexey": .dummy(id: "alexey", name: "Alexey")
]
// Then
let participants = call?.state.participants
XCTAssertEqual(participants?[0].name, "Alexey")
XCTAssertEqual(participants?[1].name, "Ilias")
}
// MARK: - RTMP Broadcasting
func test_updateState_fromBroadcastStartedEvent() async throws {
// Given
let call = streamVideo?.call(callType: callType, callId: callId)
let event = CallRtmpBroadcastStartedEvent(callCid: callCid, createdAt: Date(), name: "test")
// When
call?.state.updateState(from: .typeCallRtmpBroadcastStartedEvent(event))
// Then
XCTAssert(call?.state.broadcasting == true)
}
func test_updateState_fromBroadcastStoppedEvent() async throws {
// Given
let call = streamVideo?.call(callType: callType, callId: callId)
let event = CallRtmpBroadcastStoppedEvent(callCid: callCid, createdAt: Date(), name: "test")
call?.state.broadcasting = true
// When
call?.state.updateState(from: .typeCallRtmpBroadcastStoppedEvent(event))
// Then
XCTAssert(call?.state.broadcasting == false)
}
func test_updateState_fromBroadcastFailedEvent() async throws {
// Given
let call = streamVideo?.call(callType: callType, callId: callId)
let event = CallRtmpBroadcastFailedEvent(callCid: callCid, createdAt: Date(), name: "test")
call?.state.broadcasting = true
// When
call?.state.updateState(from: .typeCallRtmpBroadcastFailedEvent(event))
// Then
XCTAssert(call?.state.broadcasting == false)
}
// MARK: - enableClientCapabilities
func test_enableClientCapabilities_correctlyUpdatesStateAdapter() async throws {
let mockCallController = MockCallController()
let call = MockCall(.dummy(callController: mockCallController))
call.stub(for: \.state, with: .init(.dummy()))
await call.enableClientCapabilities([.subscriberVideoPause])
XCTAssertEqual(
mockCallController.recordedInputPayload(
Set<ClientCapability>.self,
for: .enableClientCapabilities
)?.first,
[.subscriberVideoPause]
)
}
// MARK: - disableClientCapabilities
func test_disableClientCapabilities_correctlyUpdatesStateAdapter() async throws {
let mockCallController = MockCallController()
let call = MockCall(.dummy(callController: mockCallController))
call.stub(for: \.state, with: .init(.dummy()))
await call.disableClientCapabilities([.subscriberVideoPause])
XCTAssertEqual(
mockCallController.recordedInputPayload(
Set<ClientCapability>.self,
for: .disableClientCapabilities
)?.first,
[.subscriberVideoPause]
)
}
func test_kickUser_coordinatorWasCalledWithExpectedValues() async throws {
let mockCoordinatorClient = MockDefaultAPIEndpoints()
let call = Call(
from: .init(call: .dummy(), members: [], ownCapabilities: []),
coordinatorClient: mockCoordinatorClient,
callController: .dummy(defaultAPI: mockCoordinatorClient)
)
let userId = String.unique
_ = try? await call.kickUser(userId: userId)
let input = try XCTUnwrap(
mockCoordinatorClient
.recordedInputPayload(
(String, String, KickUserRequest).self,
for: .kickUser
)?.first
)
XCTAssertEqual(call.callType, input.0)
XCTAssertEqual(call.callId, input.1)
XCTAssertEqual(input.2.userId, userId)
}
// MARK: - setVideoFilter
func test_setVideoFilter_moderationVideoAdapterWasUpdated() async {
let mockCallController = MockCallController()
let call = MockCall(.dummy(callController: mockCallController))
call.stub(for: \.state, with: .init(.dummy()))
let mockVideoFilter = VideoFilter(id: .unique, name: .unique, filter: \.originalImage)
call.setVideoFilter(mockVideoFilter)
XCTAssertEqual(call.recordedInputPayload(VideoFilter.self, for: .setVideoFilter)?.first, mockVideoFilter)
}
// MARK: - Private helpers
private func assertUpdateState(
with steps: [UpdateStateStep],
file: StaticString = #filePath,
line: UInt = #line
) async throws {
let call = try XCTUnwrap(
streamVideo?.call(callType: callType, callId: callId),
file: file,
line: line
)
for step in steps {
if step.onEventUpdate {
await call.onEvent(.coordinatorEvent(step.event))
await fulfillment(timeout: 2) { step.validation(call) }
} else {
call.state.updateState(from: step.event)
}
XCTAssertTrue(step.validation(call), file: file, line: line)
}
}
private func assertCoordinatorEventReceived(
_ event: VideoEvent,
fulfillmentHandler: @MainActor (Call) async throws -> Void
) async throws {
let streamVideo = try XCTUnwrap(streamVideo)
let call = streamVideo.call(callType: callType, callId: callId)
streamVideo
.eventNotificationCenter
.process(.coordinatorEvent(event))
try await fulfillmentHandler(call)
}
}
private struct UpdateStateStep: Sendable {
var event: VideoEvent
var onEventUpdate: Bool
var validation: @Sendable (Call) -> Bool
init<V: Equatable & Sendable>(
event: VideoEvent,
keyPath: KeyPath<Call, V>,
onEventUpdate: Bool = false,
expected: V
) {
self.event = event
self.onEventUpdate = onEventUpdate
validation = { @Sendable in $0[keyPath: keyPath] == expected }
}
}