-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathjson-to-html.test.ts
More file actions
674 lines (572 loc) · 18.9 KB
/
json-to-html.test.ts
File metadata and controls
674 lines (572 loc) · 18.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
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
import { jsonToHTML } from '../src/json-to-html'
import { embeddedAssetWithRenderOption } from './mock/render-options'
import {
blockquoteJson,
codeJson,
embeddedAssetJsonEntry,
h1Json,
h2Json,
h3Json,
h4Json,
h5Json,
h6Json,
imgJson,
imgJsonURL,
linkInPJson,
linkInPJsonUrl,
orderListJson,
paragraphEntry,
paragraphEntryWithNewline,
paragraphJsonArrayEntry,
plainTextJson,
styleinPJson,
tableJson,
unorderListJson,
entryJsonRteWithClass,
entryJsonRteWithId,
entryJsonRteWithIdinAttrs,
jsonRteClassAndIdAttrs,
styleObj,
unorderListJson1,
unorderListJson2,
orderListJson2,
testJsonRte,
testJsonAsset,
embeddedAssetAsLinkJsonEntry} from './mock/json-element-mock'
import {
blockquoteHtml,
codeHtml,
h1Html,
h2Html,
h3Html,
h4Html,
h5Html,
h6Html,
imgHtml,
linkInPHtml,
linkInPURLHtml,
orderListHtml,
paragraphHtml,
paragraphHtmlWithNewLine,
plainTextHtml,
styleinPHtml,
tableHtml,
unorderListHtml,
plainTextHtmlWithClass,
plainTextHtmlWithId,
htmlTextIdInAttrs,
classAndIdAttrsHtml,
styleObjHtml,
referenceObjHtml,
referenceObjHtmlBlock,
imagetags} from './mock/json-element-mock-result'
describe('Node parser paragraph content', () => {
it('Should accept proper values', done => {
const entry = { uid: 'uid'}
jsonToHTML({ entry, paths: [] })
expect(entry.uid).toEqual('uid')
done()
})
it('Should return content for non JSON RTE', done => {
const entry = { uid: 'uid', normalText: 'text'}
jsonToHTML({entry, paths: ['normalText']})
expect(entry.normalText).toEqual('text')
done()
})
it('Should render Json To html', done => {
const entry = {...paragraphEntry}
jsonToHTML({entry, paths: ['rich_text_editor']})
expect(entry.rich_text_editor).toEqual(paragraphHtml)
done()
})
it('Should render Json To html with newline after single enter', done => {
const entry = {...paragraphEntryWithNewline}
jsonToHTML({entry, paths: ['rich_text_editor']})
expect(entry.rich_text_editor).toEqual(paragraphHtmlWithNewLine)
done()
})
it('Should render Json To html for Array of Entries', done => {
const entry = {...paragraphEntry}
jsonToHTML({entry: [entry], paths: ['rich_text_editor']})
expect(entry.rich_text_editor).toEqual(paragraphHtml)
done()
})
it('Should render array Json To array html', done => {
const entry = {...paragraphJsonArrayEntry}
jsonToHTML({entry, paths: ['rich_text_editor']})
expect(entry.rich_text_editor).toEqual([paragraphHtml])
done()
})
it('Should render array Json To array html for array of Entries', done => {
const entry = {...paragraphJsonArrayEntry}
jsonToHTML({entry: [entry], paths: ['rich_text_editor']})
expect(entry.rich_text_editor).toEqual([paragraphHtml])
done()
})
})
describe('Node parser reference content', () => {
it('Should render reference asset to html from Entry', done => {
const entry = {...embeddedAssetJsonEntry}
jsonToHTML({entry, paths: ['rich_text_editor', 'rte']})
expect(entry.rich_text_editor).toEqual('<img src="/asset_uid_1/dummy.pdf" alt="dummy.pdf" />')
expect(entry.rte).toEqual(['<img src="/asset_uid_1/dummy.pdf" alt="dummy.pdf" />'])
done()
})
it('Should render reference asset to html from Entries', done => {
const entry = [{ ...embeddedAssetJsonEntry }]
jsonToHTML({entry, paths: ['rich_text_editor', 'rte']})
expect(entry[0].rich_text_editor).toEqual('<img src="/asset_uid_1/dummy.pdf" alt="dummy.pdf" />')
expect(entry[0].rte).toEqual(['<img src="/asset_uid_1/dummy.pdf" alt="dummy.pdf" />'])
done()
})
it('Should render reference asset to html from Entry with custom render option', done => {
const entry = {...embeddedAssetJsonEntry}
jsonToHTML({entry, paths: ['rich_text_editor', 'rte'], renderOption: embeddedAssetWithRenderOption.renderOption})
expect(entry.rich_text_editor).toEqual('<img src="/asset_uid_1/dummy.pdf" alt="Alternet Text" />')
expect(entry.rte).toEqual(['<img src="/asset_uid_1/dummy.pdf" alt="Alternet Text" />'])
done()
})
it('Should render reference asset to html from Entries with custom render option', done => {
const entry = [{ ...embeddedAssetJsonEntry }]
jsonToHTML({entry, paths: ['rich_text_editor', 'rte'], renderOption: embeddedAssetWithRenderOption.renderOption})
expect(entry[0].rich_text_editor).toEqual('<img src="/asset_uid_1/dummy.pdf" alt="Alternet Text" />')
expect(entry[0].rte).toEqual(['<img src="/asset_uid_1/dummy.pdf" alt="Alternet Text" />'])
done()
})
it('should convert to html when and type is reference, attrs type is entry and display-type is link', done => {
const entry = testJsonRte
const paths = ["content","json_rte", "modular_blocks.block.json_rich_text"]
jsonToHTML({ entry: entry, paths })
entry.modular_blocks.forEach((blocks) => {
expect(blocks.block.json_rich_text).toEqual(referenceObjHtmlBlock)
});
expect(entry.json_rte[0]).toEqual(referenceObjHtml)
done()
})
it('should convert to html when asset embedded as link in json_rte', done => {
const entry = {
uid: 'entry_uid',
rte_data: {...embeddedAssetAsLinkJsonEntry},
}
const paths = ["rte_data"]
const result = `<p>asda<a class="embedded-entry redactor-component undefined-entry" href="https://images.contentstack.io/v3/assets/***REMOVED***/***REMOVED***/657304603ed4d5773c01feed/Screenshot_2023-03-01_at_1.09.39_PM.png" target="_self" content-type-uid="sys_assets" data-sys-asset-uid="***REMOVED***" sys-style-type="download">s<strong>das</strong></a><strong>d</strong>as</p>`
jsonToHTML({ entry: entry, paths })
expect(entry.rte_data).toBe(result)
done()
})
})
describe('Node parse text Content', () => {
it('Should return all text wrapped patterns', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: {
...plainTextJson
},
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual(plainTextHtml)
done()
})
it('Should return array text wrapped patterns', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: [
{
...plainTextJson
}
],
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual([plainTextHtml])
done()
})
it('Should return html text with classname', done => {
const entry = entryJsonRteWithClass
const paths = ['json_rte']
jsonToHTML({ entry: entry, paths })
expect(entry.json_rte).toEqual(plainTextHtmlWithClass)
done()
})
it('Should return html text with id', done => {
const entry = entryJsonRteWithId
const paths = ['json_rte']
jsonToHTML({ entry: entry, paths })
expect(entry.json_rte).toEqual(plainTextHtmlWithId)
done()
})
})
describe('Node parse headers content', () => {
it('Should return h1 html string', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: {
...h1Json
},
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual(h1Html)
done()
})
it('Should return h2 html string', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: {
...h2Json
},
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual(h2Html)
done()
})
it('Should return h3 html string', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: {
...h3Json
},
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual(h3Html)
done()
})
it('Should return h4 html string', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: {
...h4Json
},
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual(h4Html)
done()
})
it('Should return h5 html string', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: {
...h5Json
},
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual(h5Html)
done()
})
it('Should return h6 html string', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: {
...h6Json
},
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual(h6Html)
done()
})
it('Shoul return array of headers in html string', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: [
{
...h6Json
},
{
...h3Json
},
{
...h2Json
},
{
...h5Json
},
{
...h1Json
},
{
...h4Json
},
],
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual([h6Html, h3Html, h2Html, h5Html, h1Html, h4Html])
done()
})
})
describe('Node parse list content', () => {
it('Should return order list html content', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: {
...orderListJson
},
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual(orderListHtml)
done()
})
it('Should return order list html content for updated json rte', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: {
...orderListJson2
},
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual('<ol><li><fragment>One</fragment><ol><li><strong>nested</strong> one</li><li>nested two</li></ol></li><li>Two</li></ol>')
done()
})
it('Should return un-order list html content', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: {
...unorderListJson
},
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual(unorderListHtml)
done()
})
it('Should return unorder list html content for previous json rte ', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: {
...unorderListJson1
},
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual('<ul><li>One</li><ul><li>nested one</li><li>nested two</li></ul><li>Two</li></ul>')
done()
})
it('Should return unorder list html content for updated json rte', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: {
...unorderListJson2
},
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual('<ul><li><fragment>One</fragment><ul><li>nested one </li><li>nested two </li></ul></li><li>Two</li></ul>')
done()
})
})
describe('Node parse image content', () => {
it('Should return image html content', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: {
...imgJson
},
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual(imgHtml)
done()
})
it('Should return image list html content', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: [
{
...imgJsonURL
}
],
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual([imgHtml])
done()
})
})
describe('Node parse table content', () => {
it('Should return table html content', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: {
...tableJson
},
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual(tableHtml)
done()
})
})
describe('Node parse blockquote content', () => {
it('Should return blockquote html content', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: {
...blockquoteJson
},
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual(blockquoteHtml)
done()
})
it('Should return blockquote array html content', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: [
{
...blockquoteJson
},
],
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual([blockquoteHtml])
done()
})
})
describe('Node parse code content', () => {
it('Should return code html content', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: {
...codeJson
},
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual(codeHtml)
done()
})
it('Should return code array html content', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: [
{
...codeJson
},
],
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual([codeHtml])
done()
})
})
describe('Node parse link in paragraph content', () => {
it('Should return link in paragraph html content', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: {
...linkInPJson
},
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual(linkInPHtml)
done()
})
it('Should return link in paragraph array html content', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: [
{
...linkInPJsonUrl
},
],
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual([linkInPURLHtml])
done()
})
})
describe('Node parse style attribute', () => {
it('Should return style attribute in paragraph html content', done => {
const entry = {
uid: 'entry_uid_19',
supercharged_rte: {
...styleinPJson
},
_embedded_items: {}
}
const paths = ['supercharged_rte']
jsonToHTML({ entry, paths})
expect(entry.supercharged_rte).toEqual(styleinPHtml)
done()
})
it('Should return style attribute in headings tag content', done => {
const entry = styleObj
const paths = ['json_rte']
jsonToHTML({ entry, paths})
expect(entry.json_rte).toEqual(styleObjHtml)
done()
})
})
describe('Node parse json_rte Content', () => {
it('Should return html text with classname', done => {
const entry = entryJsonRteWithClass
const paths = ['json_rte']
jsonToHTML({ entry: entry, paths })
expect(entry.json_rte).toEqual(plainTextHtmlWithClass)
done()
})
it('Should return html text with id', done => {
const entry = entryJsonRteWithId
const paths = ['json_rte']
jsonToHTML({ entry: entry, paths })
expect(entry.json_rte).toEqual(plainTextHtmlWithId)
done()
})
it('Should return html text with id in parent tag', done => {
const entry = entryJsonRteWithIdinAttrs
const paths = ['json_rte']
jsonToHTML({ entry: entry, paths })
expect(entry.json_rte).toEqual(htmlTextIdInAttrs)
done()
})
it('Should return html text with class and id in parent tag', done => {
const entry = jsonRteClassAndIdAttrs
const paths = ['json_rte']
jsonToHTML({ entry: entry, paths })
expect(entry.json_rte).toEqual(classAndIdAttrsHtml)
done()
})
it('Testing json to html with figure tag', done =>{
const entry = testJsonAsset
const paths =['json_rte']
jsonToHTML({ entry: entry, paths})
expect(entry.json_rte).toEqual(imagetags)
done()
})
})