-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapiSchemas.spec.ts
More file actions
216 lines (197 loc) · 6.44 KB
/
apiSchemas.spec.ts
File metadata and controls
216 lines (197 loc) · 6.44 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
import { describe, expect, it } from 'vitest'
import { z } from 'zod/v4'
import {
encodedCursorMandatoryPaginationSchema,
encodedCursorOptionalPaginationSchema,
paginatedResponseSchema,
} from './apiSchemas.ts'
import { encodeCursor } from './cursorCodec.ts'
describe('apiSchemas', () => {
describe('encoded cursor pagination schemas', () => {
const uuid = '00000000-0000-0000-0000-000000000000'
const cursorSchema = z.object({
id: z.guid(),
name: z.string(),
})
type cursorType = z.infer<typeof cursorSchema>
describe('encodedCursorMandatoryPaginationSchema', () => {
const schema = encodedCursorMandatoryPaginationSchema(cursorSchema)
type schemaType = z.infer<typeof schema>
type schemaTypeInput = z.input<typeof schema>
it('should parse object and return correct type', () => {
const object: schemaTypeInput = {
limit: 1,
before: encodeCursor({ id: uuid, name: 'apple' }),
}
const result: schemaType = schema.parse(object)
expect(result).toEqual({
limit: 1,
before: { id: uuid, name: 'apple' },
} satisfies schemaType)
})
it('should decode encoded number cursor and return correct type', () => {
const numberSchema = encodedCursorMandatoryPaginationSchema(z.number())
const result = numberSchema.parse({
limit: 10,
after: encodeCursor(300),
} satisfies z.input<typeof numberSchema>)
expect(result).toEqual({
limit: 10,
after: 300,
} satisfies z.infer<typeof numberSchema>)
})
it('should ignore undefined cursor', () => {
const object: schemaTypeInput = {
limit: 1,
before: '',
}
const result: schemaType = schema.parse(object)
expect(result).toEqual({
limit: 1,
before: undefined,
} satisfies schemaType)
})
it('should ignore empty cursor', () => {
const object: schemaTypeInput = {
limit: 1,
before: '',
}
const result: schemaType = schema.parse(object)
expect(result).toEqual({
limit: 1,
before: undefined,
} satisfies schemaType)
})
it('wrong cursor type should produce error', () => {
const result = schema.safeParse({ limit: 10, after: {} })
expect(result.success).toBe(false)
expect(result.error).toBeDefined()
expect(result.error).toMatchInlineSnapshot(`
[ZodError: [
{
"expected": "string",
"code": "invalid_type",
"path": [
"after"
],
"message": "Invalid input: expected string, received object"
}
]]
`)
})
it('wrong cursor string should produce error', () => {
const result = schema.safeParse({
limit: 10,
after: 'heyo',
})
expect(result.success).toBe(false)
expect(result.error).toBeDefined()
expect(result.error).toMatchObject({
issues: [
{
message: 'Invalid cursor',
code: 'custom',
params: { message: expect.any(String) },
path: ['after'],
},
],
name: 'ZodError',
})
})
it('wrong cursor object should produce error', () => {
const schema = encodedCursorMandatoryPaginationSchema(cursorSchema)
const result = schema.safeParse({
limit: 10,
after: encodeCursor({
id: '1',
name: 'apple',
} satisfies cursorType),
})
expect(result.success).toBe(false)
expect(result.error).toBeDefined()
expect(result.error).toMatchInlineSnapshot(`
[ZodError: [
{
"origin": "string",
"code": "invalid_format",
"format": "uuid",
"pattern": "/^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$/",
"path": [
"after",
"id"
],
"message": "Invalid UUID"
}
]]
`)
})
it('should fail if encoded number does not match schema', () => {
const positiveNumberSchema = encodedCursorMandatoryPaginationSchema(z.number().positive())
const result = positiveNumberSchema.safeParse({
limit: 10,
after: encodeCursor(-5),
})
expect(result.success).toBe(false)
expect(result.error).toMatchInlineSnapshot(`
[ZodError: [
{
"origin": "number",
"code": "too_small",
"minimum": 0,
"inclusive": false,
"path": [
"after"
],
"message": "Too small: expected number to be >0"
}
]]
`)
})
})
describe('encodedCursorOptionalPaginationSchema', () => {
const schema = encodedCursorOptionalPaginationSchema(cursorSchema)
type schemaType = z.infer<typeof schema>
type schemaTypeInput = z.input<typeof schema>
it('limit is optional', () => {
const object: schemaTypeInput = {
before: encodeCursor({ id: uuid, name: 'apple' }),
}
const result: schemaType = schema.parse(object)
expect(result).toEqual({
before: { id: uuid, name: 'apple' },
} satisfies schemaType)
})
})
describe('paginatedResponseSchema', () => {
const objectSchema = z.object({
id: z.string().min(1),
})
const pageSchema = paginatedResponseSchema(objectSchema)
type pageType = z.infer<typeof pageSchema>
it('validation success', () => {
const page: pageType = {
data: [{ id: '1' }],
meta: {
count: 1,
cursor: '1',
hasMore: false,
},
}
const result = pageSchema.safeParse(page)
expect(result.success).toBe(true)
})
it('validation error', () => {
const page: pageType = {
data: [{ fake: '1' }] as any,
meta: {
count: 1,
cursor: '1',
hasMore: false,
},
}
const result = pageSchema.safeParse(page)
expect(result.success).toBe(false)
})
})
})
})