-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathunit.js
61 lines (50 loc) · 1.69 KB
/
unit.js
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
'use strict';
// Init API instance
const api = require('../index')({ version: 'v1.0' })
// NOTE: Set test to true
api._test = true;
let event = {
httpMethod: 'get',
path: '/test',
body: {},
headers: {
'Content-Type': 'application/json'
}
}
/******************************************************************************/
/*** BEGIN TESTS ***/
/******************************************************************************/
describe('Unit Tests:', function() {
it('setRoute', async function() {
// let routes = {}
// api.setRoute(routes,'GET', { route: '/testPath' }, ['testPath'])
// api.setRoute(routes,'GET', { route: '/testPath/testx' }, ['testPath','testx'])
// expect(routes).toEqual({
// ROUTES: {
// testPath: {
// METHODS: {
// GET: { route: '/testPath' }
// },
// ROUTES: {
// testx: {
// METHODS: {
// GET: { route: '/testPath/testx' }
// }
// }
// }
// }
// }
// })
}) // end it
// it('setRoute - null path', async function() {
// let routes = { testPath: null }
// api.setRoute(routes,{['_GET']: { route: '/testPath/testx' } },'testPath.testx')
// expect(routes).toEqual({ testPath: { testx: { _GET: { route: '/testPath/testx' } } } })
// }) // end it
//
// it('setRoute - null single path', async function() {
// let routes = { testPath: null }
// api.setRoute(routes,{['_GET']: { route: '/testPath' } },['testPath'])
// expect(routes).toEqual({ testPath: { _GET: { route: '/testPath' } } })
// }) // end it
}) // end UNIT tests