-
-
Notifications
You must be signed in to change notification settings - Fork 115
/
workspace.spec.ts
514 lines (446 loc) · 15.4 KB
/
workspace.spec.ts
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
import {
CreateWorkspaceRequestSchema,
UpdateWorkspaceRequestSchema,
DeleteWorkspaceRequestSchema,
ExportDataRequestSchema,
GlobalSearchRequestSchema,
CreateWorkspaceResponseSchema,
UpdateWorkspaceResponseSchema,
DeleteWorkspaceResponseSchema,
GetWorkspaceRequestSchema,
GetWorkspaceResponseSchema,
InviteMemberRequestSchema,
InviteMemberResponseSchema,
ExportDataResponseSchema,
GetAllWorkspacesOfUserResponseSchema,
GlobalSearchResponseSchema,
GetAllWorkspacesOfUserRequestSchema
} from '@/workspace'
describe('Workspace Schema Tests', () => {
describe('InviteMemberRequestSchema Tests', () => {
it('should validate if proper input is specified for InviteMemberRequestSchema', () => {
const result = InviteMemberRequestSchema.safeParse({
email: '[email protected]',
roleSlugs: ['role1', 'role2']
})
expect(result.success).toBe(true)
})
it('should validate if only required fields are specified for InviteMemberRequestSchema', () => {
const result = InviteMemberRequestSchema.safeParse({
email: '[email protected]'
})
expect(result.success).toBe(true)
})
it('should not validate if required fields are missing for InviteMemberRequestSchema', () => {
const result = InviteMemberRequestSchema.safeParse({
roleSlugs: ['role1']
})
expect(result.success).toBe(false)
expect(result.error?.issues).toHaveLength(1)
})
it('should not validate if invalid email string is specified for InviteMemberRequestSchema', () => {
const result = InviteMemberRequestSchema.safeParse({
email: 'invalid-email'
})
expect(result.success).toBe(false)
expect(result.error?.issues).toHaveLength(1)
})
it('should not validate if invalid types are specified for InviteMemberRequestSchema', () => {
const result = InviteMemberRequestSchema.safeParse({
email: 123,
roleSlugs: 'invalid_role'
})
expect(result.success).toBe(false)
expect(result.error?.issues).toHaveLength(2)
})
it('should not validate if roleIds are specified instead of roleSlugs for InviteMemberRequestSchema', () => {
const result = InviteMemberRequestSchema.safeParse({
roleIds: ['role1', 'role2'] //should be roleSlugs
})
expect(result.success).toBe(false)
expect(result.error?.issues).toHaveLength(1)
})
})
describe('InviteMemberResponseSchema Tests', () => {
it('should validate an empty response for InviteMemberResponseSchema', () => {
const result = InviteMemberResponseSchema.safeParse(undefined)
expect(result.success).toBe(true)
})
it('should not validate if unexpected fields are provided for InviteMemberResponseSchema', () => {
const result = InviteMemberResponseSchema.safeParse({
unexpectedField: 'value'
})
expect(result.success).toBe(false)
expect(result.error?.issues).toHaveLength(1)
})
})
describe('CreateWorkspaceRequestSchema Tests', () => {
it('should validate if proper input is specified for CreateWorkspaceRequestSchema', () => {
const result = CreateWorkspaceRequestSchema.safeParse({
name: 'Workspace Test',
icon: 'icon.png'
})
expect(result.success).toBe(true)
})
it('should validate if only required fields are specified for CreateWorkspaceRequestSchema', () => {
const result = CreateWorkspaceRequestSchema.safeParse({
name: 'Workspace Test'
})
expect(result.success).toBe(true)
})
it('should validate if optional fields are omitted for CreateWorkspaceRequestSchema', () => {
const result = CreateWorkspaceRequestSchema.safeParse({
name: 'Workspace Test'
})
expect(result.success).toBe(true)
})
it('should not validate if required fields are missing for CreateWorkspaceRequestSchema', () => {
const result = CreateWorkspaceRequestSchema.safeParse({
isDefault: true
})
expect(result.success).toBe(false)
expect(result.error?.issues).toHaveLength(1)
})
it('should not validate if invalid types are specified for CreateWorkspaceRequestSchema', () => {
const result = CreateWorkspaceRequestSchema.safeParse({
name: 123,
isDefault: 'true'
})
expect(result.success).toBe(false)
expect(result.error?.issues).toHaveLength(2)
})
})
describe('CreateWorkspaceResponseSchema Tests', () => {
it('should validate with proper input for CreateWorkspaceResponseSchema', () => {
const result = CreateWorkspaceResponseSchema.safeParse({
id: 'workspace-id',
name: 'Workspace Test',
slug: 'workspace-slug',
icon: 'icon.png',
isFreeTier: true,
createdAt: '2024-10-01T00:00:00Z',
updatedAt: '2024-10-01T00:00:00Z',
ownerId: 'owner-id',
isDefault: false,
lastUpdatedById: 'user-id'
})
expect(result.success).toBe(true)
})
it('should not validate if required fields are missing for CreateWorkspaceResponseSchema', () => {
const result = CreateWorkspaceResponseSchema.safeParse({
id: 'workspace-id',
name: 'Workspace Test',
// slug is missing
icon: 'icon.png',
isFreeTier: true,
createdAt: '2024-10-01T00:00:00Z',
updatedAt: '2024-10-01T00:00:00Z',
ownerId: 'owner-id',
isDefault: false,
lastUpdatedById: 'user-id'
})
expect(result.success).toBe(false)
expect(result.error?.issues).toHaveLength(1)
expect(result.error?.issues[0].path).toEqual(['slug'])
})
})
describe('UpdateWorkspaceRequestSchema Tests', () => {
it('should validate if proper input is specified for UpdateWorkspaceRequestSchema', () => {
const result = UpdateWorkspaceRequestSchema.safeParse({
name: 'Updated Workspace Test',
icon: 'new-icon.png',
workspaceSlug: 'workspace-slug'
})
expect(result.success).toBe(true)
})
it('should validate if only required fields are specified for UpdateWorkspaceRequestSchema', () => {
const result = UpdateWorkspaceRequestSchema.safeParse({
workspaceSlug: 'workspace-slug'
})
expect(result.success).toBe(true)
})
it('should not validate if invalid types are provided for UpdateWorkspaceRequestSchema', () => {
const result = UpdateWorkspaceRequestSchema.safeParse({
name: 123 // should be a string
})
expect(result.success).toBe(false)
expect(result.error?.issues).toHaveLength(2)
expect(result.error?.issues[0].path).toEqual(['name'])
expect(result.error?.issues[1].path).toEqual(['workspaceSlug'])
})
})
describe('UpdateWorkspaceResponseSchema Tests', () => {
it('should validate with proper input for UpdateWorkspaceResponseSchema', () => {
const result = UpdateWorkspaceResponseSchema.safeParse({
id: 'workspace-id',
name: 'Updated Workspace',
slug: 'workspace-slug',
icon: 'new-icon.png',
isFreeTier: true,
createdAt: '2024-10-01T00:00:00Z',
updatedAt: '2024-10-02T00:00:00Z',
ownerId: 'owner-id',
isDefault: false,
lastUpdatedById: 'user-id'
})
expect(result.success).toBe(true)
})
it('should not validate if required fields are missing for UpdateWorkspaceResponseSchema', () => {
const result = UpdateWorkspaceResponseSchema.safeParse({
id: 'workspace-id',
name: 'Updated Workspace',
// slug is missing
icon: 'new-icon.png',
isFreeTier: true,
createdAt: '2024-10-01T00:00:00Z',
updatedAt: '2024-10-02T00:00:00Z',
ownerId: 'owner-id',
isDefault: false,
lastUpdatedById: 'user-id'
})
expect(result.success).toBe(false)
expect(result.error?.issues).toHaveLength(1)
expect(result.error?.issues[0].path).toEqual(['slug'])
})
})
describe('DeleteWorkspaceRequestSchema Tests', () => {
it('should validate if proper input is specified for DeleteWorkspaceRequestSchema', () => {
const result = DeleteWorkspaceRequestSchema.safeParse({
workspaceSlug: 'workspace-slug'
})
expect(result.success).toBe(true)
})
})
describe('DeleteWorkspaceResponseSchema Tests', () => {
it('should validate an empty response for DeleteWorkspaceResponseSchema', () => {
const result = DeleteWorkspaceResponseSchema.safeParse(undefined)
expect(result.success).toBe(true)
})
it('should not validate if unexpected fields are provided for DeleteWorkspaceResponseSchema', () => {
const result = DeleteWorkspaceResponseSchema.safeParse({
unexpectedField: 'value'
})
expect(result.success).toBe(false)
expect(result.error?.issues).toHaveLength(1)
})
})
describe('GetWorkspaceRequestSchema Tests', () => {
it('should validate if proper input is specified for GetWorkspaceRequestSchema', () => {
const result = GetWorkspaceRequestSchema.safeParse({
workspaceSlug: 'workspace-slug'
})
expect(result.success).toBe(true)
})
})
describe('GetWorkspaceResponseSchema Tests', () => {
it('should validate with proper input for GetWorkspaceResponseSchema', () => {
const result = GetWorkspaceResponseSchema.safeParse({
id: 'workspace-id',
name: 'Workspace Test',
slug: 'workspace-slug',
icon: 'icon.png',
isFreeTier: true,
createdAt: '2024-10-01T00:00:00Z',
updatedAt: '2024-10-01T00:00:00Z',
ownerId: 'owner-id',
isDefault: false,
lastUpdatedById: 'user-id'
})
expect(result.success).toBe(true)
})
})
describe('GetAllWorkspacesOfUserRequestSchema Tests', () => {
it('should validate when correct page and limit are provided for GetAllWorkspacesOfUserRequestSchema', () => {
const result = GetAllWorkspacesOfUserRequestSchema.safeParse({
page: 1,
limit: 10
})
expect(result.success).toBe(true)
})
})
describe('GetAllWorkspacesOfUserResponseSchema Tests', () => {
it('should validate with proper input for GetAllWorkspacesOfUserResponseSchema', () => {
const result = GetAllWorkspacesOfUserResponseSchema.safeParse({
items: [
{
id: 'workspace-id',
name: 'Workspace Test',
slug: 'workspace-slug',
icon: 'icon.png',
isFreeTier: true,
createdAt: '2024-10-01T00:00:00Z',
updatedAt: '2024-10-01T00:00:00Z',
ownerId: 'owner-id',
isDefault: false,
lastUpdatedById: 'user-id'
}
],
metadata: {
page: 1,
perPage: 10,
pageCount: 1,
totalCount: 1,
links: {
self: 'http://example.com/page/1',
first: 'http://example.com/page/1',
previous: null,
next: null,
last: 'http://example.com/page/1'
}
}
})
expect(result.success).toBe(true)
})
it('should not validate if items are not an array in GetAllWorkspacesOfUserResponseSchema', () => {
const result = GetAllWorkspacesOfUserResponseSchema.safeParse({
items: 'not-an-array',
total: 1,
page: 1,
limit: 10
})
expect(result.success).toBe(false)
expect(result.error?.issues[0].path).toEqual(['items'])
})
})
describe('ExportDataRequestSchema Tests', () => {
it('should validate if proper input is specified for ExportDataRequestSchema', () => {
const result = ExportDataRequestSchema.safeParse({
workspaceSlug: 'workspace-slug'
})
expect(result.success).toBe(true)
})
})
describe('ExportDataResponseSchema Tests', () => {
it('should validate with proper input for ExportDataResponseSchema', () => {
const result = ExportDataResponseSchema.safeParse({
name: 'Workspace Test',
icon: 'icon.png',
workspaceRoles: [
{
name: 'Admin',
description: 'Administrator role',
colorCode: '#FF0000',
hasAdminAuthority: true,
authorities: ['CREATE_PROJECT']
}
],
projects: [
{
name: 'Project A',
description: 'Description of Project A',
publicKey: 'public-key',
privateKey: 'private-key',
storePrivateKey: true,
accessLevel: 'GLOBAL',
environments: [
{
name: 'Development',
description: 'Development Environment'
}
],
secrets: [
{
name: 'API_KEY',
note: 'API Key for external service',
rotateAt: '720',
versions: [
{
value: 'secret-value',
version: 1
}
]
}
],
variables: [
{
name: 'ENV_VAR',
note: 'Environment Variable',
versions: [
{
value: 'variable-value',
version: 1
}
]
}
]
}
]
})
expect(result.success).toBe(true)
})
it('should not validate if required fields are missing in ExportDataResponseSchema', () => {
const result = ExportDataResponseSchema.safeParse({
// name is missing
icon: 'icon.png',
workspaceRoles: [],
projects: []
})
expect(result.success).toBe(false)
expect(result.error?.issues[0].path).toEqual(['name'])
})
})
describe('GlobalSearchRequestSchema Tests', () => {
it('should validate if proper input is specified for GlobalSearchRequestSchema', () => {
const result = GlobalSearchRequestSchema.safeParse({
workspaceSlug: 'workspace-slug',
search: 'search-term'
})
expect(result.success).toBe(true)
})
})
describe('GlobalSearchResponseSchema Tests', () => {
it('should validate with proper input for GlobalSearchResponseSchema', () => {
const result = GlobalSearchResponseSchema.safeParse({
projects: [
{
slug: 'project-slug',
name: 'Project Name',
description: 'Project Description'
}
],
environments: [
{
slug: 'environment-slug',
name: 'Environment Name',
description: 'Environment Description'
}
],
secrets: [
{
slug: 'secret-slug',
name: 'Secret Name',
note: 'Secret Note'
}
],
variables: [
{
slug: 'variable-slug',
name: 'Variable Name',
note: 'Variable Note'
}
]
})
expect(result.success).toBe(true)
})
it('should not validate when required fields are missing for GlobalSearchResponseSchema', () => {
const result = GlobalSearchResponseSchema.safeParse({
projects: [
{
slug: 'project-slug',
name: 'Project Name'
// description is missing
}
],
environments: [],
secrets: [],
variables: []
})
expect(result.success).toBe(false)
expect(result.error?.issues[0]?.path).toEqual([
'projects',
0,
'description'
])
})
})
})