-
-
Notifications
You must be signed in to change notification settings - Fork 323
/
Copy pathhelpers.test.ts
42 lines (36 loc) · 1.15 KB
/
helpers.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
import * as helpers from '../src/lib/helpers'
import { DEFAULT_HEADERS } from '../src/lib/constants'
test('uuid', async () => {
expect(helpers.uuid()).toMatch(/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/)
})
test('override setting defaults', async () => {
const DEFAULT_GLOBAL_OPTIONS = {
headers: DEFAULT_HEADERS,
}
const DEFAULT_DB_OPTIONS = {
schema: 'public',
}
const DEFAULT_AUTH_OPTIONS = {
autoRefreshToken: true,
persistSession: true,
detectSessionInUrl: true,
}
let defaults = {
db: DEFAULT_DB_OPTIONS,
auth: DEFAULT_AUTH_OPTIONS,
global: DEFAULT_GLOBAL_OPTIONS,
}
let autoRefreshOption = false
let options = {
auth: {
autoRefreshToken: autoRefreshOption,
},
}
let settings = helpers.applySettingDefaults(options, defaults)
expect(settings.auth.autoRefreshToken).toBe(autoRefreshOption)
// Existing default properties should not be overwritten
expect(settings.auth.persistSession).not.toBeNull()
expect(settings.global.headers).toBe(DEFAULT_HEADERS)
// Existing property values should remain constant
expect(settings.db.schema).toBe(defaults.db.schema)
})