deno.land / x / domain_functions@v1.2.0 / src / errors.test.ts

errors.test.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
import { describe, it } from 'https://deno.land/std@0.156.0/testing/bdd.ts'import { assertEquals } from 'https://deno.land/std@0.117.0/testing/asserts.ts'import { z } from 'https://deno.land/x/zod@v3.19.1/mod.ts'
import { makeDomainFunction } from './domain-functions.ts'
import { errorMessagesFor, errorMessagesForSchema, schemaError,} from './errors.ts'
const errors = [ { path: ['a'], message: 'a' }, { path: ['b'], message: 'b' }, { path: ['b'], message: 'c' },]
describe('schemaError', () => { it('returns a SchemaError from a message and a path using dot notation', () => { assertEquals(schemaError('this is an error message', 'b.c'), { message: 'this is an error message', path: ['b', 'c'], }) })})
describe('errorMessagesFor', () => { it('returns a list of error messages for a given name', () => { assertEquals(errorMessagesFor(errors, 'b'), ['b', 'c']) })
it('returns an empty list if no error messages can be found', () => { assertEquals(errorMessagesFor(errors, 'c'), []) })
it('returns a list of error messages for a deep property of the formData', async () => { const err = [{ path: ['person', '0', 'email'], message: 'Invalid email' }] assertEquals(errorMessagesFor(err, 'person.0.email'), ['Invalid email']) })})
const schema = z.object({ a: z.string(), b: z.string(),})describe('errorMessagesForSchema', () => { it('returns an object with error messages for every key of the given schema', () => { assertEquals(errorMessagesForSchema(errors, schema), { a: ['a'], b: ['b', 'c'], }) })
it('has type inference for the results of this function', () => { assertEquals(errorMessagesForSchema(errors, schema).a, ['a']) })
it('handles nested data errors', async () => { const data = { a: 'bar', b: 'foo', c: { c1: 'c1 foo', c2: 'c2 bar', }, d: { d1: 'd1 foo', d2: 'd2 bar', }, }
const schema = z.object({ a: z.string(), b: z.string(), c: z.object({ c1: z.string(), c2: z.array(z.string()), }), d: z.object({ d1: z.object({ d1a: z.string(), d1b: z.number(), }), d2: z.array(z.string()), }), }) const domainFn = makeDomainFunction(schema)(async (data) => data) const result = await domainFn(data)
const errors = errorMessagesForSchema(result.inputErrors, schema) assertEquals(errors, { c: { c2: ['Expected array, received string'] }, d: { d1: ['Expected object, received string'], d2: ['Expected array, received string'], }, }) })
it('handles nested data errors inside arrays of strings', async () => { const data = { a: 'bar', b: 'foo', c: { c1: 'c1 foo', c2: ['c2 bar', 6, { foo: 'test' }], }, d: { d1: 'd1 foo', d2: 'd2 bar', }, }
const schema = z.object({ a: z.string(), b: z.string(), c: z.object({ c1: z.string(), c2: z.array(z.string()), }), d: z.object({ d1: z.object({ d1a: z.string(), d1b: z.number(), }), d2: z.array(z.string()), }), }) const domainFn = makeDomainFunction(schema)(async (data) => data) const result = await domainFn(data)
const errors = errorMessagesForSchema(result.inputErrors, schema) assertEquals(errors, { c: { c2: { '1': ['Expected string, received number'], '2': ['Expected string, received object'], }, }, d: { d1: ['Expected object, received string'], d2: ['Expected array, received string'], }, }) })
it('handles nested data errors inside arrays of objects', async () => { const data = { a: 'bar', b: 'foo', c: { c1: 'c1 foo', c2: ['c2 bar', { c2a: 'test' }, { c2a: 1 }], }, d: { d1: 'd1 foo', d2: 'd2 bar', }, }
const schema = z.object({ a: z.string(), b: z.string(), c: z.object({ c1: z.string(), c2: z.array(z.object({ c2a: z.number() })), }), d: z.object({ d1: z.object({ d1a: z.string(), d1b: z.number(), }), d2: z.array(z.string()), }), }) const domainFn = makeDomainFunction(schema)(async (data) => data) const result = await domainFn(data)
const errors = errorMessagesForSchema(result.inputErrors, schema) assertEquals(errors, { c: { c2: { '0': ['Expected object, received string'], '1': { c2a: ['Expected number, received string'] }, }, }, d: { d1: ['Expected object, received string'], d2: ['Expected array, received string'], }, }) })})
domain_functions

Version Info

Tagged at
a year ago