-
-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathgenerators.ts
51 lines (46 loc) · 1.41 KB
/
generators.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
import { expect, test } from 'vitest'
import { app } from './utils'
test('typescript generator route', async () => {
const res = await app.inject({
method: 'GET',
path: '/generators/typescript',
})
expect(res.statusCode).toBe(200)
expect(res.headers['content-type']).toContain('text/plain')
expect(res.body).contain('public')
})
test('go generator route', async () => {
const res = await app.inject({
method: 'GET',
path: '/generators/go',
})
expect(res.statusCode).toBe(200)
expect(res.headers['content-type']).toContain('text/plain')
expect(res.body).toBeTruthy()
})
test('swift generator route', async () => {
const res = await app.inject({
method: 'GET',
path: '/generators/swift',
})
expect(res.statusCode).toBe(200)
expect(res.headers['content-type']).toContain('text/plain')
expect(res.body).toBeTruthy()
})
test('generator routes with includedSchemas parameter', async () => {
const res = await app.inject({
method: 'GET',
path: '/generators/typescript?included_schemas=private',
})
expect(res.statusCode).toBe(200)
expect(res.headers['content-type']).toContain('text/plain')
// the only schema is excluded database should be empty
expect(res.body).toContain('Database = {}')
})
test('invalid generator route', async () => {
const res = await app.inject({
method: 'GET',
path: '/generators/openapi',
})
expect(res.statusCode).toBe(404)
})