forked from prisma/prisma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Validate.test.ts
402 lines (343 loc) · 15.5 KB
/
Validate.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
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
/* eslint-disable jest/no-identical-title */
import path from 'node:path'
import { jestConsoleContext, jestContext } from '@prisma/get-platform'
import { serializeQueryEngineName } from '@prisma/internals'
import { Validate } from '../../Validate'
const ctx = jestContext.new().add(jestConsoleContext()).assemble()
const originalEnv = { ...process.env }
describe('validate', () => {
beforeEach(() => {
process.env = { ...originalEnv }
})
afterAll(() => {
process.env = { ...originalEnv }
})
describe('multi-schema-files with `prismaSchemaFolder`', () => {
describe('valid schemas', () => {
it('should prefer single file to the multi-schema alternatives', async () => {
ctx.fixture('multi-schema-files/valid')
expect(ctx.tree()).toMatchInlineSnapshot(`
"
└── prisma/
└── schema/
└── schema1.prisma
└── schema2.prisma
└── custom.prisma
└── schema.prisma
└── custom.prisma
└── schema.prisma
"
`)
// implicit: single schema file (`schema.prisma`)
await expect(Validate.new().parse([])).resolves.toMatchInlineSnapshot(
`"The schema at schema.prisma is valid 🚀"`,
)
// explicit: single schema file (`schema.prisma`)
await expect(Validate.new().parse(['--schema=schema.prisma'])).resolves.toMatchInlineSnapshot(
`"The schema at schema.prisma is valid 🚀"`,
)
// explicit: single schema file (`custom.prisma`)
await expect(Validate.new().parse(['--schema=custom.prisma'])).resolves.toMatchInlineSnapshot(
`"The schema at custom.prisma is valid 🚀"`,
)
// explicit: single schema file (`prisma/custom.prisma`)
await expect(Validate.new().parse(['--schema=prisma/custom.prisma'])).resolves.toMatchInlineSnapshot(
`"The schema at prisma/custom.prisma is valid 🚀"`,
)
// explicit: multi schema files with `prismaSchemaFolder` enabled
await expect(Validate.new().parse(['--schema=prisma/schema'])).resolves.toMatchInlineSnapshot(
`"The schemas at prisma/schema are valid 🚀"`,
)
await ctx.fs.removeAsync('schema.prisma')
expect(ctx.tree()).toMatchInlineSnapshot(`
"
└── prisma/
└── schema/
└── schema1.prisma
└── schema2.prisma
└── custom.prisma
└── schema.prisma
└── custom.prisma
"
`)
// implicit: single schema file (`prisma/schema.prisma`)
await expect(Validate.new().parse([])).rejects.toThrowErrorMatchingInlineSnapshot(
`"Found Prisma Schemas at both \`prisma/schema.prisma\` and \`prisma/schema\`. Please remove one."`,
)
await ctx.fs.removeAsync(path.join('prisma', 'schema.prisma'))
expect(ctx.tree()).toMatchInlineSnapshot(`
"
└── prisma/
└── schema/
└── schema1.prisma
└── schema2.prisma
└── custom.prisma
└── custom.prisma
"
`)
// implicit: multi schema files with `prismaSchemaFolder` enabled
await expect(Validate.new().parse([])).resolves.toMatchInlineSnapshot(
`"The schemas at prisma/schema are valid 🚀"`,
)
})
})
describe('invalid schemas', () => {
it('parses multi schemas when the file containing the config blocks (`generator`, `datasource`) is valid', async () => {
ctx.fixture('multi-schema-files/invalid/valid_config_file')
expect(ctx.tree()).toMatchInlineSnapshot(`
"
└── prisma/
└── schema/
└── config.prisma
└── schema.prisma
"
`)
await expect(Validate.new().parse([])).rejects.toMatchInlineSnapshot(`
"Prisma schema validation - (validate wasm)
Error code: P1012
error: Argument "value" is missing.
--> prisma/schema/schema.prisma:2
|
1 | model Link {
2 | id String @id @default()
|
Validation Error Count: 1
[Context: validate]
Prisma CLI Version : 0.0.0"
`)
})
it('reports multiple errors', async () => {
ctx.fixture('multi-schema-files/invalid/multiple-errors')
expect(ctx.tree()).toMatchInlineSnapshot(`
"
└── prisma/
└── schema/
└── Blog.prisma
└── config.prisma
└── User.prisma
"
`)
await expect(Validate.new().parse([])).rejects.toMatchInlineSnapshot(`
"Prisma schema validation - (validate wasm)
Error code: P1012
error: Error validating model "User": Each model must have at least one unique criteria that has only required fields. Either mark a single field with \`@id\`, \`@unique\` or add a multi field criterion with \`@@id([])\` or \`@@unique([])\` to the model.
--> prisma/schema/User.prisma:1
|
|
1 | model User {
2 | id Int
3 |
4 | blogs Blog[]
5 | }
|
error: Error parsing attribute "@relation": The relation field \`owner\` on Model \`Blog\` must specify the \`fields\` argument in the @relation attribute. You can run \`prisma format\` to fix this automatically.
--> prisma/schema/Blog.prisma:5
|
4 | ownerId Int
5 | owner User
6 | }
|
error: Error parsing attribute "@relation": The relation field \`owner\` on Model \`Blog\` must specify the \`references\` argument in the @relation attribute.
--> prisma/schema/Blog.prisma:5
|
4 | ownerId Int
5 | owner User
6 | }
|
Validation Error Count: 3
[Context: validate]
Prisma CLI Version : 0.0.0"
`)
})
it('parses multi schemas when the file containing the config blocks (`generator`, `datasource`) is valid', async () => {
ctx.fixture('multi-schema-files/invalid/invalid_config_file')
// - `prisma/schema/schema_with_config.prisma` is invalid (it contains valid config + invalid models)
// - `prisma/schema/schema.prisma` is valid
expect(ctx.tree()).toMatchInlineSnapshot(`
"
└── prisma/
└── schema/
└── schema_with_config.prisma
└── schema.prisma
"
`)
await expect(Validate.new().parse([])).rejects.toMatchInlineSnapshot(`
"Prisma schema validation - (validate wasm)
Error code: P1012
error: Error parsing attribute "@default": The function \`now()\` cannot be used on fields of type \`Int\`.
--> prisma/schema/schema_with_config.prisma:12
|
11 | model User {
12 | id Int @id @default(now())
|
Validation Error Count: 1
[Context: validate]
Prisma CLI Version : 0.0.0"
`)
})
it('correctly reports error if config blocks (`generator`, `datasource`) are invalid', async () => {
ctx.fixture('multi-schema-files/invalid/invalid_config_blocks')
// - `prisma/schema/config.prisma` is invalid (it contains invalid attributes)
// - `prisma/schema/schema.prisma` is valid
expect(ctx.tree()).toMatchInlineSnapshot(`
"
└── prisma/
└── schema/
└── config.prisma
└── schema.prisma
"
`)
await expect(Validate.new().parse([])).rejects.toMatchInlineSnapshot(`
"Prisma schema validation - (get-config wasm)
Error code: P1012
error: Property not known: "custom".
--> prisma/schema/config.prisma:8
|
7 | provider = "sqlite"
8 | custom = "attr"
|
Validation Error Count: 1
[Context: getConfig]
Prisma CLI Version : 0.0.0"
`)
})
it('should throw conflict error even if schemas are invalid', async () => {
ctx.fixture('multi-schema-files/invalid/default_schema_invalid-multi_schema_valid')
expect(ctx.tree()).toMatchInlineSnapshot(`
"
└── prisma/
└── schema/
└── schema1.prisma
└── schema2.prisma
└── skip.txt
└── schema.prisma
"
`)
await expect(Validate.new().parse([])).rejects.toThrowErrorMatchingInlineSnapshot(
`"Found Prisma Schemas at both \`prisma/schema.prisma\` and \`prisma/schema\`. Please remove one."`,
)
await ctx.fs.removeAsync(path.join('prisma', 'schema.prisma'))
expect(ctx.tree()).toMatchInlineSnapshot(`
"
└── prisma/
└── schema/
└── schema1.prisma
└── schema2.prisma
└── skip.txt
"
`)
// implicit: multi schema files (`prisma/schema`)
await expect(Validate.new().parse([])).resolves.toMatchInlineSnapshot(
`"The schemas at prisma/schema are valid 🚀"`,
)
})
})
})
it('should succeed if schema is valid', async () => {
ctx.fixture('example-project/prisma')
await expect(Validate.new().parse(['--schema=schema.prisma'])).resolves.toContain('is valid')
})
it('should throw if schema is invalid', async () => {
ctx.fixture('example-project/prisma')
await expect(Validate.new().parse(['--schema=broken.prisma'])).rejects.toThrow('Prisma schema validation')
})
it('should throw if env var is not set', async () => {
ctx.fixture('example-project/prisma')
await expect(Validate.new().parse(['--schema=env-does-not-exists.prisma'])).rejects.toThrow(
'Environment variable not found',
)
})
it('should succeed and show a warning on stderr (preview feature deprecated)', async () => {
ctx.fixture('lint-warnings')
await expect(Validate.new().parse(['--schema=preview-feature-deprecated.prisma'])).resolves.toBeTruthy()
// stderr
expect(ctx.mocked['console.warn'].mock.calls.join('\n')).toMatchInlineSnapshot(`
"
Prisma schema warning:
- Preview feature "nativeTypes" is deprecated. The functionality can be used without specifying it as a preview feature."
`)
expect(ctx.mocked['console.error'].mock.calls.join('\n')).toMatchInlineSnapshot(`""`)
})
it('should throw with an error and show a warning on stderr (preview feature deprecated)', async () => {
ctx.fixture('lint-warnings')
await expect(Validate.new().parse(['--schema=preview-feature-deprecated-and-error.prisma'])).rejects.toThrow(
'P1012',
)
// stderr
expect(ctx.mocked['console.warn'].mock.calls.join('\n')).toMatchInlineSnapshot(`
"
Prisma schema warning:
- Preview feature "nativeTypes" is deprecated. The functionality can be used without specifying it as a preview feature."
`)
expect(ctx.mocked['console.error'].mock.calls.join('\n')).toMatchInlineSnapshot(`""`)
})
it('should succeed and NOT show a warning when PRISMA_DISABLE_WARNINGS is truthy', async () => {
ctx.fixture('lint-warnings')
process.env.PRISMA_DISABLE_WARNINGS = 'true'
await expect(Validate.new().parse(['--schema=preview-feature-deprecated.prisma'])).resolves.toBeTruthy()
// stderr
expect(ctx.mocked['console.warn'].mock.calls.join('\n')).toEqual('')
expect(ctx.mocked['console.error'].mock.calls.join('\n')).toEqual('')
})
describe('referential actions', () => {
beforeEach(() => {
ctx.fixture('referential-actions/no-action/relationMode-prisma')
})
it('should reject NoAction referential action on Postgres when relationMode = "prisma"', async () => {
expect.assertions(1)
try {
await Validate.new().parse(['--schema', './prisma/postgres.prisma'])
} catch (e) {
expect(serializeQueryEngineName(e.message)).toMatchInlineSnapshot(`
"Prisma schema validation - (validate wasm)
Error code: P1012
error: Error validating: Invalid referential action: \`NoAction\`. Allowed values: (\`Cascade\`, \`Restrict\`, \`SetNull\`). \`NoAction\` is not implemented for Postgres when using \`relationMode = "prisma"\`, you could try using \`Restrict\` instead. Learn more at https://pris.ly/d/relation-mode
--> prisma/postgres.prisma:21
|
20 | id String @id @default(cuid())
21 | user SomeUser @relation(fields: [userId], references: [id], onUpdate: NoAction)
|
error: Error validating: Invalid referential action: \`NoAction\`. Allowed values: (\`Cascade\`, \`Restrict\`, \`SetNull\`). \`NoAction\` is not implemented for Postgres when using \`relationMode = "prisma"\`, you could try using \`Restrict\` instead. Learn more at https://pris.ly/d/relation-mode
--> prisma/postgres.prisma:28
|
27 | id String @id @default(cuid())
28 | user SomeUser @relation(fields: [userId], references: [id], onDelete: NoAction)
|
Validation Error Count: 2
[Context: validate]
Prisma CLI Version : 0.0.0"
`)
}
})
it('should reject NoAction referential action on sqlite when relationMode = "prisma"', async () => {
expect.assertions(1)
try {
await Validate.new().parse(['--schema', './prisma/postgres.prisma'])
} catch (e) {
expect(serializeQueryEngineName(e.message)).toMatchInlineSnapshot(`
"Prisma schema validation - (validate wasm)
Error code: P1012
error: Error validating: Invalid referential action: \`NoAction\`. Allowed values: (\`Cascade\`, \`Restrict\`, \`SetNull\`). \`NoAction\` is not implemented for Postgres when using \`relationMode = "prisma"\`, you could try using \`Restrict\` instead. Learn more at https://pris.ly/d/relation-mode
--> prisma/postgres.prisma:21
|
20 | id String @id @default(cuid())
21 | user SomeUser @relation(fields: [userId], references: [id], onUpdate: NoAction)
|
error: Error validating: Invalid referential action: \`NoAction\`. Allowed values: (\`Cascade\`, \`Restrict\`, \`SetNull\`). \`NoAction\` is not implemented for Postgres when using \`relationMode = "prisma"\`, you could try using \`Restrict\` instead. Learn more at https://pris.ly/d/relation-mode
--> prisma/postgres.prisma:28
|
27 | id String @id @default(cuid())
28 | user SomeUser @relation(fields: [userId], references: [id], onDelete: NoAction)
|
Validation Error Count: 2
[Context: validate]
Prisma CLI Version : 0.0.0"
`)
}
})
it('should accept NoAction referential action on e.g. MySQL when relationMode = "prisma"', async () => {
const result = await Validate.new().parse(['--schema', './prisma/mysql.prisma'])
expect(result).toBeTruthy()
})
})
})