-
-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathformat.ts
89 lines (84 loc) · 2.09 KB
/
format.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
import { expect, test } from 'vitest'
import { app } from './utils'
test('format SQL query', async () => {
const res = await app.inject({
method: 'POST',
path: '/query/format',
payload: { query: "SELECT id,name FROM users WHERE status='ACTIVE'" },
})
expect(res.statusCode).toBe(200)
expect(res.headers['content-type']).toContain('text/plain')
const formattedQuery = res.body
expect(formattedQuery).toMatchInlineSnapshot(`
"SELECT
id,
name
FROM
users
WHERE
status = 'ACTIVE'
"
`)
})
test('format complex SQL query', async () => {
const res = await app.inject({
method: 'POST',
path: '/query/format',
payload: {
query:
"SELECT u.id, u.name, p.title, p.created_at FROM users u JOIN posts p ON u.id = p.user_id WHERE u.status = 'ACTIVE' AND p.published = true ORDER BY p.created_at DESC LIMIT 10",
},
})
expect(res.statusCode).toBe(200)
expect(res.headers['content-type']).toContain('text/plain')
expect(res.body).toMatchInlineSnapshot(`
"SELECT
u.id,
u.name,
p.title,
p.created_at
FROM
users u
JOIN posts p ON u.id = p.user_id
WHERE
u.status = 'ACTIVE'
AND p.published = true
ORDER BY
p.created_at DESC
LIMIT
10
"
`)
})
test('format invalid SQL query', async () => {
const res = await app.inject({
method: 'POST',
path: '/query/format',
payload: { query: 'SELECT FROM WHERE;' },
})
expect(res.statusCode).toBe(200)
expect(res.headers['content-type']).toContain('text/plain')
expect(res.body).toMatchInlineSnapshot(`
"SELECT
FROM
WHERE;
"
`)
})
// TODO(andrew): Those should return 400 error code for invalid parameter
test('format empty query', async () => {
const res = await app.inject({
method: 'POST',
path: '/query/format',
payload: { query: '' },
})
expect(res.statusCode).toBe(500)
})
test('format with missing query parameter', async () => {
const res = await app.inject({
method: 'POST',
path: '/query/format',
payload: {},
})
expect(res.statusCode).toBe(500)
})