-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmParticle_Rokt_SwiftTests.swift
More file actions
345 lines (285 loc) · 10.9 KB
/
mParticle_Rokt_SwiftTests.swift
File metadata and controls
345 lines (285 loc) · 10.9 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
//
// mParticle_Rokt_SwiftTests.swift
// mParticle_RoktTests
//
// Created by Brandon Stalnaker on 6/30/25.
// Copyright © 2025 mParticle. All rights reserved.
//
import Testing
import SwiftUI
@testable import mParticle_Rokt
import Rokt_Widget
import mParticle_Rokt_Swift
struct mParticle_Rokt_SwiftTests {
// MARK: - Initialization Tests
@MainActor @available(iOS 15, *)
@Test func testMPRoktLayoutBasicInitialization() {
// Given
let sdkTriggered = Binding.constant(false)
let locationName = "test_location"
let attributes: [String: String] = ["key1": "value1", "key2": "value2"]
// When
let layout = MPRoktLayout(
sdkTriggered: sdkTriggered,
locationName: locationName,
attributes: attributes
)
// Then
#expect(layout.roktLayout != nil, "Layout.roktLayout should not be nil")
}
@MainActor @available(iOS 15, *)
@Test func testMPRoktLayoutInitializationWithAllParameters() {
// Given
let sdkTriggered = Binding.constant(true)
let viewName = "test_view"
let locationName = "test_location"
let attributes: [String: String] = ["user_id": "12345", "sandbox": "true"]
let config = RoktConfig.Builder()
.colorMode(.light)
.build()
let onEvent: (RoktEvent) -> Void = { event in
}
// When
let layout = MPRoktLayout(
sdkTriggered: sdkTriggered,
viewName: viewName,
locationName: locationName,
attributes: attributes,
config: config,
onEvent: onEvent
)
// Then
#expect(layout.roktLayout != nil, "Layout.roktLayout should not be nil")
}
@MainActor @available(iOS 15, *)
@Test func testMPRoktLayoutInitializationWithEmptyAttributes() {
// Given
let sdkTriggered = Binding.constant(false)
let locationName = "empty_attributes_test"
let attributes: [String: String] = [:]
// When
let layout = MPRoktLayout(
sdkTriggered: sdkTriggered,
locationName: locationName,
attributes: attributes
)
// Then
#expect(layout.roktLayout != nil, "Layout should handle empty attributes")
}
@MainActor @available(iOS 15, *)
@Test func testMPRoktLayoutInitializationWithSandboxAttribute() {
// Given
let sdkTriggered = Binding.constant(false)
let locationName = "sandbox_test"
let attributes: [String: String] = ["sandbox": "true", "user_id": "test_user"]
// When
let layout = MPRoktLayout(
sdkTriggered: sdkTriggered,
locationName: locationName,
attributes: attributes
)
// Then
#expect(layout.roktLayout != nil, "Layout should handle sandbox attribute")
}
// MARK: - Attribute Preparation Tests
@available(iOS 15, *)
@Test func testAttributePreparationCalled() {
// Given
let attributes: [String: String] = ["original_key": "original_value"]
// When
let preparedAttributes = MPKitRokt.prepareAttributes(
attributes,
filteredUser: nil,
performMapping: true
)
// Then
#expect(preparedAttributes != nil, "Prepared attributes should not be nil")
#expect(preparedAttributes.count >= attributes.count, "Prepared attributes should contain at least the original attributes")
}
@available(iOS 15, *)
@Test func testAttributePreparationWithoutMapping() {
// Given
let attributes: [String: String] = ["test_key": "test_value"]
// When
let preparedAttributes = MPKitRokt.prepareAttributes(
attributes,
filteredUser: nil,
performMapping: false
)
// Then
#expect(preparedAttributes != nil, "Prepared attributes should not be nil")
#expect(preparedAttributes["sandbox"] != nil, "Sandbox attribute should be added automatically")
}
@available(iOS 15, *)
@Test func testAttributePreparationPreservesSandbox() {
// Given
let attributes: [String: String] = ["sandbox": "true", "custom_attr": "value"]
// When
let preparedAttributes = MPKitRokt.prepareAttributes(
attributes,
filteredUser: nil,
performMapping: false
)
// Then
#expect(preparedAttributes["sandbox"] == "true", "Sandbox attribute should be preserved")
#expect(preparedAttributes["custom_attr"] == nil, "Custom attributes should be preserved")
}
@available(iOS 15, *)
@Test func testAttributePreparationPerformMapping() {
// Given
let attributes: [String: String] = ["sandbox": "true", "custom_attr": "value"]
// When
let preparedAttributes = MPKitRokt.prepareAttributes(
attributes,
filteredUser: nil,
performMapping: true
)
// Then
#expect(preparedAttributes["sandbox"] == "true", "Sandbox attribute should be preserved")
#expect(preparedAttributes["custom_attr"] != nil, "Custom attributes should be preserved")
}
// MARK: - View Functionality Tests
@MainActor @available(iOS 15, *)
@Test func testMPRoktLayoutIsSwiftUIView() {
// Given
let sdkTriggered = Binding.constant(false)
let attributes: [String: String] = ["test": "value"]
// When
let layout = MPRoktLayout(
sdkTriggered: sdkTriggered,
locationName: "test",
attributes: attributes
)
// Then
#expect(layout.roktLayout is any View, "MPRoktLayout should conform to SwiftUI View protocol")
}
// MARK: - Parameter Validation Tests
@MainActor @available(iOS 15, *)
@Test func testMPRoktLayoutWithLongLocationName() {
// Given
let sdkTriggered = Binding.constant(false)
let longLocationName = String(repeating: "a", count: 1000)
let attributes: [String: String] = ["test": "value"]
// When
let layout = MPRoktLayout(
sdkTriggered: sdkTriggered,
locationName: longLocationName,
attributes: attributes
)
// Then
#expect(layout.roktLayout != nil, "Layout should handle long location names")
}
@MainActor @available(iOS 15, *)
@Test func testMPRoktLayoutWithSpecialCharacters() {
// Given
let sdkTriggered = Binding.constant(false)
let locationName = "test_location_with_特殊字符_🎉"
let attributes: [String: String] = [
"unicode_key_🌟": "unicode_value_🎯",
"special_chars": "!@#$%^&*()_+-=[]{}|;':\",./<>?"
]
// When
let layout = MPRoktLayout(
sdkTriggered: sdkTriggered,
locationName: locationName,
attributes: attributes
)
// Then
#expect(layout.roktLayout != nil, "Layout should handle special characters and unicode")
}
// MARK: - State Management Tests
@MainActor @available(iOS 15, *)
@Test func testMPRoktLayoutSDKTriggeredStateChange() {
// Given
let sdkTriggered = Binding.constant(false)
let attributes: [String: String] = ["test": "value"]
// When
let layout = MPRoktLayout(
sdkTriggered: sdkTriggered,
locationName: "state_test",
attributes: attributes
)
// Then
#expect(layout.roktLayout != nil, "Layout should be created with initial state")
// When state changes
sdkTriggered.wrappedValue = true
// Then
#expect(layout.roktLayout != nil, "Layout should handle state changes")
}
// MARK: - SelectPlacements Custom Event Tests
@available(iOS 15, *)
@Test func testPrepareAttributesLogsAttributesEvent() {
// Given
let attributes: [String: String] = ["attr1": "val1"]
// When
let preparedAttributes = MPKitRokt.prepareAttributes(
attributes,
filteredUser: nil,
performMapping: false
)
MPKitRokt.logSelectPlacementEvent(preparedAttributes)
// Then
#expect(preparedAttributes["sandbox"] != nil, "Sandbox attribute should be present")
#expect(preparedAttributes.count >= 1, "Prepared attributes should contain at least the sandbox attribute")
}
@available(iOS 15, *)
@Test func testLogSelectPlacementEventHandlesNilMParticleInstance() {
// Given
let attributes: [String: String] = ["key1": "value1"]
// When
MPKitRokt.logSelectPlacementEvent(attributes)
// Then
#expect(true, "logSelectPlacementEvent should handle MParticle instance state gracefully")
}
// MARK: - Integration Tests
@MainActor @available(iOS 15, *)
@Test func testMPRoktLayoutAttributeProcessingIntegration() {
// Given
let sdkTriggered = Binding.constant(false)
let attributes: [String: String] = [
"user_id": "12345",
"email": "test@example.com",
"custom_attribute": "custom_value"
]
// When
let layout = MPRoktLayout(
sdkTriggered: sdkTriggered,
viewName: "integration_test",
locationName: "test_location",
attributes: attributes
)
// Then
#expect(layout.roktLayout != nil, "Layout should attempt to identify user attributes and fail")
}
@MainActor @available(iOS 15, *)
@Test func testMPRoktLayoutWithComplexConfiguration() {
// Given
let sdkTriggered = Binding.constant(true)
let viewName = "complex_config_test"
let locationName = "complex_location"
let attributes: [String: String] = [
"user_type": "premium",
"campaign_id": "summer_2025",
"ab_test_group": "variant_a",
"sandbox": "false"
]
let config = RoktConfig.Builder()
.colorMode(.light)
.build()
var eventsReceived: [RoktEvent] = []
let onEvent: (RoktEvent) -> Void = { event in
eventsReceived.append(event)
}
// When
let layout = MPRoktLayout(
sdkTriggered: sdkTriggered,
viewName: viewName,
locationName: locationName,
attributes: attributes,
config: config,
onEvent: onEvent
)
// Then
#expect(layout.roktLayout != nil, "Layout should handle complex configurations")
}
}