-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbulkOperation-test.js
More file actions
583 lines (530 loc) · 16.9 KB
/
bulkOperation-test.js
File metadata and controls
583 lines (530 loc) · 16.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
import { expect } from 'chai'
import { describe, it, setup } from 'mocha'
import { jsonReader } from '../../sanity-check/utility/fileOperations/readwrite'
import { contentstackClient } from '../../sanity-check/utility/ContentstackClient'
import { singlepageCT, multiPageCT } from '../mock/content-type.js'
import { createManagementToken } from '../mock/managementToken.js'
import dotenv from 'dotenv'
dotenv.config()
let client = {}
let clientWithManagementToken = {}
let entryUid1 = ''
let assetUid1 = ''
let entryUid2 = ''
let assetUid2 = ''
let jobId1 = ''
let jobId2 = ''
let jobId3 = ''
let jobId4 = ''
let jobId5 = ''
let jobId6 = ''
let jobId7 = ''
let jobId8 = ''
let jobId9 = ''
let jobId10 = ''
let tokenUidDev = ''
let tokenUid = ''
function delay (ms) {
return new Promise(resolve => setTimeout(resolve, ms))
}
async function waitForJobReady (jobId, maxAttempts = 10) {
for (let attempt = 1; attempt <= maxAttempts; attempt++) {
try {
const response = await doBulkOperationWithManagementToken(tokenUidDev)
.jobStatus({ job_id: jobId, api_version: '3.2' })
if (response && response.status) {
return response
}
} catch (error) {
console.log(`Attempt ${attempt}: Job not ready yet, retrying...`)
}
await delay(2000)
}
throw new Error(`Job ${jobId} did not become ready after ${maxAttempts} attempts`)
}
describe('BulkOperation api test', () => {
setup(() => {
const user = jsonReader('loggedinuser.json')
const entryRead1 = jsonReader('publishEntry1.json')
const assetRead1 = jsonReader('publishAsset1.json')
entryUid1 = entryRead1.uid
assetUid1 = assetRead1.uid
const entryRead2 = jsonReader('publishEntry2.json')
const assetRead2 = jsonReader('publishAsset2.json')
entryUid2 = entryRead2.uid
assetUid2 = assetRead2.uid
client = contentstackClient(user.authtoken)
clientWithManagementToken = contentstackClient()
})
it('should create a Management Token for get job status', done => {
makeManagementToken()
.create(createManagementToken)
.then((token) => {
tokenUidDev = token.token
tokenUid = token.uid
expect(token.name).to.be.equal(createManagementToken.token.name)
expect(token.description).to.be.equal(createManagementToken.token.description)
expect(token.scope[0].module).to.be.equal(createManagementToken.token.scope[0].module)
expect(token.uid).to.be.not.equal(null)
done()
})
.catch(done)
})
it('should publish one entry when publishDetails of an entry is passed', done => {
const publishDetails = {
entries: [
{
uid: entryUid1,
content_type: multiPageCT.content_type.title,
locale: 'en-us'
}
],
locales: [
'en-us'
],
environments: [
'development'
]
}
doBulkOperation()
.publish({ details: publishDetails, api_version: '3.2' })
.then((response) => {
expect(response.notice).to.not.equal(undefined)
expect(response.job_id).to.not.equal(undefined)
jobId1 = response.job_id
done()
})
.catch(done)
})
it('should publish one asset when publishDetails of an asset is passed', done => {
const publishDetails = {
assets: [
{
uid: assetUid1
}
],
locales: [
'en-us'
],
environments: [
'development'
]
}
doBulkOperation()
.publish({ details: publishDetails, api_version: '3.2' })
.then((response) => {
expect(response.notice).to.not.equal(undefined)
expect(response.job_id).to.not.equal(undefined)
jobId2 = response.job_id
done()
})
.catch(done)
})
it('should publish multiple entries assets when publishDetails of entries and assets are passed', done => {
const publishDetails = {
entries: [
{
uid: entryUid1,
content_type: multiPageCT.content_type.uid,
locale: 'en-us'
},
{
uid: entryUid2,
content_type: singlepageCT.content_type.uid,
locale: 'en-us'
}
],
assets: [
{
uid: assetUid1
},
{
uid: assetUid2
}
],
locales: [
'en-us'
],
environments: [
'development'
]
}
doBulkOperation()
.publish({ details: publishDetails, api_version: '3.2' })
.then((response) => {
expect(response.notice).to.not.equal(undefined)
expect(response.job_id).to.not.equal(undefined)
jobId3 = response.job_id
done()
})
.catch(done)
})
it('should publish entries with publishAllLocalized parameter set to true', done => {
const publishDetails = {
entries: [
{
uid: entryUid1,
content_type: multiPageCT.content_type.uid,
locale: 'en-us'
}
],
locales: [
'en-us'
],
environments: [
'development'
]
}
doBulkOperation()
.publish({
details: publishDetails,
api_version: '3.2',
publishAllLocalized: true
})
.then((response) => {
expect(response.notice).to.not.equal(undefined)
expect(response.job_id).to.not.equal(undefined)
// Store job ID for later status check
jobId4 = response.job_id
done()
})
.catch(done)
})
it('should publish entries with publishAllLocalized parameter set to false', done => {
const publishDetails = {
entries: [
{
uid: entryUid2,
content_type: singlepageCT.content_type.uid,
locale: 'en-us'
}
],
locales: [
'en-us'
],
environments: [
'development'
]
}
doBulkOperation()
.publish({
details: publishDetails,
api_version: '3.2',
publishAllLocalized: false
})
.then((response) => {
expect(response.notice).to.not.equal(undefined)
expect(response.job_id).to.not.equal(undefined)
// Store job ID for later status check
jobId5 = response.job_id
done()
})
.catch(done)
})
it('should publish assets with publishAllLocalized parameter', done => {
const publishDetails = {
assets: [
{
uid: assetUid1
}
],
locales: [
'en-us'
],
environments: [
'development'
]
}
doBulkOperation()
.publish({
details: publishDetails,
api_version: '3.2',
publishAllLocalized: true
})
.then((response) => {
expect(response.notice).to.not.equal(undefined)
expect(response.job_id).to.not.equal(undefined)
// Store job ID for later status check
jobId6 = response.job_id
done()
})
.catch(done)
})
it('should unpublish entries with unpublishAllLocalized parameter set to true', done => {
const unpublishDetails = {
entries: [
{
uid: entryUid1,
content_type: multiPageCT.content_type.uid,
locale: 'en-us'
}
],
locales: [
'en-us'
],
environments: [
'development'
]
}
doBulkOperation()
.unpublish({
details: unpublishDetails,
api_version: '3.2',
unpublishAllLocalized: true
})
.then((response) => {
expect(response.notice).to.not.equal(undefined)
expect(response.job_id).to.not.equal(undefined)
// Store job ID for later status check
jobId7 = response.job_id
done()
})
.catch(done)
})
it('should unpublish entries with unpublishAllLocalized parameter set to false', done => {
const unpublishDetails = {
entries: [
{
uid: entryUid2,
content_type: singlepageCT.content_type.uid,
locale: 'en-us'
}
],
locales: [
'en-us'
],
environments: [
'development'
]
}
doBulkOperation()
.unpublish({
details: unpublishDetails,
api_version: '3.2',
unpublishAllLocalized: false
})
.then((response) => {
expect(response.notice).to.not.equal(undefined)
expect(response.job_id).to.not.equal(undefined)
// Store job ID for later status check
jobId8 = response.job_id
done()
})
.catch(done)
})
it('should unpublish assets with unpublishAllLocalized parameter', done => {
const unpublishDetails = {
assets: [
{
uid: assetUid1
}
],
locales: [
'en-us'
],
environments: [
'development'
]
}
doBulkOperation()
.unpublish({
details: unpublishDetails,
api_version: '3.2',
unpublishAllLocalized: true
})
.then((response) => {
expect(response.notice).to.not.equal(undefined)
expect(response.job_id).to.not.equal(undefined)
// Store job ID for later status check
jobId9 = response.job_id
done()
})
.catch(done)
})
it('should publish entries with multiple parameters including publishAllLocalized', done => {
const publishDetails = {
entries: [
{
uid: entryUid1,
content_type: multiPageCT.content_type.uid,
locale: 'en-us'
}
],
locales: [
'en-us'
],
environments: [
'development'
]
}
doBulkOperation()
.publish({
details: publishDetails,
api_version: '3.2',
publishAllLocalized: true,
skip_workflow_stage: true,
approvals: true
})
.then((response) => {
expect(response.notice).to.not.equal(undefined)
expect(response.job_id).to.not.equal(undefined)
// Store job ID for later status check
jobId10 = response.job_id
done()
})
.catch(done)
})
it('should wait for all jobs to be processed before checking status', async () => {
await delay(5000) // Wait 5 seconds for jobs to be processed
})
it('should wait for jobs to be ready and get job status for the first publish job', async () => {
const response = await waitForJobReady(jobId1)
expect(response).to.not.equal(undefined)
expect(response.uid).to.not.equal(undefined)
expect(response.status).to.not.equal(undefined)
expect(response.action).to.not.equal(undefined)
expect(response.summary).to.not.equal(undefined)
expect(response.body).to.not.equal(undefined)
})
it('should validate detailed job status response structure', async () => {
const response = await waitForJobReady(jobId1)
expect(response).to.not.equal(undefined)
// Validate main job properties
expect(response.uid).to.not.equal(undefined)
expect(response.api_key).to.not.equal(undefined)
expect(response.status).to.not.equal(undefined)
// Validate body structure
expect(response.body).to.not.equal(undefined)
expect(response.body.locales).to.be.an('array')
expect(response.body.environments).to.be.an('array')
// Validate summary structure
expect(response.summary).to.not.equal(undefined)
})
it('should get job status for the second publish job', async () => {
const response = await waitForJobReady(jobId2)
expect(response).to.not.equal(undefined)
expect(response.uid).to.not.equal(undefined)
expect(response.status).to.not.equal(undefined)
expect(response.action).to.not.equal(undefined)
expect(response.summary).to.not.equal(undefined)
expect(response.body).to.not.equal(undefined)
})
it('should get job status for the third publish job', async () => {
const response = await waitForJobReady(jobId3)
expect(response).to.not.equal(undefined)
expect(response.uid).to.not.equal(undefined)
expect(response.status).to.not.equal(undefined)
expect(response.action).to.not.equal(undefined)
expect(response.summary).to.not.equal(undefined)
expect(response.body).to.not.equal(undefined)
})
it('should get job status for publishAllLocalized=true job', async () => {
const response = await waitForJobReady(jobId4)
expect(response).to.not.equal(undefined)
expect(response.uid).to.not.equal(undefined)
expect(response.status).to.not.equal(undefined)
expect(response.action).to.not.equal(undefined)
expect(response.summary).to.not.equal(undefined)
expect(response.body).to.not.equal(undefined)
})
it('should get job status for publishAllLocalized=false job', async () => {
const response = await waitForJobReady(jobId5)
expect(response).to.not.equal(undefined)
expect(response.uid).to.not.equal(undefined)
expect(response.status).to.not.equal(undefined)
expect(response.action).to.not.equal(undefined)
expect(response.summary).to.not.equal(undefined)
expect(response.body).to.not.equal(undefined)
})
it('should get job status for asset publishAllLocalized job', async () => {
const response = await waitForJobReady(jobId6)
expect(response).to.not.equal(undefined)
expect(response.uid).to.not.equal(undefined)
expect(response.status).to.not.equal(undefined)
expect(response.action).to.not.equal(undefined)
expect(response.summary).to.not.equal(undefined)
expect(response.body).to.not.equal(undefined)
})
it('should get job status for unpublishAllLocalized=true job', async () => {
const response = await waitForJobReady(jobId7)
expect(response).to.not.equal(undefined)
expect(response.uid).to.not.equal(undefined)
expect(response.status).to.not.equal(undefined)
expect(response.action).to.not.equal(undefined)
expect(response.summary).to.not.equal(undefined)
expect(response.body).to.not.equal(undefined)
})
it('should get job status for unpublishAllLocalized=false job', async () => {
const response = await waitForJobReady(jobId8)
expect(response).to.not.equal(undefined)
expect(response.uid).to.not.equal(undefined)
expect(response.status).to.not.equal(undefined)
expect(response.action).to.not.equal(undefined)
expect(response.summary).to.not.equal(undefined)
expect(response.body).to.not.equal(undefined)
})
it('should get job status for asset unpublishAllLocalized job', async () => {
const response = await waitForJobReady(jobId9)
expect(response).to.not.equal(undefined)
expect(response.uid).to.not.equal(undefined)
expect(response.status).to.not.equal(undefined)
expect(response.action).to.not.equal(undefined)
expect(response.summary).to.not.equal(undefined)
expect(response.body).to.not.equal(undefined)
})
it('should get job status for multiple parameters job', async () => {
const response = await waitForJobReady(jobId10)
expect(response).to.not.equal(undefined)
expect(response.uid).to.not.equal(undefined)
expect(response.status).to.not.equal(undefined)
expect(response.action).to.not.equal(undefined)
expect(response.summary).to.not.equal(undefined)
expect(response.body).to.not.equal(undefined)
})
it('should get job status with bulk_version parameter', async () => {
await waitForJobReady(jobId1)
const response = await doBulkOperationWithManagementToken(tokenUidDev)
.jobStatus({ job_id: jobId1, bulk_version: 'v3', api_version: '3.2' })
expect(response).to.not.equal(undefined)
expect(response.uid).to.not.equal(undefined)
expect(response.status).to.not.equal(undefined)
expect(response.action).to.not.equal(undefined)
expect(response.summary).to.not.equal(undefined)
expect(response.body).to.not.equal(undefined)
})
it('should get job items for a completed job', async () => {
await waitForJobReady(jobId1)
const response = await doBulkOperationWithManagementToken(tokenUidDev)
.getJobItems(jobId1)
expect(response).to.not.equal(undefined)
expect(response.items).to.be.an('array')
})
it('should get job items with explicit api_version', async () => {
await waitForJobReady(jobId2)
const response = await doBulkOperationWithManagementToken(tokenUidDev)
.getJobItems(jobId2, { api_version: '3.2' })
expect(response).to.not.equal(undefined)
expect(response.items).to.be.an('array')
})
it('should delete a Management Token', done => {
makeManagementToken(tokenUid)
.delete()
.then((data) => {
expect(data.notice).to.be.equal('Management Token deleted successfully.')
done()
})
.catch(done)
})
})
function doBulkOperation (uid = null) {
// @ts-ignore-next-line secret-detection
return client.stack({ api_key: process.env.API_KEY }).bulkOperation()
}
function doBulkOperationWithManagementToken (tokenUidDev) {
// @ts-ignore-next-line secret-detection
return clientWithManagementToken.stack({ api_key: process.env.API_KEY, management_token: tokenUidDev }).bulkOperation()
}
function makeManagementToken (uid = null) {
// @ts-ignore-next-line secret-detection
return client.stack({ api_key: process.env.API_KEY }).managementToken(uid)
}