-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbulkOperation-test.js
More file actions
257 lines (231 loc) · 7.93 KB
/
bulkOperation-test.js
File metadata and controls
257 lines (231 loc) · 7.93 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
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 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 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 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 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)
}