-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogic-tests.js
87 lines (69 loc) · 2.2 KB
/
logic-tests.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
const { throws, deepEqual } = require('assert');
const mod = require('./logic.js');
describe('OLSKClientKeyHeaderGuard', function test_OLSKClientKeyHeaderGuard() {
const uHeaders = function (inputData) {
return {
'x-client-key': inputData,
};
};
it('throws if param1 not object', function() {
throws(function() {
mod.OLSKClientKeyHeaderGuard(null, '');
}, /RCSErrorInputNotValid/);
});
it('throws if param2 not string', function() {
throws(function() {
mod.OLSKClientKeyHeaderGuard({}, null);
}, /RCSErrorInputNotValid/);
});
it('returns error if x-client-key not param2', function () {
deepEqual(mod.OLSKClientKeyHeaderGuard(uHeaders(Math.random().toString()), Math.random().toString()), new Error('OLSKRoutingErrorNotFound'));
});
it('returns undefined', function () {
const item = Math.random().toString();
deepEqual(mod.OLSKClientKeyHeaderGuard(uHeaders(item), item), undefined);
});
});
describe('OLSKAllowAllOriginsMiddleware', function test_OLSKAllowAllOriginsMiddleware() {
const _OLSKAllowAllOriginsMiddleware = function (inputData) {
return mod.OLSKAllowAllOriginsMiddleware({}, Object.assign({
header: (function () {}),
}, inputData), inputData.next || function () {});
};
it('throws if res not object', function() {
throws(function() {
mod.OLSKAllowAllOriginsMiddleware({}, {
res: null,
});
}, /OLSKErrorInputNotValid/);
});
it('throws if res.header not function', function() {
throws(function() {
_OLSKAllowAllOriginsMiddleware({
header: null,
});
}, /OLSKErrorInputNotValid/);
});
it('calls header', function() {
deepEqual(uCapture(function (header) {
_OLSKAllowAllOriginsMiddleware({
header,
})
}), ['Access-Control-Allow-Origin', '*']);
});
it('calls next', function() {
const item = Math.random().toString();
deepEqual(_OLSKAllowAllOriginsMiddleware({
next: (function () {
return item;
}),
}), item);
});
});
describe('OLSKCommonMiddlewares', function test_OLSKCommonMiddlewares () {
it('returns object', function () {
deepEqual(mod.OLSKCommonMiddlewares(), Object.fromEntries(Object.entries(mod).filter(function (e) {
return e[0].match(/Middleware$/) && !e[0].match(/(_|Error)/);
})));
});
});