-
-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathpolicies.ts
71 lines (65 loc) · 1.72 KB
/
policies.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
import { expect, test } from 'vitest'
import { app } from './utils'
test('policy list filtering', async () => {
const res = await app.inject({
method: 'GET',
path: '/policies?limit=5',
})
expect(res.statusCode).toBe(200)
const policies = res.json()
expect(Array.isArray(policies)).toBe(true)
expect(policies.length).toBeLessThanOrEqual(5)
})
test('policy list with specific included schema', async () => {
const res = await app.inject({
method: 'GET',
path: '/policies?included_schema=public',
})
expect(res.statusCode).toBe(200)
const policies = res.json()
expect(Array.isArray(policies)).toBe(true)
// All policies should be in the public schema
policies.forEach((policy) => {
expect(policy.schema).toBe('public')
})
})
test('policy with invalid id', async () => {
const res = await app.inject({
method: 'GET',
path: '/policies/99999999',
})
expect(res.statusCode).toBe(404)
})
test('create policy with missing required field', async () => {
const res = await app.inject({
method: 'POST',
path: '/policies',
payload: {
name: 'test_policy',
schema: 'public',
// Missing required table field
definition: 'true',
check: 'true',
action: 'SELECT',
command: 'PERMISSIVE',
},
})
expect(res.statusCode).toBe(400)
})
test('update policy with invalid id', async () => {
const res = await app.inject({
method: 'PATCH',
path: '/policies/99999999',
payload: {
name: 'renamed_policy',
},
})
expect(res.statusCode).toBe(404)
})
test('delete policy with invalid id', async () => {
const res = await app.inject({
method: 'DELETE',
path: '/policies/99999999',
})
expect(res.statusCode).toBe(404)
})