-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathSessionReplayTests.swift
More file actions
295 lines (243 loc) · 11.2 KB
/
Copy pathSessionReplayTests.swift
File metadata and controls
295 lines (243 loc) · 11.2 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
/*
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0.
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2019-Present Datadog, Inc.
*/
#if os(iOS)
import XCTest
import TestUtilities
@testable import DatadogInternal
@_spi(Internal)
@testable import DatadogSessionReplay
class SessionReplayTests: XCTestCase {
private var core: FeatureRegistrationCoreMock! // swiftlint:disable:this implicitly_unwrapped_optional
private var config: SessionReplay.Configuration! // swiftlint:disable:this implicitly_unwrapped_optional
override func setUpWithError() throws {
core = FeatureRegistrationCoreMock()
CoreRegistry.register(default: core)
config = SessionReplay.Configuration(replaySampleRate: 100)
}
override func tearDown() {
core = nil
config = nil
CoreRegistry.unregisterDefault()
XCTAssertEqual(FeatureRegistrationCoreMock.referenceCount, 0)
}
// MARK: - Initialization Tests
func testWhenEnabled_itRegistersSessionReplayFeature() {
// When
SessionReplay.enable(with: config, in: core)
// Then
XCTAssertNotNil(core.get(feature: SessionReplayFeature.self))
XCTAssertNotNil(core.get(feature: ResourcesFeature.self))
}
func testWhenEnabledInNOPCore_itPrintsError() {
let printFunction = PrintFunctionSpy()
consolePrint = printFunction.print
defer { consolePrint = { message, _ in print(message) } }
// When
SessionReplay.enable(with: config, in: NOPDatadogCore())
// Then
XCTAssertEqual(
printFunction.printedMessage,
"🔥 Datadog SDK usage error: Datadog SDK must be initialized before calling `SessionReplay.enable(with:)`."
)
}
func testWhenEnabledMultipleTimes_itPrintsError() {
let printFunction = PrintFunctionSpy()
consolePrint = printFunction.print
defer { consolePrint = { message, _ in print(message) } }
// When
SessionReplay.enable(with: config, in: core)
SessionReplay.enable(with: config, in: core)
// Then
XCTAssertEqual(
printFunction.printedMessage,
"🔥 Datadog SDK usage error: Session Replay is already enabled and does not support multiple instances. The existing instance will continue to be used."
)
}
// MARK: - Configuration Tests
func testWhenEnabledWithDefaultConfiguration() throws {
config = SessionReplay.Configuration(replaySampleRate: 42)
// When
SessionReplay.enable(with: config, in: core)
// Then
let sr = try XCTUnwrap(core.get(feature: SessionReplayFeature.self))
XCTAssertEqual(sr.recordingCoordinator.replaySampleRate, 42)
XCTAssertEqual(sr.recordingCoordinator.textAndInputPrivacy, .maskAll)
XCTAssertEqual(sr.recordingCoordinator.imagePrivacy, .maskAll)
XCTAssertEqual(sr.recordingCoordinator.touchPrivacy, .hide)
XCTAssertNil((sr.requestBuilder as? SegmentRequestBuilder)?.customUploadURL)
let r = try XCTUnwrap(core.get(feature: ResourcesFeature.self))
XCTAssertNil((r.requestBuilder as? ResourceRequestBuilder)?.customUploadURL)
}
func testWhenEnabledWithNewAPI() throws {
let textAndInputPrivacy: TextAndInputPrivacyLevel = .mockRandom()
let imagePrivacy: ImagePrivacyLevel = .mockRandom()
let touchPrivacy: TouchPrivacyLevel = .mockRandom()
config = SessionReplay.Configuration(
replaySampleRate: 42,
textAndInputPrivacyLevel: textAndInputPrivacy,
imagePrivacyLevel: imagePrivacy,
touchPrivacyLevel: touchPrivacy
)
// When
SessionReplay.enable(with: config, in: core)
// Then
let sr = try XCTUnwrap(core.get(feature: SessionReplayFeature.self))
XCTAssertEqual(sr.recordingCoordinator.replaySampleRate, 42)
XCTAssertEqual(sr.recordingCoordinator.textAndInputPrivacy, textAndInputPrivacy)
XCTAssertEqual(sr.recordingCoordinator.imagePrivacy, imagePrivacy)
XCTAssertEqual(sr.recordingCoordinator.touchPrivacy, touchPrivacy)
XCTAssertNil((sr.requestBuilder as? SegmentRequestBuilder)?.customUploadURL)
let r = try XCTUnwrap(core.get(feature: ResourcesFeature.self))
XCTAssertNil((r.requestBuilder as? ResourceRequestBuilder)?.customUploadURL)
}
func testWhenEnabledWithReplaySampleRate() throws {
let random: Float = .mockRandom(min: 0, max: 100)
config.replaySampleRate = random
// When
SessionReplay.enable(with: config, in: core)
// Then
let sr = try XCTUnwrap(core.get(feature: SessionReplayFeature.self))
XCTAssertEqual(sr.recordingCoordinator.replaySampleRate, random)
}
func testWhenEnabled_itUpdateCoreContext() throws {
let core = PassthroughCoreMock()
let random: SampleRate = .mockRandom(min: 0, max: 100)
let startRecordingImmediately: Bool = .mockRandom()
config.replaySampleRate = random
config.startRecordingImmediately = startRecordingImmediately
// When
SessionReplay.enable(with: config, in: core)
// Then
let config = try XCTUnwrap(core.context.additionalContext(ofType: SessionReplayCoreContext.Configuration.self))
XCTAssertEqual(config.sampleRate, random)
XCTAssertEqual(config.startRecordingManually, !startRecordingImmediately)
}
func testWhenEnabledWithCustomEndpoint() throws {
let random: URL = .mockRandom()
config.customEndpoint = random
// When
SessionReplay.enable(with: config, in: core)
// Then
let sr = try XCTUnwrap(core.get(feature: SessionReplayFeature.self))
XCTAssertEqual((sr.requestBuilder as? SegmentRequestBuilder)?.customUploadURL, random)
}
func testWhenEnabledWithDebugSDKArgument() throws {
// Given
config.replaySampleRate = .mockRandom(min: 0, max: 100)
config.debugSDK = true
// When
SessionReplay.enable(with: config, in: core)
// Then
let sr = try XCTUnwrap(core.get(feature: SessionReplayFeature.self))
XCTAssertEqual(sr.recordingCoordinator.replaySampleRate, 100)
}
func testWhenEnabledWithNoDebugSDKArgument() throws {
// Given
let random: Float = .mockRandom(min: 0, max: 100)
config.replaySampleRate = random
config.debugSDK = false
// When
SessionReplay.enable(with: config, in: core)
// Then
let sr = try XCTUnwrap(core.get(feature: SessionReplayFeature.self))
XCTAssertEqual(sr.recordingCoordinator.replaySampleRate, random)
}
@available(iOS 13.0, *)
func testWhenEnabledWithLayerTreeRecordingFeatureFlag_itUsesLayerTreeRecordingCoordinator() throws {
// Given
config.featureFlags[.layerTreeRecording] = true
// When
SessionReplay.enable(with: config, in: core)
// Then
let sessionReplay = try XCTUnwrap(core.get(feature: SessionReplayFeature.self))
XCTAssertTrue(sessionReplay.recordingCoordinator is LayerTreeRecordingCoordinator)
XCTAssertNotNil(core.get(feature: ResourcesFeature.self))
}
func testItDoesntStartFeatureWhenSamplingRateIsZero() throws {
// Given
config.replaySampleRate = 0
// When
SessionReplay.enable(with: config, in: core)
// Then
XCTAssertNil(core.get(feature: SessionReplayFeature.self))
XCTAssertNil(core.get(feature: ResourcesFeature.self))
}
// MARK: Telemetry
func testWhenEnabled_itSendsConfigurationTelemetry() throws {
// Given
let sampleRate: Int64 = .mockRandom(min: 0, max: 100)
let startRecordingImmediately: Bool = .mockRandom()
let textAndInputPrivacyLevel: TextAndInputPrivacyLevel = .mockRandom()
let imagePrivacyLevel: ImagePrivacyLevel = .mockRandom()
let touchPrivacyLevel: TouchPrivacyLevel = .mockRandom()
let telemetryReceiver = TelemetryReceiverMock()
let core = PassthroughCoreMock()
core.subscribe(receiver: telemetryReceiver)
// When
SessionReplay.enable(
with: SessionReplay.Configuration(
replaySampleRate: Float(sampleRate),
textAndInputPrivacyLevel: textAndInputPrivacyLevel,
imagePrivacyLevel: imagePrivacyLevel,
touchPrivacyLevel: touchPrivacyLevel,
startRecordingImmediately: startRecordingImmediately
),
in: core
)
// Then
let configuration = try XCTUnwrap(telemetryReceiver.messages.firstConfiguration())
XCTAssertEqual(configuration.sessionReplaySampleRate, sampleRate)
XCTAssertNil(configuration.defaultPrivacyLevel)
XCTAssertEqual(configuration.textAndInputPrivacyLevel, textAndInputPrivacyLevel.rawValue)
XCTAssertEqual(configuration.imagePrivacyLevel, imagePrivacyLevel.rawValue)
XCTAssertEqual(configuration.touchPrivacyLevel, touchPrivacyLevel.rawValue)
XCTAssertEqual(configuration.startRecordingImmediately, startRecordingImmediately)
}
func testWhenEnabled_itSendsConfigurationTelemetry_withNewApi() throws {
// Given
let sampleRate: Int64 = .mockRandom(min: 0, max: 100)
let textAndInputLevel: TextAndInputPrivacyLevel = .mockRandom()
let imageLevel: ImagePrivacyLevel = .mockRandom()
let touchLevel: TouchPrivacyLevel = .mockRandom()
let startRecordingImmediately: Bool = .mockRandom()
let telemetryReceiver = TelemetryReceiverMock()
let core = PassthroughCoreMock()
core.subscribe(receiver: telemetryReceiver)
// When
SessionReplay.enable(
with: SessionReplay.Configuration(
replaySampleRate: Float(sampleRate),
textAndInputPrivacyLevel: textAndInputLevel,
imagePrivacyLevel: imageLevel,
touchPrivacyLevel: touchLevel,
startRecordingImmediately: startRecordingImmediately
),
in: core
)
// Then
let configuration = try XCTUnwrap(telemetryReceiver.messages.firstConfiguration())
XCTAssertEqual(configuration.sessionReplaySampleRate, sampleRate)
XCTAssertNil(configuration.defaultPrivacyLevel)
XCTAssertEqual(configuration.textAndInputPrivacyLevel, textAndInputLevel.rawValue)
XCTAssertEqual(configuration.imagePrivacyLevel, imageLevel.rawValue)
XCTAssertEqual(configuration.touchPrivacyLevel, touchLevel.rawValue)
XCTAssertEqual(configuration.startRecordingImmediately, startRecordingImmediately)
}
// MARK: - Recording Tests
func testWhenStartInNOPCore_itPrintsError() {
let printFunction = PrintFunctionSpy()
consolePrint = printFunction.print
defer { consolePrint = { message, _ in print(message) } }
// When
SessionReplay.startRecording(in: NOPDatadogCore())
// Then
XCTAssertEqual(
printFunction.printedMessage,
"🔥 Datadog SDK usage error: Session Replay must be initialized before calling `SessionReplay.startRecording()`."
)
}
}
#endif