deno.land / x / zod@v3.19.1 / __tests__ / deepmasking.test.ts

deepmasking.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
// @ts-ignore TS6133import { expect } from "https://deno.land/x/expect@v0.2.6/mod.ts";const test = Deno.test;
import * as z from "../index.ts";
test("test", () => { z;});
// const fish = z.object({// name: z.string(),// props: z.object({// color: z.string(),// numScales: z.number(),// }),// });
// const nonStrict = z// .object({// name: z.string(),// color: z.string(),// })// .nonstrict();
// test('object pick type', () => {// const modNonStrictFish = nonStrict.omit({ name: true });// modNonStrictFish.parse({ color: 'asdf' });
// const bad1 = () => fish.pick({ props: { unknown: true } } as any);// const bad2 = () => fish.omit({ name: true, props: { unknown: true } } as any);
// expect(bad1).toThrow();// expect(bad2).toThrow();// });
// test('f1', () => {// const f1 = fish.pick(true);// f1.parse({ name: 'a', props: { color: 'b', numScales: 3 } });// });// test('f2', () => {// const f2 = fish.pick({ props: true });// f2.parse({ props: { color: 'asdf', numScales: 1 } });// const badcheck2 = () => f2.parse({ name: 'a', props: { color: 'b', numScales: 3 } } as any);// expect(badcheck2).toThrow();// });// test('f3', () => {// const f3 = fish.pick({ props: { color: true } });// f3.parse({ props: { color: 'b' } });// const badcheck3 = () => f3.parse({ name: 'a', props: { color: 'b', numScales: 3 } } as any);// expect(badcheck3).toThrow();// });// test('f4', () => {// const badcheck4 = () => fish.pick({ props: { color: true, unknown: true } });// expect(badcheck4).toThrow();// });// test('f6', () => {// const f6 = fish.omit({ props: true });// const badcheck6 = () => f6.parse({ name: 'a', props: { color: 'b', numScales: 3 } } as any);// f6.parse({ name: 'adsf' });// expect(badcheck6).toThrow();// });// test('f7', () => {// const f7 = fish.omit({ props: { color: true } });// f7.parse({ name: 'a', props: { numScales: 3 } });// const badcheck7 = () => f7.parse({ name: 'a', props: { color: 'b', numScales: 3 } } as any);// expect(badcheck7).toThrow();// });// test('f8', () => {// const badcheck8 = () => fish.omit({ props: { color: true, unknown: true } });// expect(badcheck8).toThrow();// });// test('f9', () => {// const f9 = nonStrict.pick(true);// f9.parse({ name: 'a', color: 'asdf' });// });// test('f10', () => {// const f10 = nonStrict.pick({ name: true });// f10.parse({ name: 'a' });// const val = f10.parse({ name: 'a', color: 'b' });// expect(val).toEqual({ name: 'a' });// });// test('f12', () => {// const badfcheck12 = () => nonStrict.omit({ color: true, asdf: true });// expect(badfcheck12).toThrow();// });
// test('array masking', () => {// const fishArray = z.array(fish);// const modFishArray = fishArray.pick({// name: true,// props: {// numScales: true,// },// });
// modFishArray.parse([{ name: 'fish', props: { numScales: 12 } }]);// const bad1 = () => modFishArray.parse([{ name: 'fish', props: { numScales: 12, color: 'asdf' } }] as any);// expect(bad1).toThrow();// });
// test('array masking', () => {// const fishArray = z.array(fish);// const fail = () =>// fishArray.pick({// name: true,// props: {// whatever: true,// },// } as any);// expect(fail).toThrow();// });
// test('array masking', () => {// const fishArray = z.array(fish);// const fail = () =>// fishArray.omit({// whateve: true,// } as any);// expect(fail).toThrow();// });
// test('array masking', () => {// const fishArray = z.array(fish);// const modFishList = fishArray.omit({// name: true,// props: {// color: true,// },// });
// modFishList.parse([{ props: { numScales: 12 } }]);// const fail = () => modFishList.parse([{ name: 'hello', props: { numScales: 12 } }] as any);// expect(fail).toThrow();// });
// test('primitive array masking', () => {// const fishArray = z.array(z.number());// const fail = () => fishArray.pick({} as any);// expect(fail).toThrow();// });
// test('other array masking', () => {// const fishArray = z.array(z.array(z.number()));// const fail = () => fishArray.pick({} as any);// expect(fail).toThrow();// });
// test('invalid mask #1', () => {// const fail = () => fish.pick(1 as any);// expect(fail).toThrow();// });
// test('invalid mask #2', () => {// const fail = () => fish.pick([] as any);// expect(fail).toThrow();// });
// test('invalid mask #3', () => {// const fail = () => fish.pick(false as any);// expect(fail).toThrow();// });
// test('invalid mask #4', () => {// const fail = () => fish.pick('asdf' as any);// expect(fail).toThrow();// });
// test('invalid mask #5', () => {// const fail = () => fish.omit(1 as any);// expect(fail).toThrow();// });
// test('invalid mask #6', () => {// const fail = () => fish.omit([] as any);// expect(fail).toThrow();// });
// test('invalid mask #7', () => {// const fail = () => fish.omit(false as any);// expect(fail).toThrow();// });
// test('invalid mask #8', () => {// const fail = () => fish.omit('asdf' as any);// expect(fail).toThrow();// });
zod

Version Info

Tagged at
a year ago