forked from jeremydaly/lambda-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunit.js
More file actions
64 lines (52 loc) · 1.77 KB
/
Copy pathunit.js
File metadata and controls
64 lines (52 loc) · 1.77 KB
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
'use strict';
const Promise = require('bluebird') // Promise library
const expect = require('chai').expect // Assertion library
// 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).to.deep.equal({
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).to.deep.equal({ 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).to.deep.equal({ testPath: { _GET: { route: '/testPath' } } })
// }) // end it
}) // end UNIT tests