@applicaster/zapp-react-native-utils 15.0.0-rc.93 → 15.0.0-rc.95
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/adsUtils/__tests__/createVMAP.test.ts +419 -0
- package/appDataUtils/__tests__/urlScheme.test.ts +678 -0
- package/appUtils/HooksManager/__tests__/__snapshots__/hooksManager.test.js.snap +0 -188
- package/appUtils/HooksManager/__tests__/hooksManager.test.js +16 -2
- package/cloudEventsUtils/__tests__/index.test.ts +529 -0
- package/cloudEventsUtils/index.ts +65 -1
- package/dateUtils/__tests__/dayjs.test.ts +330 -0
- package/enumUtils/__tests__/getEnumKeyByEnumValue.test.ts +207 -0
- package/errorUtils/__tests__/GeneralError.test.ts +97 -0
- package/errorUtils/__tests__/HttpStatusCode.test.ts +344 -0
- package/errorUtils/__tests__/MissingPluginError.test.ts +113 -0
- package/errorUtils/__tests__/NetworkError.test.ts +202 -0
- package/errorUtils/__tests__/getParsedResponse.test.ts +188 -0
- package/errorUtils/__tests__/invariant.test.ts +112 -0
- package/package.json +2 -2
|
@@ -0,0 +1,419 @@
|
|
|
1
|
+
import { createVMAP } from "../index";
|
|
2
|
+
|
|
3
|
+
describe("createVMAP", () => {
|
|
4
|
+
describe("basic functionality", () => {
|
|
5
|
+
it("should create VMAP XML with single ad", () => {
|
|
6
|
+
const ads = [
|
|
7
|
+
{
|
|
8
|
+
offset: 0,
|
|
9
|
+
ad_url: "https://example.com/ad1.xml",
|
|
10
|
+
},
|
|
11
|
+
];
|
|
12
|
+
|
|
13
|
+
const result = createVMAP(ads);
|
|
14
|
+
|
|
15
|
+
expect(result).toContain(
|
|
16
|
+
'<vmap:VMAP xmlns:vmap="http://www.iab.net/videosuite/vmap" version="1.0">'
|
|
17
|
+
);
|
|
18
|
+
|
|
19
|
+
expect(result).toContain("</vmap:VMAP>");
|
|
20
|
+
expect(result).toContain('timeOffset="00:00:00.000"');
|
|
21
|
+
expect(result).toContain("https://example.com/ad1.xml");
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
it("should create VMAP XML with multiple ads", () => {
|
|
25
|
+
const ads = [
|
|
26
|
+
{
|
|
27
|
+
offset: 0,
|
|
28
|
+
ad_url: "https://example.com/preroll.xml",
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
offset: 300,
|
|
32
|
+
ad_url: "https://example.com/midroll.xml",
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
offset: "postroll",
|
|
36
|
+
ad_url: "https://example.com/postroll.xml",
|
|
37
|
+
},
|
|
38
|
+
];
|
|
39
|
+
|
|
40
|
+
const result = createVMAP(ads);
|
|
41
|
+
|
|
42
|
+
expect(result).toContain('timeOffset="00:00:00.000"');
|
|
43
|
+
expect(result).toContain('timeOffset="00:05:00.000"');
|
|
44
|
+
expect(result).toContain('timeOffset="end"');
|
|
45
|
+
expect(result).toContain("https://example.com/preroll.xml");
|
|
46
|
+
expect(result).toContain("https://example.com/midroll.xml");
|
|
47
|
+
expect(result).toContain("https://example.com/postroll.xml");
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
it("should create empty VMAP with no ads", () => {
|
|
51
|
+
const ads: Array<{ [key: string]: any }> = [];
|
|
52
|
+
|
|
53
|
+
const result = createVMAP(ads);
|
|
54
|
+
|
|
55
|
+
expect(result).toBe(
|
|
56
|
+
'<vmap:VMAP xmlns:vmap="http://www.iab.net/videosuite/vmap" version="1.0">\n</vmap:VMAP>'
|
|
57
|
+
);
|
|
58
|
+
});
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
describe("time offset conversion", () => {
|
|
62
|
+
it("should convert 0 seconds to 00:00:00.000", () => {
|
|
63
|
+
const ads = [{ offset: 0, ad_url: "https://example.com/ad.xml" }];
|
|
64
|
+
const result = createVMAP(ads);
|
|
65
|
+
|
|
66
|
+
expect(result).toContain('timeOffset="00:00:00.000"');
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
it("should convert seconds to HH:MM:SS.000 format", () => {
|
|
70
|
+
const ads = [
|
|
71
|
+
{ offset: 60, ad_url: "https://example.com/ad.xml" }, // 1 minute
|
|
72
|
+
];
|
|
73
|
+
|
|
74
|
+
const result = createVMAP(ads);
|
|
75
|
+
|
|
76
|
+
expect(result).toContain('timeOffset="00:01:00.000"');
|
|
77
|
+
});
|
|
78
|
+
|
|
79
|
+
it("should convert minutes to HH:MM:SS.000 format", () => {
|
|
80
|
+
const ads = [
|
|
81
|
+
{ offset: 300, ad_url: "https://example.com/ad.xml" }, // 5 minutes
|
|
82
|
+
];
|
|
83
|
+
|
|
84
|
+
const result = createVMAP(ads);
|
|
85
|
+
|
|
86
|
+
expect(result).toContain('timeOffset="00:05:00.000"');
|
|
87
|
+
});
|
|
88
|
+
|
|
89
|
+
it("should convert hours to HH:MM:SS.000 format", () => {
|
|
90
|
+
const ads = [
|
|
91
|
+
{ offset: 3661, ad_url: "https://example.com/ad.xml" }, // 1:01:01
|
|
92
|
+
];
|
|
93
|
+
|
|
94
|
+
const result = createVMAP(ads);
|
|
95
|
+
|
|
96
|
+
expect(result).toContain('timeOffset="01:01:01.000"');
|
|
97
|
+
});
|
|
98
|
+
|
|
99
|
+
it("should handle large time offsets", () => {
|
|
100
|
+
const ads = [
|
|
101
|
+
{ offset: 36000, ad_url: "https://example.com/ad.xml" }, // 10 hours
|
|
102
|
+
];
|
|
103
|
+
|
|
104
|
+
const result = createVMAP(ads);
|
|
105
|
+
|
|
106
|
+
expect(result).toContain('timeOffset="10:00:00.000"');
|
|
107
|
+
});
|
|
108
|
+
|
|
109
|
+
it("should convert postroll string to end", () => {
|
|
110
|
+
const ads = [
|
|
111
|
+
{ offset: "postroll", ad_url: "https://example.com/ad.xml" },
|
|
112
|
+
];
|
|
113
|
+
|
|
114
|
+
const result = createVMAP(ads);
|
|
115
|
+
|
|
116
|
+
expect(result).toContain('timeOffset="end"');
|
|
117
|
+
});
|
|
118
|
+
|
|
119
|
+
it("should convert numeric string to HH:MM:SS.000", () => {
|
|
120
|
+
const ads = [
|
|
121
|
+
{ offset: "120", ad_url: "https://example.com/ad.xml" }, // 2 minutes
|
|
122
|
+
];
|
|
123
|
+
|
|
124
|
+
const result = createVMAP(ads);
|
|
125
|
+
|
|
126
|
+
expect(result).toContain('timeOffset="00:02:00.000"');
|
|
127
|
+
});
|
|
128
|
+
|
|
129
|
+
it("should keep non-numeric string as-is", () => {
|
|
130
|
+
const ads = [{ offset: "start", ad_url: "https://example.com/ad.xml" }];
|
|
131
|
+
|
|
132
|
+
const result = createVMAP(ads);
|
|
133
|
+
|
|
134
|
+
expect(result).toContain('timeOffset="start"');
|
|
135
|
+
});
|
|
136
|
+
|
|
137
|
+
it("should handle fractional seconds", () => {
|
|
138
|
+
const ads = [{ offset: "90.5", ad_url: "https://example.com/ad.xml" }];
|
|
139
|
+
|
|
140
|
+
const result = createVMAP(ads);
|
|
141
|
+
|
|
142
|
+
// parseFloat("90.5") = 90.5, seconds = 90.5 % 60 = 30.5
|
|
143
|
+
// Note: The toHHMMSS function doesn't floor seconds, so fractional seconds appear as-is
|
|
144
|
+
expect(result).toContain('timeOffset="00:01:30.5.000"');
|
|
145
|
+
});
|
|
146
|
+
|
|
147
|
+
it("should pad single digit hours, minutes, and seconds", () => {
|
|
148
|
+
const ads = [
|
|
149
|
+
{ offset: 3661, ad_url: "https://example.com/ad.xml" }, // 1:01:01
|
|
150
|
+
];
|
|
151
|
+
|
|
152
|
+
const result = createVMAP(ads);
|
|
153
|
+
|
|
154
|
+
expect(result).toContain('timeOffset="01:01:01.000"');
|
|
155
|
+
});
|
|
156
|
+
|
|
157
|
+
it("should handle offset 0 from various types", () => {
|
|
158
|
+
const testCases = [
|
|
159
|
+
{ offset: 0, expected: "00:00:00.000" },
|
|
160
|
+
{ offset: "0", expected: "00:00:00.000" },
|
|
161
|
+
// Note: null and undefined will cause errors when calling offset.toString()
|
|
162
|
+
// so they are not valid inputs for createVMAP
|
|
163
|
+
];
|
|
164
|
+
|
|
165
|
+
testCases.forEach(({ offset, expected }) => {
|
|
166
|
+
const ads = [{ offset, ad_url: "https://example.com/ad.xml" }];
|
|
167
|
+
const result = createVMAP(ads);
|
|
168
|
+
expect(result).toContain(`timeOffset="${expected}"`);
|
|
169
|
+
});
|
|
170
|
+
});
|
|
171
|
+
});
|
|
172
|
+
|
|
173
|
+
describe("XML structure", () => {
|
|
174
|
+
it("should include proper VMAP namespace", () => {
|
|
175
|
+
const ads = [{ offset: 0, ad_url: "https://example.com/ad.xml" }];
|
|
176
|
+
const result = createVMAP(ads);
|
|
177
|
+
|
|
178
|
+
expect(result).toContain(
|
|
179
|
+
'xmlns:vmap="http://www.iab.net/videosuite/vmap"'
|
|
180
|
+
);
|
|
181
|
+
|
|
182
|
+
expect(result).toContain('version="1.0"');
|
|
183
|
+
});
|
|
184
|
+
|
|
185
|
+
it("should create AdBreak with breakType linear", () => {
|
|
186
|
+
const ads = [{ offset: 0, ad_url: "https://example.com/ad.xml" }];
|
|
187
|
+
const result = createVMAP(ads);
|
|
188
|
+
|
|
189
|
+
expect(result).toContain('breakType="linear"');
|
|
190
|
+
});
|
|
191
|
+
|
|
192
|
+
it("should create AdBreak with unique breakId based on offset", () => {
|
|
193
|
+
const ads = [
|
|
194
|
+
{ offset: 0, ad_url: "https://example.com/ad1.xml" },
|
|
195
|
+
{ offset: 300, ad_url: "https://example.com/ad2.xml" },
|
|
196
|
+
];
|
|
197
|
+
|
|
198
|
+
const result = createVMAP(ads);
|
|
199
|
+
|
|
200
|
+
expect(result).toContain('breakId="break-0"');
|
|
201
|
+
expect(result).toContain('breakId="break-300"');
|
|
202
|
+
});
|
|
203
|
+
|
|
204
|
+
it("should create AdSource with proper attributes", () => {
|
|
205
|
+
const ads = [{ offset: 0, ad_url: "https://example.com/ad.xml" }];
|
|
206
|
+
const result = createVMAP(ads);
|
|
207
|
+
|
|
208
|
+
expect(result).toContain('allowMultipleAds="true"');
|
|
209
|
+
expect(result).toContain('followRedirects="true"');
|
|
210
|
+
});
|
|
211
|
+
|
|
212
|
+
it("should use VAST3 template type", () => {
|
|
213
|
+
const ads = [{ offset: 0, ad_url: "https://example.com/ad.xml" }];
|
|
214
|
+
const result = createVMAP(ads);
|
|
215
|
+
|
|
216
|
+
expect(result).toContain('templateType="vast3"');
|
|
217
|
+
});
|
|
218
|
+
|
|
219
|
+
it("should wrap URL in CDATA", () => {
|
|
220
|
+
const ads = [{ offset: 0, ad_url: "https://example.com/ad.xml" }];
|
|
221
|
+
const result = createVMAP(ads);
|
|
222
|
+
|
|
223
|
+
expect(result).toContain("<![CDATA[ https://example.com/ad.xml ]]>");
|
|
224
|
+
});
|
|
225
|
+
|
|
226
|
+
it("should create unique ad IDs based on offset", () => {
|
|
227
|
+
const ads = [
|
|
228
|
+
{ offset: 0, ad_url: "https://example.com/ad1.xml" },
|
|
229
|
+
{ offset: 100, ad_url: "https://example.com/ad2.xml" },
|
|
230
|
+
];
|
|
231
|
+
|
|
232
|
+
const result = createVMAP(ads);
|
|
233
|
+
|
|
234
|
+
expect(result).toContain('id="ad-0-ad-1"');
|
|
235
|
+
expect(result).toContain('id="ad-100-ad-1"');
|
|
236
|
+
});
|
|
237
|
+
});
|
|
238
|
+
|
|
239
|
+
describe("URL handling", () => {
|
|
240
|
+
it("should trim whitespace from URLs", () => {
|
|
241
|
+
const ads = [{ offset: 0, ad_url: " https://example.com/ad.xml " }];
|
|
242
|
+
|
|
243
|
+
const result = createVMAP(ads);
|
|
244
|
+
|
|
245
|
+
expect(result).toContain("<![CDATA[ https://example.com/ad.xml ]]>");
|
|
246
|
+
});
|
|
247
|
+
|
|
248
|
+
it("should handle URLs with query parameters", () => {
|
|
249
|
+
const ads = [
|
|
250
|
+
{
|
|
251
|
+
offset: 0,
|
|
252
|
+
ad_url: "https://example.com/ad.xml?param1=value1¶m2=value2",
|
|
253
|
+
},
|
|
254
|
+
];
|
|
255
|
+
|
|
256
|
+
const result = createVMAP(ads);
|
|
257
|
+
|
|
258
|
+
expect(result).toContain(
|
|
259
|
+
"https://example.com/ad.xml?param1=value1¶m2=value2"
|
|
260
|
+
);
|
|
261
|
+
});
|
|
262
|
+
|
|
263
|
+
it("should handle URLs with special characters", () => {
|
|
264
|
+
const ads = [
|
|
265
|
+
{
|
|
266
|
+
offset: 0,
|
|
267
|
+
ad_url: "https://example.com/ad.xml?url=https%3A%2F%2Ftest.com",
|
|
268
|
+
},
|
|
269
|
+
];
|
|
270
|
+
|
|
271
|
+
const result = createVMAP(ads);
|
|
272
|
+
|
|
273
|
+
expect(result).toContain(
|
|
274
|
+
"https://example.com/ad.xml?url=https%3A%2F%2Ftest.com"
|
|
275
|
+
);
|
|
276
|
+
});
|
|
277
|
+
|
|
278
|
+
it("should handle URLs with ampersands", () => {
|
|
279
|
+
const ads = [
|
|
280
|
+
{ offset: 0, ad_url: "https://example.com/ad.xml?a=1&b=2&c=3" },
|
|
281
|
+
];
|
|
282
|
+
|
|
283
|
+
const result = createVMAP(ads);
|
|
284
|
+
|
|
285
|
+
expect(result).toContain(
|
|
286
|
+
"<![CDATA[ https://example.com/ad.xml?a=1&b=2&c=3 ]]>"
|
|
287
|
+
);
|
|
288
|
+
});
|
|
289
|
+
});
|
|
290
|
+
|
|
291
|
+
describe("complex scenarios", () => {
|
|
292
|
+
it("should create VMAP with preroll, midroll, and postroll", () => {
|
|
293
|
+
const ads = [
|
|
294
|
+
{ offset: 0, ad_url: "https://example.com/preroll.xml" },
|
|
295
|
+
{ offset: 300, ad_url: "https://example.com/midroll1.xml" },
|
|
296
|
+
{ offset: 600, ad_url: "https://example.com/midroll2.xml" },
|
|
297
|
+
{ offset: "postroll", ad_url: "https://example.com/postroll.xml" },
|
|
298
|
+
];
|
|
299
|
+
|
|
300
|
+
const result = createVMAP(ads);
|
|
301
|
+
|
|
302
|
+
expect(result).toContain('timeOffset="00:00:00.000"');
|
|
303
|
+
expect(result).toContain('timeOffset="00:05:00.000"');
|
|
304
|
+
expect(result).toContain('timeOffset="00:10:00.000"');
|
|
305
|
+
expect(result).toContain('timeOffset="end"');
|
|
306
|
+
});
|
|
307
|
+
|
|
308
|
+
it("should handle ads in any order", () => {
|
|
309
|
+
const ads = [
|
|
310
|
+
{ offset: "postroll", ad_url: "https://example.com/postroll.xml" },
|
|
311
|
+
{ offset: 0, ad_url: "https://example.com/preroll.xml" },
|
|
312
|
+
{ offset: 300, ad_url: "https://example.com/midroll.xml" },
|
|
313
|
+
];
|
|
314
|
+
|
|
315
|
+
const result = createVMAP(ads);
|
|
316
|
+
|
|
317
|
+
// Should preserve order from input array
|
|
318
|
+
const postrollIndex = result.indexOf('timeOffset="end"');
|
|
319
|
+
const prerollIndex = result.indexOf('timeOffset="00:00:00.000"');
|
|
320
|
+
const midrollIndex = result.indexOf('timeOffset="00:05:00.000"');
|
|
321
|
+
|
|
322
|
+
expect(postrollIndex).toBeLessThan(prerollIndex);
|
|
323
|
+
expect(prerollIndex).toBeLessThan(midrollIndex);
|
|
324
|
+
});
|
|
325
|
+
|
|
326
|
+
it("should handle very long video with multiple ads", () => {
|
|
327
|
+
const ads = Array.from({ length: 10 }, (_, i) => ({
|
|
328
|
+
offset: i * 600, // Every 10 minutes
|
|
329
|
+
ad_url: `https://example.com/ad${i}.xml`,
|
|
330
|
+
}));
|
|
331
|
+
|
|
332
|
+
const result = createVMAP(ads);
|
|
333
|
+
|
|
334
|
+
expect(result).toContain('timeOffset="00:00:00.000"'); // 0 min
|
|
335
|
+
expect(result).toContain('timeOffset="00:10:00.000"'); // 10 min
|
|
336
|
+
expect(result).toContain('timeOffset="01:30:00.000"'); // 90 min
|
|
337
|
+
});
|
|
338
|
+
|
|
339
|
+
it("should create valid XML structure", () => {
|
|
340
|
+
const ads = [{ offset: 0, ad_url: "https://example.com/ad.xml" }];
|
|
341
|
+
|
|
342
|
+
const result = createVMAP(ads);
|
|
343
|
+
|
|
344
|
+
// Check for proper XML nesting
|
|
345
|
+
expect(result.split("<vmap:VMAP").length - 1).toBe(1);
|
|
346
|
+
expect(result.split("</vmap:VMAP>").length - 1).toBe(1);
|
|
347
|
+
expect(result.split("<vmap:AdBreak").length - 1).toBe(1);
|
|
348
|
+
expect(result.split("</vmap:AdBreak>").length - 1).toBe(1);
|
|
349
|
+
expect(result.split("<vmap:AdSource").length - 1).toBe(1);
|
|
350
|
+
expect(result.split("</vmap:AdSource>").length - 1).toBe(1);
|
|
351
|
+
});
|
|
352
|
+
});
|
|
353
|
+
|
|
354
|
+
describe("edge cases", () => {
|
|
355
|
+
it("should preserve negative offset in breakId and timeOffset", () => {
|
|
356
|
+
const ads = [{ offset: -100, ad_url: "https://example.com/ad.xml" }];
|
|
357
|
+
|
|
358
|
+
const result = createVMAP(ads);
|
|
359
|
+
|
|
360
|
+
expect(result).toContain('breakId="break--100"');
|
|
361
|
+
expect(result).toContain('timeOffset="-1:-2:-40.000"');
|
|
362
|
+
});
|
|
363
|
+
|
|
364
|
+
it("should handle very large offset", () => {
|
|
365
|
+
const ads = [{ offset: 999999, ad_url: "https://example.com/ad.xml" }];
|
|
366
|
+
|
|
367
|
+
const result = createVMAP(ads);
|
|
368
|
+
|
|
369
|
+
expect(result).toContain('timeOffset="277:46:39.000"');
|
|
370
|
+
});
|
|
371
|
+
|
|
372
|
+
it("should handle empty string offset", () => {
|
|
373
|
+
const ads = [{ offset: "", ad_url: "https://example.com/ad.xml" }];
|
|
374
|
+
|
|
375
|
+
const result = createVMAP(ads);
|
|
376
|
+
|
|
377
|
+
// Empty string is not a valid number, so it should be kept as-is or converted to 0
|
|
378
|
+
expect(result).toContain("timeOffset=");
|
|
379
|
+
});
|
|
380
|
+
|
|
381
|
+
it("should handle mixed offset types", () => {
|
|
382
|
+
const ads = [
|
|
383
|
+
{ offset: 0, ad_url: "https://example.com/ad1.xml" },
|
|
384
|
+
{ offset: "60", ad_url: "https://example.com/ad2.xml" },
|
|
385
|
+
{ offset: 120, ad_url: "https://example.com/ad3.xml" },
|
|
386
|
+
{ offset: "postroll", ad_url: "https://example.com/ad4.xml" },
|
|
387
|
+
];
|
|
388
|
+
|
|
389
|
+
const result = createVMAP(ads);
|
|
390
|
+
|
|
391
|
+
expect(result).toContain('timeOffset="00:00:00.000"');
|
|
392
|
+
expect(result).toContain('timeOffset="00:01:00.000"');
|
|
393
|
+
expect(result).toContain('timeOffset="00:02:00.000"');
|
|
394
|
+
expect(result).toContain('timeOffset="end"');
|
|
395
|
+
});
|
|
396
|
+
|
|
397
|
+
it("should handle ads with same offset", () => {
|
|
398
|
+
const ads = [
|
|
399
|
+
{ offset: 0, ad_url: "https://example.com/ad1.xml" },
|
|
400
|
+
{ offset: 0, ad_url: "https://example.com/ad2.xml" },
|
|
401
|
+
];
|
|
402
|
+
|
|
403
|
+
const result = createVMAP(ads);
|
|
404
|
+
|
|
405
|
+
// Both should have the same timeOffset but different ad IDs (though ID is also based on offset)
|
|
406
|
+
const matches = result.match(/timeOffset="00:00:00.000"/g);
|
|
407
|
+
expect(matches?.length).toBe(2);
|
|
408
|
+
});
|
|
409
|
+
|
|
410
|
+
it("should handle URL with newlines and tabs", () => {
|
|
411
|
+
const ads = [{ offset: 0, ad_url: "https://example.com/ad.xml\n\t" }];
|
|
412
|
+
|
|
413
|
+
const result = createVMAP(ads);
|
|
414
|
+
|
|
415
|
+
// trim() should remove the whitespace
|
|
416
|
+
expect(result).toContain("<![CDATA[ https://example.com/ad.xml ]]>");
|
|
417
|
+
});
|
|
418
|
+
});
|
|
419
|
+
});
|