-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathutils.test.ts
42 lines (41 loc) · 1.82 KB
/
utils.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
let originIsAllowed = (origin: string): boolean => false;
describe('utility test suite', () => {
beforeEach(() => {
jest.resetModules()
})
const setupOrigin = async (origin: string) => {
process.env.ALLOWED_ORIGINS = origin
const { originIsAllowed: method } = require('../src/utils')
originIsAllowed = method
}
it('test wildcard in origin', async () => {
process.env.ALLOWED_ORIGINS = '*'
const { originIsAllowed } = jest.requireActual('../src/utils')
expect(originIsAllowed('localhost')).toEqual(true)
})
it('test invalid origin', async () => {
process.env.ALLOWED_ORIGINS = '192.168.33.10'
const { originIsAllowed } = jest.requireActual('../src/utils')
expect(originIsAllowed('localhost')).toEqual(false)
})
it('test valid origin', async () => {
process.env.ALLOWED_ORIGINS = '192.168.33.10'
const { originIsAllowed } = jest.requireActual('../src/utils')
expect(originIsAllowed('192.168.33.10')).toEqual(true)
})
it('test multiple origins with wildcard', async () => {
process.env.ALLOWED_ORIGINS = 'localhost, 127.0.0.1, *'
const { originIsAllowed } = jest.requireActual('../src/utils')
expect(originIsAllowed('192.168.33.10')).toEqual(true)
})
it('test multiple origins with valid address', async () => {
process.env.ALLOWED_ORIGINS = 'localhost, 127.0.0.1'
const { originIsAllowed } = jest.requireActual('../src/utils')
expect(originIsAllowed('127.0.0.1')).toEqual(true)
})
it('test multiple origins with invalid address', async () => {
process.env.ALLOWED_ORIGINS = 'localhost, 127.0.0.1'
const { originIsAllowed } = jest.requireActual('../src/utils')
expect(originIsAllowed('192.168.33.10')).toEqual(false)
})
})