@capillarytech/creatives-library 8.0.330-alpha.0 → 8.0.331-alpha.0
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/constants/unified.js +0 -18
- package/package.json +1 -1
- package/services/tests/api.test.js +0 -13
- package/utils/commonUtils.js +1 -19
- package/v2Components/CapTagList/index.js +0 -10
- package/v2Components/CommonTestAndPreview/CustomValuesEditor.js +49 -70
- package/v2Components/CommonTestAndPreview/DeliverySettings/DeliverySettings.scss +2 -8
- package/v2Components/CommonTestAndPreview/DeliverySettings/ModifyDeliverySettings.js +21 -207
- package/v2Components/CommonTestAndPreview/DeliverySettings/constants.js +0 -16
- package/v2Components/CommonTestAndPreview/DeliverySettings/index.js +10 -85
- package/v2Components/CommonTestAndPreview/DeliverySettings/messages.js +0 -30
- package/v2Components/CommonTestAndPreview/DeliverySettings/utils/parseSenderDetailsResponse.js +11 -79
- package/v2Components/CommonTestAndPreview/ExistingCustomerModal.js +1 -0
- package/v2Components/CommonTestAndPreview/SendTestMessage.js +5 -10
- package/v2Components/CommonTestAndPreview/UnifiedPreview/_unifiedPreview.scss +1 -20
- package/v2Components/CommonTestAndPreview/UnifiedPreview/index.js +4 -133
- package/v2Components/CommonTestAndPreview/_commonTestAndPreview.scss +0 -11
- package/v2Components/CommonTestAndPreview/constants.js +2 -38
- package/v2Components/CommonTestAndPreview/index.js +176 -672
- package/v2Components/CommonTestAndPreview/messages.js +3 -41
- package/v2Components/CommonTestAndPreview/reducer.js +3 -1
- package/v2Components/CommonTestAndPreview/sagas.js +8 -16
- package/v2Components/CommonTestAndPreview/tests/CustomValuesEditor.test.js +284 -308
- package/v2Components/CommonTestAndPreview/tests/DeliverySettings/ModifyDeliverySettings.test.js +65 -231
- package/v2Components/CommonTestAndPreview/tests/DeliverySettings/index.test.js +5 -118
- package/v2Components/CommonTestAndPreview/tests/DeliverySettings/utils/parseSenderDetailsResponse.test.js +0 -341
- package/v2Components/CommonTestAndPreview/tests/SendTestMessage.test.js +13 -34
- package/v2Components/CommonTestAndPreview/tests/UnifiedPreview/index.test.js +1 -199
- package/v2Components/CommonTestAndPreview/tests/index.test.js +4 -132
- package/v2Components/CommonTestAndPreview/tests/sagas.test.js +2 -2
- package/v2Components/FormBuilder/index.js +1 -7
- package/v2Components/TestAndPreviewSlidebox/index.js +1 -13
- package/v2Components/TestAndPreviewSlidebox/sagas.js +4 -11
- package/v2Components/TestAndPreviewSlidebox/tests/saga.test.js +1 -3
- package/v2Containers/CreativesContainer/SlideBoxContent.js +4 -36
- package/v2Containers/CreativesContainer/SlideBoxFooter.js +1 -10
- package/v2Containers/CreativesContainer/SlideBoxHeader.js +4 -29
- package/v2Containers/CreativesContainer/constants.js +0 -9
- package/v2Containers/CreativesContainer/index.js +93 -292
- package/v2Containers/CreativesContainer/index.scss +1 -51
- package/v2Containers/CreativesContainer/tests/SlideBoxFooter.test.js +34 -78
- package/v2Containers/CreativesContainer/tests/SlideBoxHeader.test.js +16 -79
- package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxContent.test.js.snap +0 -8
- package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxHeader.test.js.snap +98 -357
- package/v2Containers/CreativesContainer/tests/__snapshots__/index.test.js.snap +10 -20
- package/v2Containers/CreativesContainer/tests/index.test.js +9 -71
- package/v2Containers/Rcs/constants.js +3 -40
- package/v2Containers/Rcs/index.js +895 -1145
- package/v2Containers/Rcs/index.scss +6 -85
- package/v2Containers/Rcs/messages.js +2 -12
- package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +1432 -40783
- package/v2Containers/Rcs/tests/__snapshots__/utils.test.js.snap +5 -0
- package/v2Containers/Rcs/tests/index.test.js +38 -41
- package/v2Containers/Rcs/tests/mockData.js +0 -38
- package/v2Containers/Rcs/tests/utils.test.js +1 -435
- package/v2Containers/Rcs/utils.js +10 -405
- package/v2Containers/Sms/Create/index.js +38 -100
- package/v2Containers/SmsTrai/Create/index.js +4 -9
- package/v2Containers/SmsTrai/Edit/constants.js +0 -2
- package/v2Containers/SmsTrai/Edit/index.js +128 -636
- package/v2Containers/SmsTrai/Edit/messages.js +4 -14
- package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +2296 -4249
- package/v2Containers/SmsWrapper/index.js +8 -37
- package/v2Containers/TagList/index.js +11 -21
- package/v2Containers/Templates/_templates.scss +2 -63
- package/v2Containers/Templates/actions.js +0 -11
- package/v2Containers/Templates/constants.js +0 -2
- package/v2Containers/Templates/index.js +40 -90
- package/v2Containers/Templates/sagas.js +12 -57
- package/v2Containers/Templates/tests/__snapshots__/index.test.js.snap +1079 -1043
- package/v2Containers/Templates/tests/sagas.test.js +123 -193
- package/v2Containers/TemplatesV2/TemplatesV2.style.js +1 -72
- package/v2Containers/TemplatesV2/index.js +23 -86
- package/v2Containers/WebPush/Create/index.js +1 -1
- package/v2Containers/Whatsapp/index.js +20 -3
- package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +34 -578
- package/utils/templateVarUtils.js +0 -201
- package/utils/tests/templateVarUtils.test.js +0 -204
- package/v2Components/CommonTestAndPreview/previewApiUtils.js +0 -59
- package/v2Components/CommonTestAndPreview/tests/previewApiUtils.test.js +0 -67
- package/v2Components/SmsFallback/SmsFallbackLocalSelector.js +0 -87
- package/v2Components/SmsFallback/constants.js +0 -73
- package/v2Components/SmsFallback/index.js +0 -955
- package/v2Components/SmsFallback/index.scss +0 -265
- package/v2Components/SmsFallback/messages.js +0 -78
- package/v2Components/SmsFallback/smsFallbackUtils.js +0 -118
- package/v2Components/SmsFallback/tests/SmsFallbackLocalSelector.test.js +0 -50
- package/v2Components/SmsFallback/tests/rcsSmsFallback.acceptance.test.js +0 -147
- package/v2Components/SmsFallback/tests/smsFallbackHandlers.test.js +0 -304
- package/v2Components/SmsFallback/tests/smsFallbackUi.test.js +0 -197
- package/v2Components/SmsFallback/tests/smsFallbackUtils.test.js +0 -277
- package/v2Components/SmsFallback/tests/useLocalTemplateList.test.js +0 -422
- package/v2Components/SmsFallback/useLocalTemplateList.js +0 -92
- package/v2Components/VarSegmentMessageEditor/constants.js +0 -2
- package/v2Components/VarSegmentMessageEditor/index.js +0 -125
- package/v2Components/VarSegmentMessageEditor/index.scss +0 -46
- package/v2Containers/CreativesContainer/CreativesSlideBoxWrapper.js +0 -43
- package/v2Containers/CreativesContainer/embeddedSlideboxUtils.js +0 -67
- package/v2Containers/CreativesContainer/tests/SlideBoxContent.localTemplates.test.js +0 -90
- package/v2Containers/CreativesContainer/tests/embeddedSlideboxUtils.test.js +0 -258
- package/v2Containers/CreativesContainer/tests/useLocalTemplatesProp.test.js +0 -125
- package/v2Containers/Rcs/rcsLibraryHydrationUtils.js +0 -225
- package/v2Containers/Rcs/tests/rcsLibraryHydrationUtils.test.js +0 -318
- package/v2Containers/Sms/smsFormDataHelpers.js +0 -67
- package/v2Containers/Sms/tests/smsFormDataHelpers.test.js +0 -253
- package/v2Containers/SmsTrai/Edit/index.scss +0 -121
- package/v2Containers/Templates/TemplatesActionBar.js +0 -101
- package/v2Containers/Templates/tests/TemplatesActionBar.test.js +0 -120
- package/v2Containers/Templates/tests/smsTemplatesListApi.test.js +0 -180
- package/v2Containers/Templates/utils/smsTemplatesListApi.js +0 -79
- package/v2Containers/TemplatesV2/tests/TemplatesV2.localTemplates.test.js +0 -131
|
@@ -55,33 +55,6 @@ describe('parseSenderDetailsResponse', () => {
|
|
|
55
55
|
expect(result.domains[0].cdmaSenders[0].value).toBe('CDMA1');
|
|
56
56
|
});
|
|
57
57
|
|
|
58
|
-
it('should populate SMS senders when channel argument is lowercase (normalized for branches)', () => {
|
|
59
|
-
const response = {
|
|
60
|
-
entity: {
|
|
61
|
-
SMS: [
|
|
62
|
-
{
|
|
63
|
-
id: 10,
|
|
64
|
-
priority: 1,
|
|
65
|
-
domainProperties: {
|
|
66
|
-
domainName: 'SMS Domain 1',
|
|
67
|
-
id: 100,
|
|
68
|
-
contactInfo: [
|
|
69
|
-
{ type: 'gsm_sender_id', valid: true, value: 'GSM1', default: true },
|
|
70
|
-
{ type: 'cdma_sender_id', valid: true, value: 'CDMA1' },
|
|
71
|
-
],
|
|
72
|
-
connectionProperties: {},
|
|
73
|
-
},
|
|
74
|
-
},
|
|
75
|
-
],
|
|
76
|
-
},
|
|
77
|
-
};
|
|
78
|
-
const result = parseSenderDetailsResponse('sms', response);
|
|
79
|
-
expect(result.domains).toHaveLength(1);
|
|
80
|
-
expect(result.domains[0].gsmSenders).toHaveLength(1);
|
|
81
|
-
expect(result.domains[0].gsmSenders[0].value).toBe('GSM1');
|
|
82
|
-
expect(result.domains[0].cdmaSenders).toHaveLength(1);
|
|
83
|
-
});
|
|
84
|
-
|
|
85
58
|
it('should parse EMAIL channel entity array', () => {
|
|
86
59
|
const response = {
|
|
87
60
|
entity: {
|
|
@@ -258,319 +231,5 @@ describe('parseSenderDetailsResponse', () => {
|
|
|
258
231
|
const result = parseSenderDetailsResponse('WHATSAPP', response);
|
|
259
232
|
expect(result.domains[0].sourceAccountIdentifier).toBe('waba-456');
|
|
260
233
|
});
|
|
261
|
-
|
|
262
|
-
it('should map hostName to domainName when domainName missing (RCS)', () => {
|
|
263
|
-
const response = {
|
|
264
|
-
entity: {
|
|
265
|
-
RCS: [
|
|
266
|
-
{
|
|
267
|
-
id: 1,
|
|
268
|
-
priority: 0,
|
|
269
|
-
domainProperties: {
|
|
270
|
-
hostName: 'rcs-host',
|
|
271
|
-
id: 42,
|
|
272
|
-
contactInfo: [
|
|
273
|
-
{ type: 'gsm_sender_id', valid: true, value: 'S1', default: true },
|
|
274
|
-
],
|
|
275
|
-
},
|
|
276
|
-
},
|
|
277
|
-
],
|
|
278
|
-
},
|
|
279
|
-
};
|
|
280
|
-
const result = parseSenderDetailsResponse('RCS', response);
|
|
281
|
-
expect(result.domains[0].domainName).toBe('rcs-host');
|
|
282
|
-
expect(result.domains[0].domainId).toBe(42);
|
|
283
|
-
expect(result.domains[0].gsmSenders[0].value).toBe('S1');
|
|
284
|
-
});
|
|
285
|
-
|
|
286
|
-
it('should unwrap result.entity when top-level entity is absent', () => {
|
|
287
|
-
const response = {
|
|
288
|
-
result: {
|
|
289
|
-
entity: {
|
|
290
|
-
SMS: [
|
|
291
|
-
{
|
|
292
|
-
id: 1,
|
|
293
|
-
priority: 0,
|
|
294
|
-
domainProperties: {
|
|
295
|
-
domainName: 'ViaResult',
|
|
296
|
-
id: 9,
|
|
297
|
-
contactInfo: [{ type: 'gsm_sender_id', valid: true, value: 'G' }],
|
|
298
|
-
},
|
|
299
|
-
},
|
|
300
|
-
],
|
|
301
|
-
},
|
|
302
|
-
},
|
|
303
|
-
};
|
|
304
|
-
const result = parseSenderDetailsResponse('SMS', response);
|
|
305
|
-
expect(result.domains[0].domainName).toBe('ViaResult');
|
|
306
|
-
});
|
|
307
|
-
|
|
308
|
-
it('should merge rcs_sender_id into gsmSenders for RCS', () => {
|
|
309
|
-
const response = {
|
|
310
|
-
entity: {
|
|
311
|
-
RCS: [
|
|
312
|
-
{
|
|
313
|
-
id: 1,
|
|
314
|
-
priority: 0,
|
|
315
|
-
domainProperties: {
|
|
316
|
-
domainName: 'RCS Domain',
|
|
317
|
-
id: 1,
|
|
318
|
-
contactInfo: [
|
|
319
|
-
{ type: 'rcs_sender_id', valid: true, value: 'RCS123', default: true },
|
|
320
|
-
],
|
|
321
|
-
},
|
|
322
|
-
},
|
|
323
|
-
],
|
|
324
|
-
},
|
|
325
|
-
};
|
|
326
|
-
const result = parseSenderDetailsResponse('RCS', response);
|
|
327
|
-
expect(result.domains[0].gsmSenders).toHaveLength(1);
|
|
328
|
-
expect(result.domains[0].gsmSenders[0].value).toBe('RCS123');
|
|
329
|
-
});
|
|
330
|
-
|
|
331
|
-
it('should unwrap data.entity when top-level entity is absent', () => {
|
|
332
|
-
const response = {
|
|
333
|
-
data: {
|
|
334
|
-
entity: {
|
|
335
|
-
SMS: [
|
|
336
|
-
{
|
|
337
|
-
id: 1,
|
|
338
|
-
priority: 0,
|
|
339
|
-
domainProperties: {
|
|
340
|
-
domainName: 'ViaData',
|
|
341
|
-
id: 9,
|
|
342
|
-
contactInfo: [{ type: 'gsm_sender_id', valid: true, value: 'G' }],
|
|
343
|
-
},
|
|
344
|
-
},
|
|
345
|
-
],
|
|
346
|
-
},
|
|
347
|
-
},
|
|
348
|
-
};
|
|
349
|
-
const result = parseSenderDetailsResponse('SMS', response);
|
|
350
|
-
expect(result.domains[0].domainName).toBe('ViaData');
|
|
351
|
-
});
|
|
352
|
-
|
|
353
|
-
it('should return empty domains when entity is explicitly null', () => {
|
|
354
|
-
expect(parseSenderDetailsResponse('SMS', { entity: null })).toEqual({ domains: [] });
|
|
355
|
-
});
|
|
356
|
-
|
|
357
|
-
it('should return empty when channel data is a non-domain object', () => {
|
|
358
|
-
expect(parseSenderDetailsResponse('SMS', { entity: { notAnArray: true } })).toEqual({ domains: [] });
|
|
359
|
-
});
|
|
360
|
-
|
|
361
|
-
it('should use userid when sourceAccountIdentifier and wabaId are missing (WHATSAPP)', () => {
|
|
362
|
-
const response = {
|
|
363
|
-
entity: {
|
|
364
|
-
WHATSAPP: [
|
|
365
|
-
{
|
|
366
|
-
id: 1,
|
|
367
|
-
priority: 0,
|
|
368
|
-
domainProperties: {
|
|
369
|
-
domainName: 'W',
|
|
370
|
-
id: 1,
|
|
371
|
-
connectionProperties: { userid: 'user-99' },
|
|
372
|
-
},
|
|
373
|
-
},
|
|
374
|
-
],
|
|
375
|
-
},
|
|
376
|
-
};
|
|
377
|
-
const result = parseSenderDetailsResponse('WHATSAPP', response);
|
|
378
|
-
expect(result.domains[0].sourceAccountIdentifier).toBe('user-99');
|
|
379
|
-
});
|
|
380
|
-
|
|
381
|
-
it('should dedupe duplicate GSM values for RCS (merged contact types)', () => {
|
|
382
|
-
const response = {
|
|
383
|
-
entity: {
|
|
384
|
-
RCS: [
|
|
385
|
-
{
|
|
386
|
-
id: 1,
|
|
387
|
-
priority: 0,
|
|
388
|
-
domainProperties: {
|
|
389
|
-
domainName: 'R',
|
|
390
|
-
id: 1,
|
|
391
|
-
contactInfo: [
|
|
392
|
-
{ type: 'gsm_sender_id', valid: true, value: 'SAME', default: true },
|
|
393
|
-
{ type: 'rcs_sender_id', valid: true, value: 'SAME' },
|
|
394
|
-
],
|
|
395
|
-
},
|
|
396
|
-
},
|
|
397
|
-
],
|
|
398
|
-
},
|
|
399
|
-
};
|
|
400
|
-
const result = parseSenderDetailsResponse('RCS', response);
|
|
401
|
-
expect(result.domains[0].gsmSenders.filter((r) => r.value === 'SAME')).toHaveLength(1);
|
|
402
|
-
});
|
|
403
|
-
|
|
404
|
-
it('should return empty domains when response is not an object', () => {
|
|
405
|
-
expect(parseSenderDetailsResponse('SMS', 42)).toEqual({ domains: [] });
|
|
406
|
-
expect(parseSenderDetailsResponse('SMS', 'x')).toEqual({ domains: [] });
|
|
407
|
-
});
|
|
408
|
-
|
|
409
|
-
it('should return empty domains when entity is empty string', () => {
|
|
410
|
-
expect(parseSenderDetailsResponse('SMS', { entity: '' })).toEqual({ domains: [] });
|
|
411
|
-
});
|
|
412
|
-
|
|
413
|
-
it('should normalize hyphenated contactInfo.type to match gsm_sender_id', () => {
|
|
414
|
-
const response = {
|
|
415
|
-
entity: {
|
|
416
|
-
SMS: [
|
|
417
|
-
{
|
|
418
|
-
id: 1,
|
|
419
|
-
domainProperties: {
|
|
420
|
-
domainName: 'D',
|
|
421
|
-
id: 1,
|
|
422
|
-
contactInfo: [
|
|
423
|
-
{ type: 'gsm-sender-id', valid: true, value: 'HYPH' },
|
|
424
|
-
],
|
|
425
|
-
},
|
|
426
|
-
},
|
|
427
|
-
],
|
|
428
|
-
},
|
|
429
|
-
};
|
|
430
|
-
const result = parseSenderDetailsResponse('SMS', response);
|
|
431
|
-
expect(result.domains[0].gsmSenders[0].value).toBe('HYPH');
|
|
432
|
-
});
|
|
433
|
-
|
|
434
|
-
it('should skip whitespace-only GSM values when merging RCS contact types', () => {
|
|
435
|
-
const response = {
|
|
436
|
-
entity: {
|
|
437
|
-
RCS: [
|
|
438
|
-
{
|
|
439
|
-
id: 1,
|
|
440
|
-
domainProperties: {
|
|
441
|
-
domainName: 'R',
|
|
442
|
-
id: 1,
|
|
443
|
-
contactInfo: [
|
|
444
|
-
{ type: 'gsm_sender_id', valid: true, value: ' ' },
|
|
445
|
-
{ type: 'gsm_sender_id', valid: true, value: 'OK' },
|
|
446
|
-
],
|
|
447
|
-
},
|
|
448
|
-
},
|
|
449
|
-
],
|
|
450
|
-
},
|
|
451
|
-
};
|
|
452
|
-
const values = parseSenderDetailsResponse('RCS', response).domains[0].gsmSenders.map((g) => g.value);
|
|
453
|
-
expect(values).toEqual(['OK']);
|
|
454
|
-
});
|
|
455
|
-
|
|
456
|
-
it('should use default priority 0 when priority is null', () => {
|
|
457
|
-
const response = {
|
|
458
|
-
entity: {
|
|
459
|
-
SMS: [
|
|
460
|
-
{
|
|
461
|
-
id: 1,
|
|
462
|
-
priority: null,
|
|
463
|
-
domainProperties: {
|
|
464
|
-
domainName: 'P',
|
|
465
|
-
id: 9,
|
|
466
|
-
contactInfo: [],
|
|
467
|
-
},
|
|
468
|
-
},
|
|
469
|
-
],
|
|
470
|
-
},
|
|
471
|
-
};
|
|
472
|
-
expect(parseSenderDetailsResponse('SMS', response).domains[0].priority).toBe(0);
|
|
473
|
-
});
|
|
474
|
-
|
|
475
|
-
it('should unwrap entity from raw response object when entity key is absent', () => {
|
|
476
|
-
const response = { misc: 1 };
|
|
477
|
-
expect(parseSenderDetailsResponse('SMS', response)).toEqual({ domains: [] });
|
|
478
|
-
});
|
|
479
|
-
});
|
|
480
|
-
|
|
481
|
-
describe('unwrapEntity edge cases', () => {
|
|
482
|
-
it('should return empty domains when entity key is explicitly null', () => {
|
|
483
|
-
// unwrapEntity: response.entity === null → returns null → parseSenderDetailsResponse returns { domains: [] }
|
|
484
|
-
expect(parseSenderDetailsResponse('SMS', { entity: null })).toEqual({ domains: [] });
|
|
485
|
-
});
|
|
486
|
-
});
|
|
487
|
-
|
|
488
|
-
describe('null or empty channel', () => {
|
|
489
|
-
it('should return empty domains when channel is null', () => {
|
|
490
|
-
const response = { entity: { SMS: [{ id: 1, domainProperties: { domainName: 'D', id: 10, contactInfo: [] } }] } };
|
|
491
|
-
expect(parseSenderDetailsResponse(null, response)).toEqual({ domains: [] });
|
|
492
|
-
});
|
|
493
|
-
|
|
494
|
-
it('should return empty domains when channel is empty string', () => {
|
|
495
|
-
const response = { entity: { SMS: [{ id: 1, domainProperties: { domainName: 'D', id: 10, contactInfo: [] } }] } };
|
|
496
|
-
expect(parseSenderDetailsResponse('', response)).toEqual({ domains: [] });
|
|
497
|
-
});
|
|
498
|
-
});
|
|
499
|
-
|
|
500
|
-
describe('single non-array domain object', () => {
|
|
501
|
-
it('should wrap single domain with domainProperties in an array and return one domain', () => {
|
|
502
|
-
const response = {
|
|
503
|
-
entity: {
|
|
504
|
-
SMS: {
|
|
505
|
-
id: 5,
|
|
506
|
-
domainProperties: {
|
|
507
|
-
domainName: 'SingleDomain',
|
|
508
|
-
id: 99,
|
|
509
|
-
contactInfo: [{ type: 'gsm_sender_id', valid: true, value: 'GSMSINGLE' }],
|
|
510
|
-
},
|
|
511
|
-
},
|
|
512
|
-
},
|
|
513
|
-
};
|
|
514
|
-
const result = parseSenderDetailsResponse('SMS', response);
|
|
515
|
-
expect(result.domains).toHaveLength(1);
|
|
516
|
-
expect(result.domains[0].domainName).toBe('SingleDomain');
|
|
517
|
-
expect(result.domains[0].gsmSenders[0].value).toBe('GSMSINGLE');
|
|
518
|
-
});
|
|
519
|
-
|
|
520
|
-
it('should return empty domains for single non-array domain without domainProperties', () => {
|
|
521
|
-
const response = {
|
|
522
|
-
entity: { SMS: { id: 5, someProp: 'value' } },
|
|
523
|
-
};
|
|
524
|
-
expect(parseSenderDetailsResponse('SMS', response)).toEqual({ domains: [] });
|
|
525
|
-
});
|
|
526
|
-
});
|
|
527
|
-
|
|
528
|
-
describe('deduplication by domainId when domainName is null', () => {
|
|
529
|
-
it('should deduplicate two entries sharing the same domainId when domainName is null', () => {
|
|
530
|
-
const response = {
|
|
531
|
-
entity: {
|
|
532
|
-
SMS: [
|
|
533
|
-
{
|
|
534
|
-
id: 10,
|
|
535
|
-
priority: 1,
|
|
536
|
-
domainProperties: { domainName: null, id: 42, contactInfo: [] },
|
|
537
|
-
},
|
|
538
|
-
{
|
|
539
|
-
id: 11,
|
|
540
|
-
priority: 2,
|
|
541
|
-
domainProperties: { domainName: null, id: 42, contactInfo: [] },
|
|
542
|
-
},
|
|
543
|
-
],
|
|
544
|
-
},
|
|
545
|
-
};
|
|
546
|
-
const result = parseSenderDetailsResponse('SMS', response);
|
|
547
|
-
expect(result.domains).toHaveLength(1);
|
|
548
|
-
expect(result.domains[0].domainId).toBe(42);
|
|
549
|
-
});
|
|
550
|
-
});
|
|
551
|
-
|
|
552
|
-
describe('typeMatches null-type filtering', () => {
|
|
553
|
-
it('should exclude contactInfo items with null type from gsmSenders', () => {
|
|
554
|
-
const response = {
|
|
555
|
-
entity: {
|
|
556
|
-
SMS: [
|
|
557
|
-
{
|
|
558
|
-
id: 1,
|
|
559
|
-
domainProperties: {
|
|
560
|
-
domainName: 'D',
|
|
561
|
-
id: 1,
|
|
562
|
-
contactInfo: [
|
|
563
|
-
{ type: null, valid: true, value: 'EXCLUDED' },
|
|
564
|
-
{ type: 'gsm_sender_id', valid: true, value: 'INCLUDED' },
|
|
565
|
-
],
|
|
566
|
-
},
|
|
567
|
-
},
|
|
568
|
-
],
|
|
569
|
-
},
|
|
570
|
-
};
|
|
571
|
-
const result = parseSenderDetailsResponse('SMS', response);
|
|
572
|
-
expect(result.domains[0].gsmSenders).toHaveLength(1);
|
|
573
|
-
expect(result.domains[0].gsmSenders[0].value).toBe('INCLUDED');
|
|
574
|
-
});
|
|
575
234
|
});
|
|
576
235
|
});
|
|
@@ -24,19 +24,17 @@ import SendTestMessage from '../SendTestMessage';
|
|
|
24
24
|
|
|
25
25
|
// Mock DeliverySettings to assert props
|
|
26
26
|
jest.mock('../DeliverySettings', () => function MockDeliverySettings(props) {
|
|
27
|
-
|
|
28
|
-
return (
|
|
27
|
+
return (
|
|
29
28
|
<div data-testid="delivery-settings" data-props={JSON.stringify({
|
|
30
29
|
channel: props.channel,
|
|
31
30
|
hasDeliverySettings: !!props.deliverySettings,
|
|
32
|
-
senderDetailsLength:
|
|
31
|
+
senderDetailsLength: (props.senderDetailsOptions || []).length,
|
|
33
32
|
wecrmAccountsLength: (props.wecrmAccounts || []).length,
|
|
34
33
|
hasOnSave: typeof props.onSaveDeliverySettings === 'function',
|
|
35
34
|
isLoadingSenderDetails: props.isLoadingSenderDetails,
|
|
36
35
|
smsTraiDltEnabled: props.smsTraiDltEnabled,
|
|
37
36
|
registeredSenderIds: props.registeredSenderIds,
|
|
38
37
|
whatsappAccountFromForm: props.whatsappAccountFromForm,
|
|
39
|
-
isChannelSmsFallbackPreviewEnabled: props.isChannelSmsFallbackPreviewEnabled,
|
|
40
38
|
})}
|
|
41
39
|
/>
|
|
42
40
|
);
|
|
@@ -131,7 +129,7 @@ describe('SendTestMessage', () => {
|
|
|
131
129
|
formatMessage: jest.fn((msg) => msg.defaultMessage || msg.id),
|
|
132
130
|
channel: 'EMAIL',
|
|
133
131
|
deliverySettings: {},
|
|
134
|
-
|
|
132
|
+
senderDetailsOptions: [],
|
|
135
133
|
wecrmAccounts: [],
|
|
136
134
|
onSaveDeliverySettings: jest.fn(),
|
|
137
135
|
isLoadingSenderDetails: false,
|
|
@@ -235,22 +233,6 @@ describe('SendTestMessage', () => {
|
|
|
235
233
|
expect(screen.getByTestId('delivery-settings')).toBeTruthy();
|
|
236
234
|
});
|
|
237
235
|
|
|
238
|
-
it('should render DeliverySettings when channel is RCS and pass SMS fallback preview flag', () => {
|
|
239
|
-
render(
|
|
240
|
-
<TestWrapper>
|
|
241
|
-
<SendTestMessage
|
|
242
|
-
{...defaultProps}
|
|
243
|
-
channel="RCS"
|
|
244
|
-
isChannelSmsFallbackPreviewEnabled
|
|
245
|
-
/>
|
|
246
|
-
</TestWrapper>
|
|
247
|
-
);
|
|
248
|
-
const el = screen.getByTestId('delivery-settings');
|
|
249
|
-
const data = JSON.parse(el.getAttribute('data-props'));
|
|
250
|
-
expect(data.channel).toBe('RCS');
|
|
251
|
-
expect(data.isChannelSmsFallbackPreviewEnabled).toBe(true);
|
|
252
|
-
});
|
|
253
|
-
|
|
254
236
|
it('should not render DeliverySettings when channel is INAPP', () => {
|
|
255
237
|
render(
|
|
256
238
|
<TestWrapper>
|
|
@@ -298,9 +280,7 @@ describe('SendTestMessage', () => {
|
|
|
298
280
|
{...defaultProps}
|
|
299
281
|
channel="SMS"
|
|
300
282
|
deliverySettings={{ domainId: 1 }}
|
|
301
|
-
|
|
302
|
-
SMS: [{ domainId: 1, domainName: 'SMS Dom' }],
|
|
303
|
-
}}
|
|
283
|
+
senderDetailsOptions={[{ domainId: 1, domainName: 'SMS Dom' }]}
|
|
304
284
|
wecrmAccounts={[]}
|
|
305
285
|
onSaveDeliverySettings={onSave}
|
|
306
286
|
isLoadingSenderDetails={true}
|
|
@@ -688,22 +668,21 @@ describe('SendTestMessage', () => {
|
|
|
688
668
|
...defaultProps,
|
|
689
669
|
renderAddTestCustomerButton,
|
|
690
670
|
};
|
|
691
|
-
|
|
671
|
+
render(
|
|
692
672
|
<TestWrapper>
|
|
693
673
|
<SendTestMessage {...props} />
|
|
694
674
|
</TestWrapper>
|
|
695
675
|
);
|
|
696
|
-
//
|
|
697
|
-
|
|
698
|
-
|
|
676
|
+
// Assert component wiring: renderAddTestCustomerButton must have been called during render.
|
|
677
|
+
expect(renderAddTestCustomerButton).toHaveBeenCalled();
|
|
678
|
+
// Assert the returned element has the expected shape.
|
|
679
|
+
const notFoundContent = renderAddTestCustomerButton.mock.results[0].value;
|
|
699
680
|
expect(notFoundContent).toBeTruthy();
|
|
700
|
-
expect(notFoundContent.props['data-testid']).toBe('add-test-customer-btn');
|
|
701
681
|
expect(notFoundContent.type).toBe('button');
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
}
|
|
682
|
+
expect(notFoundContent.props['data-testid']).toBe('add-test-customer-btn');
|
|
683
|
+
// Assert clicking the button triggers the handler.
|
|
684
|
+
notFoundContent.props.onClick();
|
|
685
|
+
expect(onAddClick).toHaveBeenCalled();
|
|
707
686
|
});
|
|
708
687
|
});
|
|
709
688
|
});
|
|
@@ -9,16 +9,7 @@ import { render, screen } from '@testing-library/react';
|
|
|
9
9
|
import '@testing-library/jest-dom';
|
|
10
10
|
import { injectIntl, IntlProvider } from 'react-intl';
|
|
11
11
|
import UnifiedPreview from '../../UnifiedPreview';
|
|
12
|
-
import {
|
|
13
|
-
CHANNELS,
|
|
14
|
-
DESKTOP,
|
|
15
|
-
TABLET,
|
|
16
|
-
MOBILE,
|
|
17
|
-
ANDROID,
|
|
18
|
-
IOS,
|
|
19
|
-
PREVIEW_TAB_RCS,
|
|
20
|
-
PREVIEW_TAB_SMS_FALLBACK,
|
|
21
|
-
} from '../../constants';
|
|
12
|
+
import { CHANNELS, DESKTOP, TABLET, MOBILE, ANDROID, IOS } from '../../constants';
|
|
22
13
|
import messages from '../../messages';
|
|
23
14
|
|
|
24
15
|
// Convert messages object to format expected by IntlProvider
|
|
@@ -556,195 +547,6 @@ describe('UnifiedPreview', () => {
|
|
|
556
547
|
|
|
557
548
|
expect(screen.getByTestId('rcs-sender-id')).toHaveTextContent('RCS_SENDER');
|
|
558
549
|
});
|
|
559
|
-
|
|
560
|
-
describe('RCS SMS fallback — Test & Preview tabs', () => {
|
|
561
|
-
it('without SMS fallback selected, shows only RCS preview (no RCS+SMS tab layout)', () => {
|
|
562
|
-
const props = {
|
|
563
|
-
...defaultProps,
|
|
564
|
-
channel: CHANNELS.RCS,
|
|
565
|
-
content: { rcsTitle: 'Hello RCS' },
|
|
566
|
-
smsFallbackContent: undefined,
|
|
567
|
-
};
|
|
568
|
-
|
|
569
|
-
const { container } = render(
|
|
570
|
-
<TestWrapper>
|
|
571
|
-
<ComponentToRender {...props} />
|
|
572
|
-
</TestWrapper>
|
|
573
|
-
);
|
|
574
|
-
|
|
575
|
-
expect(container.querySelector('.unified-preview-rcs-tabs')).toBeNull();
|
|
576
|
-
expect(screen.getByTestId('rcs-preview')).toBeInTheDocument();
|
|
577
|
-
expect(screen.queryByTestId('sms-preview')).not.toBeInTheDocument();
|
|
578
|
-
});
|
|
579
|
-
|
|
580
|
-
it('with SMS fallback template body, shows RCS and Fallback SMS tabs', () => {
|
|
581
|
-
const props = {
|
|
582
|
-
...defaultProps,
|
|
583
|
-
channel: CHANNELS.RCS,
|
|
584
|
-
content: { rcsTitle: 'Hello RCS' },
|
|
585
|
-
smsFallbackContent: {
|
|
586
|
-
content: 'SMS fallback body',
|
|
587
|
-
templateContent: 'SMS fallback body',
|
|
588
|
-
},
|
|
589
|
-
};
|
|
590
|
-
|
|
591
|
-
const { container } = render(
|
|
592
|
-
<TestWrapper>
|
|
593
|
-
<ComponentToRender {...props} />
|
|
594
|
-
</TestWrapper>
|
|
595
|
-
);
|
|
596
|
-
|
|
597
|
-
expect(container.querySelector('.unified-preview-rcs-tabs')).toBeInTheDocument();
|
|
598
|
-
expect(
|
|
599
|
-
screen.getByRole('tab', { name: messages.rcsTab.defaultMessage })
|
|
600
|
-
).toBeInTheDocument();
|
|
601
|
-
expect(
|
|
602
|
-
screen.getByRole('tab', { name: messages.smsFallbackTab.defaultMessage })
|
|
603
|
-
).toBeInTheDocument();
|
|
604
|
-
});
|
|
605
|
-
|
|
606
|
-
it('on SMS fallback tab, renders SMS preview with resolved fallback text when smsFallbackResolvedText is set', () => {
|
|
607
|
-
const props = {
|
|
608
|
-
...defaultProps,
|
|
609
|
-
channel: CHANNELS.RCS,
|
|
610
|
-
content: { rcsTitle: 'Hello RCS' },
|
|
611
|
-
smsFallbackContent: {
|
|
612
|
-
content: '{{var}}',
|
|
613
|
-
templateContent: '{{var}}',
|
|
614
|
-
},
|
|
615
|
-
smsFallbackResolvedText: 'Resolved SMS for preview',
|
|
616
|
-
activePreviewTab: PREVIEW_TAB_SMS_FALLBACK,
|
|
617
|
-
onPreviewTabChange: jest.fn(),
|
|
618
|
-
};
|
|
619
|
-
|
|
620
|
-
render(
|
|
621
|
-
<TestWrapper>
|
|
622
|
-
<ComponentToRender {...props} />
|
|
623
|
-
</TestWrapper>
|
|
624
|
-
);
|
|
625
|
-
|
|
626
|
-
expect(screen.getByTestId('sms-content')).toHaveTextContent('Resolved SMS for preview');
|
|
627
|
-
});
|
|
628
|
-
|
|
629
|
-
it('on RCS tab (default), renders RCS preview when dual tabs are shown', () => {
|
|
630
|
-
const props = {
|
|
631
|
-
...defaultProps,
|
|
632
|
-
channel: CHANNELS.RCS,
|
|
633
|
-
content: { rcsTitle: 'Only RCS pane' },
|
|
634
|
-
smsFallbackContent: { content: 'SMS', templateContent: 'SMS' },
|
|
635
|
-
activePreviewTab: PREVIEW_TAB_RCS,
|
|
636
|
-
onPreviewTabChange: jest.fn(),
|
|
637
|
-
};
|
|
638
|
-
|
|
639
|
-
render(
|
|
640
|
-
<TestWrapper>
|
|
641
|
-
<ComponentToRender {...props} />
|
|
642
|
-
</TestWrapper>
|
|
643
|
-
);
|
|
644
|
-
|
|
645
|
-
expect(screen.getByTestId('rcs-preview')).toBeInTheDocument();
|
|
646
|
-
expect(screen.getByTestId('rcs-content')).toHaveTextContent(/Only RCS pane/);
|
|
647
|
-
});
|
|
648
|
-
|
|
649
|
-
it('on SMS fallback tab, shows raw template when no varmap and no resolved text', () => {
|
|
650
|
-
const props = {
|
|
651
|
-
...defaultProps,
|
|
652
|
-
channel: CHANNELS.RCS,
|
|
653
|
-
content: { rcsTitle: 'Hello RCS' },
|
|
654
|
-
smsFallbackContent: {
|
|
655
|
-
content: 'Hello {{name}}',
|
|
656
|
-
templateContent: 'Hello {{name}}',
|
|
657
|
-
// no rcsSmsFallbackVarMapped
|
|
658
|
-
},
|
|
659
|
-
smsFallbackResolvedText: undefined,
|
|
660
|
-
activePreviewTab: PREVIEW_TAB_SMS_FALLBACK,
|
|
661
|
-
onPreviewTabChange: jest.fn(),
|
|
662
|
-
};
|
|
663
|
-
|
|
664
|
-
render(
|
|
665
|
-
<TestWrapper>
|
|
666
|
-
<ComponentToRender {...props} />
|
|
667
|
-
</TestWrapper>
|
|
668
|
-
);
|
|
669
|
-
|
|
670
|
-
// rawFallbackTemplate is shown directly — {{tags}} remain visible
|
|
671
|
-
expect(screen.getByTestId('sms-content')).toHaveTextContent('Hello {{name}}');
|
|
672
|
-
});
|
|
673
|
-
|
|
674
|
-
it('on SMS fallback tab, treats empty resolved text as absent and shows raw template', () => {
|
|
675
|
-
const props = {
|
|
676
|
-
...defaultProps,
|
|
677
|
-
channel: CHANNELS.RCS,
|
|
678
|
-
content: { rcsTitle: 'Hello RCS' },
|
|
679
|
-
smsFallbackContent: {
|
|
680
|
-
content: 'Raw {{var}} template',
|
|
681
|
-
templateContent: 'Raw {{var}} template',
|
|
682
|
-
},
|
|
683
|
-
smsFallbackResolvedText: '',
|
|
684
|
-
activePreviewTab: PREVIEW_TAB_SMS_FALLBACK,
|
|
685
|
-
onPreviewTabChange: jest.fn(),
|
|
686
|
-
};
|
|
687
|
-
|
|
688
|
-
render(
|
|
689
|
-
<TestWrapper>
|
|
690
|
-
<ComponentToRender {...props} />
|
|
691
|
-
</TestWrapper>
|
|
692
|
-
);
|
|
693
|
-
|
|
694
|
-
expect(screen.getByTestId('sms-content')).toHaveTextContent('Raw {{var}} template');
|
|
695
|
-
});
|
|
696
|
-
|
|
697
|
-
it('on SMS fallback tab, applies varmap slot substitution when varmap entries exist and no resolved text', () => {
|
|
698
|
-
// getFallbackResolvedContent key format: `${fullToken}_${segmentIndex}`
|
|
699
|
-
// 'Hello {{name}}' → segments ['Hello ', '{{name}}'], so {{name}} is at index 1 → key '{{name}}_1'
|
|
700
|
-
const props = {
|
|
701
|
-
...defaultProps,
|
|
702
|
-
channel: CHANNELS.RCS,
|
|
703
|
-
content: { rcsTitle: 'Hello RCS' },
|
|
704
|
-
smsFallbackContent: {
|
|
705
|
-
content: 'Hello {{name}}',
|
|
706
|
-
templateContent: 'Hello {{name}}',
|
|
707
|
-
rcsSmsFallbackVarMapped: { '{{name}}_1': 'World' },
|
|
708
|
-
},
|
|
709
|
-
smsFallbackResolvedText: undefined,
|
|
710
|
-
activePreviewTab: PREVIEW_TAB_SMS_FALLBACK,
|
|
711
|
-
onPreviewTabChange: jest.fn(),
|
|
712
|
-
};
|
|
713
|
-
|
|
714
|
-
render(
|
|
715
|
-
<TestWrapper>
|
|
716
|
-
<ComponentToRender {...props} />
|
|
717
|
-
</TestWrapper>
|
|
718
|
-
);
|
|
719
|
-
|
|
720
|
-
expect(screen.getByTestId('sms-content')).toHaveTextContent('Hello World');
|
|
721
|
-
});
|
|
722
|
-
|
|
723
|
-
it('on SMS fallback tab, resolved text takes priority over varmap entries', () => {
|
|
724
|
-
const props = {
|
|
725
|
-
...defaultProps,
|
|
726
|
-
channel: CHANNELS.RCS,
|
|
727
|
-
content: { rcsTitle: 'Hello RCS' },
|
|
728
|
-
smsFallbackContent: {
|
|
729
|
-
content: 'Hello {{name}}',
|
|
730
|
-
templateContent: 'Hello {{name}}',
|
|
731
|
-
rcsSmsFallbackVarMapped: { '{{name}}_1': 'World' },
|
|
732
|
-
},
|
|
733
|
-
smsFallbackResolvedText: 'Hello John',
|
|
734
|
-
activePreviewTab: PREVIEW_TAB_SMS_FALLBACK,
|
|
735
|
-
onPreviewTabChange: jest.fn(),
|
|
736
|
-
};
|
|
737
|
-
|
|
738
|
-
render(
|
|
739
|
-
<TestWrapper>
|
|
740
|
-
<ComponentToRender {...props} />
|
|
741
|
-
</TestWrapper>
|
|
742
|
-
);
|
|
743
|
-
|
|
744
|
-
// resolvedText wins over varmap substitution
|
|
745
|
-
expect(screen.getByTestId('sms-content')).toHaveTextContent('Hello John');
|
|
746
|
-
});
|
|
747
|
-
});
|
|
748
550
|
});
|
|
749
551
|
|
|
750
552
|
describe('Channel Routing - INAPP', () => {
|