-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathjson-migration.test.js
More file actions
940 lines (903 loc) · 28.2 KB
/
json-migration.test.js
File metadata and controls
940 lines (903 loc) · 28.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
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
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
const { runCommand } = require('@oclif/test');
const sinon = require('sinon');
const qs = require('querystring');
const nock = require('nock');
const { cliux } = require('@contentstack/cli-utilities');
const { expect } = require('chai');
const { fancy } = require('fancy-test');
const {
getToken,
getContentType,
getEntries,
getExpectedOutput,
getGlobalField,
getEntriesOnlyUID,
getEntry,
} = require('../utils');
const omitDeep = require('omit-deep-lodash');
const { isEqual, cloneDeep } = require('lodash');
const { command } = require('../../src/lib/util');
describe('Migration Config validation', () => {
const getTokenCallback = sinon.stub();
getTokenCallback
.withArgs('test1')
.returns({
token: 'testManagementToken',
apiKey: 'testApiKey',
type: 'management',
})
.withArgs('invalidAlias')
.throws("Token with alias 'invalidAlias' was not found");
fancy
.stub(cliux, 'confirm', () => false)
.it('deny config confirmation', async () => {
const { error } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--alias',
'test1',
'--content-type',
'contenttypewithsinglerte',
'--html-path',
'rich_text_editor',
'--json-path',
'supercharged_rte',
'--delay',
'50',
],
{ root: process.cwd() },
);
expect(error.message).to.contain('User aborted the command.');
});
fancy
.stub(cliux, 'confirm', () => true)
.stub(command, 'getToken', getTokenCallback)
.it('throw error on Empty paths', async () => {
const {error} = await runCommand(
['cm:entries:migrate-html-rte', '--config-path', './test/dummy/config/configWithEmptyPath.json', '--yes'],
{ root: process.cwd() },
);
expect(error.message).to.contain('No value provided for the "paths" property in config.');
});
fancy
.stub(cliux, 'confirm', () => true)
.stub(command, 'getToken', getTokenCallback)
.it('throw error on invalid config type', async () => {
const {error} = await runCommand(
['cm:entries:migrate-html-rte', '--config-path', '../test/dummy/config/invalidConfig.json', '--yes'],
{ root: process.cwd() },
);
expect(error.message).to.contain('The specified path to config file does not exist.');
});
fancy
.stub(cliux, 'confirm', () => true)
.it('throw error on config without alias property', async () => {
const { error } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--content-type',
'contenttypewithsinglerte',
'--html-path',
'rich_text_editor',
'--json-path',
'supercharged_rte',
'--delay',
'50',
],
{ root: process.cwd() },
);
expect(error.message).to.contain('is not exactly one from "stack-api-key","alias"');
});
fancy
.stub(cliux, 'confirm', () => true)
.stub(command, 'getToken', getTokenCallback)
.it('throw error on invalidAlias', async () => {
const { error } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--alias',
'invalidAlias',
'--content-type',
'contenttypewithsinglerte',
'--html-path',
'rich_text_editor',
'--json-path',
'supercharged_rte',
'--delay',
'50',
],
{ root: process.cwd() },
);
expect(error.message).to.contain('Invalid alias provided for the management token.');
});
fancy
.stub(cliux, 'confirm', () => true)
.stub(command, 'getToken', getTokenCallback)
.it('throw error on invalid config file', async () => {
const { error } = await runCommand(
['cm:entries:migrate-html-rte', '--config-path', './test/dummy/config/configWithInvalidPath.json', '--yes'],
{ root: process.cwd() },
);
expect(error.message).to.contain('The specified path to config file does not exist.');
});
});
describe('Content Type with Single RTE Field of Single Type', function () {
this.timeout(1000000);
let token = getToken('test1');
beforeEach(() => {
nock(`${command.cmaAPIUrl}`, {
reqheaders: {
api_key: token.apiKey,
authorization: token.token,
},
})
.persist()
.get(/\/v3\/content_types\/(\w)*/)
.query({
include_global_field_schema: true,
})
.reply((uri) => {
var match = uri.match(/\/v3\/content_types\/((\w)*)/);
return getContentType(match[1]);
});
nock(`${command.cmaAPIUrl}`, {
reqheaders: {
api_key: token.apiKey,
authorization: token.token,
},
})
.persist()
.get(/\/v3\/content_types\/((\w)*)\/entries/)
.query({
include_count: true,
skip: 0,
limit: 100,
'only[Base][]': 'uid',
})
.reply(200, (uri) => {
var match = uri.match(/\/v3\/content_types\/((\w)*)\/entries/);
return getEntriesOnlyUID(match[1]);
});
nock(`${command.cmaAPIUrl}`, {
reqheaders: {
api_key: token.apiKey,
authorization: token.token,
},
})
.persist()
.get(/\/v3\/content_types\/((\w)*)\/entries/)
.query(true)
.reply(200, function (uri) {
let query = this.req.options.search;
query = query.substring(1);
let locale = undefined;
query = qs.parse(query);
if (query.locale) {
locale = query.locale;
}
var match = uri.match(/\/v3\/content_types\/((\w)*)\/entries/);
return getEntries(match[1], locale);
});
// mock get locale
nock(`${command.cmaAPIUrl}`, {
reqheaders: {
api_key: token.apiKey,
authorization: token.token,
},
})
.persist()
.get(/\/v3\/content_types\/((\w)*)\/entries\/((\w)*)\/locale/)
.query({
deleted: false,
})
.reply(200, () => {
return {
locales: [
{
code: 'en-in',
localized: true,
},
{
code: 'en-us',
},
],
};
});
// mock single entry fetch
nock(`${command.cmaAPIUrl}`, {
reqheaders: {
api_key: token.apiKey,
authorization: token.token,
},
})
.persist()
.get(/\/v3\/content_types\/((\w)*)\/entries\/((\w)*)/)
.query(true)
.reply(200, (uri) => {
const query = this.queries;
let match = uri.match(/\/v3\/content_types\/((\w)*)\/entries\/((\w)*)/);
if (query.locale) {
return getEntry(match[1], match[3], query.locale);
} else {
return getEntry(match2[1], match2[3]);
}
});
nock(`${command.cmaAPIUrl}`, {
reqheaders: {
api_key: token.apiKey,
authorization: token.token,
},
})
.persist()
.put(/\/v3\/content_types\/((\w)*)\/entries/)
.reply((uri, body) => {
let match = uri.match(/\/v3\/content_types\/((\w)*)\/entries\/((\w)*)\?locale=((\w|-)*)/);
let responseModified = cloneDeep(omitDeep(body, ['uid']));
let expectedResponse = omitDeep(getExpectedOutput(match[1], match[3], match[5]), ['uid']);
expectedResponse = cloneDeep(expectedResponse);
if (isEqual(responseModified, expectedResponse)) {
return [
200,
{
notice: 'Entry updated successfully.',
entry: {},
},
];
}
return [
400,
{
notice: 'Update Failed.',
error_message: 'Entry update failed.',
entry: {},
},
];
});
});
const getTokenCallback = sinon.stub();
getTokenCallback.withArgs('test1').returns({
token: 'testManagementToken',
apiKey: 'testApiKey',
type: 'management',
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('execute using config file w/o locale', async () => {
const { stdout } = await runCommand(
['cm:entries:migrate-html-rte', '--config-path', './test/dummy/config/config.json', '--yes'],
{ root: process.cwd() },
);
expect(stdout).to.contain('Updated 1 Content Type(s) and 2 Entrie(s)');
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('execute using config file w/ locale', async () => {
const { stdout } = await runCommand(
['cm:entries:migrate-html-rte', '--config-path', './test/dummy/config/config_locale.json', '--yes'],
{ root: process.cwd() },
);
expect(stdout).to.contain('Updated 1 Content Type(s) and 1 Entrie(s)');
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('execute using config file w/ multiple locale', async () => {
const { stdout } = await runCommand(
['cm:entries:migrate-html-rte', '--config-path', './test/dummy/config/config-locale-2.json', '--yes'],
{ root: process.cwd() },
);
expect(stdout).to.contain('Updated 1 Content Type(s) and 3 Entrie(s)');
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('execute using flags (w/o locale)', async () => {
const { stdout } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--alias',
'test1',
'--content-type',
'contenttypewithsinglerte',
'--html-path',
'rich_text_editor',
'--json-path',
'supercharged_rte',
'--delay',
'50',
],
{ root: process.cwd() },
);
expect(stdout).to.contain('Updated 1 Content Type(s) and 2 Entrie(s)');
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('execute using flags w/ locale', async () => {
const { stdout } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--alias',
'test1',
'--content-type',
'contenttypewithsinglerte',
'--html-path',
'rich_text_editor',
'--json-path',
'supercharged_rte',
'--locale',
'en-in',
'--delay',
'50',
],
{ root: process.cwd() },
);
expect(stdout).to.contain('Updated 1 Content Type(s) and 1 Entrie(s)');
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('throw error on invalid html rte path', async () => {
const { error } = await runCommand([
'cm:entries:migrate-html-rte',
'--alias',
'test1',
'--content-type',
'contenttypewithsinglerte',
'--html-path',
'rich_text_editor.invalidPath',
'--json-path',
'supercharged_rte',
'--yes',
'--delay',
'50',
],{ root: process.cwd() });
expect(error.message).to.contain('The specified path to invalidPath HTML RTE does not exist.');
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('throw error on invalid html rte field schema', async () => {
const { error } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--alias',
'test1',
'--content-type',
'contenttypewithinvalidhtmlrteschema',
'--html-path',
'rich_text_editor',
'--json-path',
'supercharged_rte',
'--yes',
'--delay',
'50',
],
{ root: process.cwd() },
);
expect(error.message).to.contain('The specified path to rich_text_editor HTML RTE does not exist.');
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('throw error on invalid json rte field schema', async () => {
const { error } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--alias',
'test1',
'--content-type',
'contenttypewithinvalidjsonrteschema',
'--html-path',
'rich_text_editor',
'--json-path',
'supercharged_rte',
'--yes',
'--delay',
'50',
],
{ root: process.cwd() },
);
expect(error.message).to.contain('The specified path to supercharged_rte JSON RTE does not exist.');
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('throw error on invalid json rte path', async () => {
const { error } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--alias',
'test1',
'--content-type',
'contenttypewithsinglerte',
'--html-path',
'rich_text_editor',
'--json-path',
'supercharged_rte.invalidPath',
'--yes',
'--delay',
'50',
],
{ root: process.cwd() },
);
expect(error.message).to.contain('The specified path to invalidPath JSON RTE does not exist.');
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('throw error on migration of Mutiple Html rte with single Json rte', async () => {
const { error } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--config-path',
'./test/dummy/config/configForInvalidContentType.json',
'--yes',
],
{ root: process.cwd() },
);
expect(error.message).to.contain('Cannot convert "Multiple" type HTML RTE to "Single" type JSON RTE.');
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('throw error on content type with empty schema', async () => {
const { error } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--alias',
'test1',
'--content-type',
'contenttypewithemptyschema',
'--html-path',
'rich_text_editor',
'--json-path',
'supercharged_rte',
'--yes',
'--delay',
'50',
],
{ root: process.cwd() },
);
expect(error.message).to.contain('The contenttypewithemptyschema content type contains an empty schema.');
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('throw error on different level rte migration', async () => {
const { error } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--alias',
'test1',
'--content-type',
'contenttypedifferentlevelrte',
'--html-path',
'group.rich_text_editor',
'--json-path',
'supercharged_rte',
'--yes',
'--delay',
'50',
],
{ root: process.cwd() },
);
expect(error.message).to.contain(
'To complete migration, HTML RTE and JSON RTE should be present at the same field depth level.',
);
});
fancy
.stub(cliux, 'confirm', () => true)
.stub(command, 'getToken', getTokenCallback)
.it('throw error on invalid contenttype', async () => {
const { error } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--alias',
'test1',
'--content-type',
'invalidContentType',
'--html-path',
'rich_text_editor',
'--json-path',
'supercharged_rte',
'--delay',
'50',
],
{ root: process.cwd() },
);
expect(error.message).to.contain("The Content Type 'invalidContentType' was not found. Please try again.");
});
fancy
.skip()
.stub(cliux, 'confirm', () => true)
.stub(command, 'getToken', getTokenCallback)
.it('notify user on entry update failed', async () => {
const { stdout } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--alias',
'test1',
'--content-type',
'contenttypewithentryupdateerror',
'--html-path',
'rich_text_editor',
'--json-path',
'supercharged_rte',
'--yes',
'--delay',
'50',
],
{ root: process.cwd() },
);
expect(stdout).to.contain(
`Faced issue while migrating some entrie(s) for "contenttypewithentryupdateerror" Content-type in "en-us" locale,"blta9b16ac2827c54ed, blta9b16ac2827c54e1"`,
);
});
fancy
.skip()
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('should have proper json structure for images migrated from HTML RTE', async () => {
const { stdout } = await runCommand(
['cm:entries:migrate-html-rte', '--config-path', './test/dummy/config/config-for-images-in-rte.json', '--yes'],
{ root: process.cwd() },
);
expect(stdout).to.match(/Updated \d+ Content Type\(s\) and \d+ Entrie\(s\)/);
});
});
describe('Global Field Migration', () => {
let token = getToken('test1');
beforeEach(() => {
nock(`${command.cmaAPIUrl}`, {
reqheaders: {
api_key: token.apiKey,
authorization: token.token,
},
})
.persist()
.get(/\/v3\/global_fields\/([a-zA-Z_])*/)
.query({
include_content_types: true,
})
.reply((uri) => {
var match = uri.match(/\/v3\/global_fields\/(([a-zA-Z_])*)/);
return getGlobalField(match[1]);
});
});
const getTokenCallback = sinon.stub();
getTokenCallback.withArgs('test1').returns({
token: 'testManagementToken',
apiKey: 'testApiKey',
type: 'management',
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('execute using config file', async () => {
const { stdout } = await runCommand(
['cm:entries:migrate-html-rte', '--config-path', './test/dummy/config/configForGlobalField.json', '--yes'],
{ root: process.cwd() },
);
expect(stdout).to.contain('Updated 2 Content Type(s) and 2 Entrie(s)');
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('throw error on global field with empty referred content_types', async () => {
const { error } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--alias',
'test1',
'--content-type',
'globalfieldwithemptycontenttype',
'--global-field',
'--html-path',
'rich_text_editor',
'--json-path',
'supercharged_rte',
'--yes',
'--delay',
'50',
],
{ root: process.cwd() },
);
expect(error.message).to.contain('globalfieldformigration Global field is not referred in any content type.');
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('throw error on global field with invalid content_type', async () => {
const { error } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--alias',
'test1',
'--content-type',
'globalfieldwithinvalidcontenttype',
'--global-field',
'--html-path',
'rich_text_editor',
'--json-path',
'supercharged_rte',
'--yes',
'--delay',
'50',
],
{ root: process.cwd() },
);
expect(error.message).to.contain(
'The contenttypewithemptyschema content type referred in globalfieldformigration contains an empty schema.',
);
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('throw error on global field with empty schema', async () => {
const { error } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--alias',
'test1',
'--content-type',
'globalfieldwithemptyschema',
'--global-field',
'--html-path',
'rich_text_editor',
'--json-path',
'supercharged_rte',
'--yes',
'--delay',
'50',
],
{ root: process.cwd() },
);
expect(error.message).to.contain('The globalfieldwithemptyschema Global field contains an empty schema.');
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('throw error on global field with empty schema content_type', async () => {
const { error } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--alias',
'test1',
'--content-type',
'globalfieldwithemptyschemacontenttype',
'--global-field',
'--html-path',
'rich_text_editor',
'--json-path',
'supercharged_rte',
'--yes',
'--delay',
'50',
],
{ root: process.cwd() },
);
expect(error.message).to.contain(
'The contenttypewithemptyschema content type referred in globalfieldwithemptyschemacontenttype contains an empty schema.',
);
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('throw error on invalid global_field uid', async () => {
const { error } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--alias',
'test1',
'--content-type',
'invalidUidGlobalfield',
'--global-field',
'--html-path',
'rich_text_editor',
'--json-path',
'supercharged_rte',
'--yes',
'--delay',
'50',
],
{ root: process.cwd() },
);
expect(error.message).to.contain("The Global Field 'invalidUidGlobalfield' was not found. Please try again.");
});
});
describe('Content Type with single rte of multiple type', () => {
const getTokenCallback = sinon.stub();
getTokenCallback.withArgs('test1').returns({
token: 'testManagementToken',
apiKey: 'testApiKey',
type: 'management',
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('execute using config file', async () => {
const {stdout} = await runCommand(
['cm:entries:migrate-html-rte', '--config-path', './test/dummy/config/configForMultipleRte.json', '--yes'],
{ root: process.cwd() },
);
expect(stdout).to.contain('Updated 1 Content Type(s) and 1 Entrie(s)');
});
});
describe('Content Type with Single RTE inside modular block', () => {
const getTokenCallback = sinon.stub();
getTokenCallback.withArgs('test1').returns({
token: 'testManagementToken',
apiKey: 'testApiKey',
type: 'management',
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('execute using Flags', async () => {
const { stdout } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--alias',
'test1',
'--content-type',
'contenttypewithmodularblock',
'--html-path',
'modular_blocks.test1.rich_text_editor',
'--json-path',
'modular_blocks.test1.supercharged_rte',
'--yes',
'--delay',
'50',
],
{ root: process.cwd() },
);
expect(stdout).to.contain('Updated 1 Content Type(s) and 1 Entrie(s)');
});
});
describe('Content Type with Single RTE of type multiple inside group', () => {
const getTokenCallback = sinon.stub();
getTokenCallback.withArgs('test1').returns({
token: 'testManagementToken',
apiKey: 'testApiKey',
type: 'management',
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('execute using Flags', async () => {
const { stdout } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--alias',
'test1',
'--content-type',
'contenttypewithgroup',
'--html-path',
'group.rich_text_editor',
'--json-path',
'group.supercharged_rte',
'--yes',
'--delay',
'50',
],
{ root: process.cwd() },
);
expect(stdout).to.contain('Updated 1 Content Type(s) and 1 Entrie(s)');
});
});
describe('Content Type with Single RTE inside group of type multiple', () => {
const getTokenCallback = sinon.stub();
getTokenCallback.withArgs('test1').returns({
token: 'testManagementToken',
apiKey: 'testApiKey',
type: 'management',
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('execute using Flags', async () => {
const { stdout } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--alias',
'test1',
'--content-type',
'contenttypewithmultiplegroup',
'--html-path',
'group.rich_text_editor',
'--json-path',
'group.supercharged_rte',
'--yes',
'--delay',
'50',
],
{ root: process.cwd() },
);
expect(stdout).to.contain('Updated 1 Content Type(s) and 1 Entrie(s)');
});
});
// Check this one
describe('Content Type with multiple file field', () => {
const getTokenCallback = sinon.stub();
getTokenCallback.withArgs('test1').returns({
token: 'testManagementToken',
apiKey: 'testApiKey',
type: 'management',
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('execute using Flags', async () => {
const { stdout } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--alias',
'test1',
'--content-type',
'contenttypewithfilefield',
'--html-path',
'rich_text_editor',
'--json-path',
'json_rte',
'--yes',
'--delay',
'50',
],
{ root: process.cwd() },
);
expect(stdout).to.contain('Updated 1 Content Type(s) and 1 Entrie(s)');
});
});
describe('Migration with old flags and command', () => {
const getTokenCallback = sinon.stub();
getTokenCallback.withArgs('test1').returns({
token: 'testManagementToken',
apiKey: 'testApiKey',
type: 'management',
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('execute using config file w/o locale', async (ctx) => {
const { stdout } = await runCommand(
['cm:migrate-rte', '--configPath', './test/dummy/config/config.json', '--yes'],
{ root: process.cwd() },
);
expect(stdout).to.contain(
`WARNING!!! You're using the old (soon to be deprecated) Contentstack CLI flags (-p, --configPath). We recommend you to use the updated flags (-c, --config-path).`,
);
});
fancy
.stub(cliux, 'confirm', () => 'yes')
.stub(command, 'getToken', getTokenCallback)
.it('execute using flags (w/o locale)', async () => {
const { stdout } = await runCommand(
[
'cm:entries:migrate-html-rte',
'--alias',
'test1',
'--content_type',
'contenttypewithsinglerte',
'--htmlPath',
'rich_text_editor',
'--jsonPath',
'supercharged_rte',
'--delay',
'50',
],
{ root: process.cwd() },
);
expect(stdout).to.contain(
`WARNING!!! You're using the old (soon to be deprecated) Contentstack CLI flags (-c, --content_type). We recommend you to use the updated flags (--content-type).`,
);
expect(stdout).to.contain(
`WARNING!!! You're using the old (soon to be deprecated) Contentstack CLI flags (-h, --htmlPath). We recommend you to use the updated flags (--html-path)`,
);
expect(stdout).to.contain(
`WARNING!!! You're using the old (soon to be deprecated) Contentstack CLI flags (-j, --jsonPath). We recommend you to use the updated flags (--json-path).`,
);
});
});