-
Notifications
You must be signed in to change notification settings - Fork 13
/
jswiremock.js
262 lines (222 loc) · 7.19 KB
/
jswiremock.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
/**
* Created by jlidder on 7/15/15.
*/
var express = require('express');
var bodyParser = require('body-parser');
var app = express();
var urlParser = require('./UrlParser');
exports.jswiremock = function(port, bodyEncoding){
switch((bodyEncoding || 'url').toLowerCase()){
case 'json':
app.use(bodyParser.json());
break;
case 'url':
default:
app.use(bodyParser.urlencoded({
extended: true
}));
break;
}
server = app.listen(port, function () {
server.address().address;
server.address().port;
});
global.getRequestStubs = [];
global.postRequestStubs = [];
global.putRequestStubs = [];
global.deleteRequestStubs = [];
global.getRequests = [];
global.postRequests = [];
this.addStub = function(mockRequest){
if(mockRequest.getRequestType() === "GET") {
global.getRequestStubs.push(mockRequest);
} else if(mockRequest.getRequestType() === "POST"){
global.postRequestStubs.push(mockRequest);
}
};
this.stopJSWireMock = function(){
global.getRequestStubs = [];
global.postRequestStubs = [];
global.putRequestStubs = [];
global.deleteRequestStubs = [];
global.getRequests = [];
global.postRequests = [];
server.close();
setImmediate(function(){server.emit('close')});
};
this.verify = function (count, mockRequest) {
var array;
if (mockRequest.getRequestType() === "GET") {
array = global.getRequests;
} else if (mockRequest.getRequestType() === "POST") {
array = global.postRequests;
}
var counter = 0;
for (var i in array) {
if (urlParser.isMatchingStub(urlParser.buildUrlStorageLinkedList(array[i].originalUrl), mockRequest)) {
if (mockRequest.getRequestType() === "POST") {
var bodiesMatch = recursiveBodyMatch(mockRequest.getPostParams(), array[i].body);
if (bodiesMatch) {
counter++;
}
} else {
counter++;
}
}
}
return counter === count;
};
var recursiveBodyMatch = function(bodyOne, bodyTwo){
if(Array.isArray(bodyOne)){
if(bodyOne.length != bodyTwo.length)
return false;
for(var i = 0; i < bodyOne.length; i++){
if(bodyTwo[i] == undefined || !recursiveBodyMatch(bodyOne[i], bodyTwo[i]))
return false;
}
return true;
}
if(typeof(bodyOne) == "object"){
for(var key in bodyOne){
if(bodyTwo[key] == undefined || !recursiveBodyMatch(bodyOne[key], bodyTwo[key]))
return false;
}
return true;
}
var dateCast = Date.parse(bodyOne);
if(!isNaN(dateCast)){
if(dateCast != Date.parse(bodyTwo))
return false;
return true;
}
return bodyOne == bodyTwo;
}
this.buildResponse = function(res){
//TODO
};
app.use('/*', function (req, res, next) {
res.header('Access-Control-Allow-Origin', req.headers.origin);
res.header('Access-Control-Allow-Credentials', 'true');
res.header('Access-Control-Allow-Methods', 'POST, GET, PUT, DELETE, OPTIONS');
res.header('Access-Control-Allow-Headers', req.headers['access-control-request-headers']);
next();
});
app.get('/*', function (req, res) {
getRequests.push(req);
var returnedStub = urlParser.hasMatchingStub(urlParser.buildUrlStorageLinkedList(req.originalUrl), getRequestStubs);
if (returnedStub != null){
for(var key in returnedStub.getMockResponse().getHeader()){
res.set(key, returnedStub.getMockResponse().getHeader()[key]);
}
res.status(returnedStub.getMockResponse().getStatus());
res.send(returnedStub.getMockResponse().getBody());
}
else{
res.status(404);
res.send("Does not exist");
}
});
app.post('/*', function (req, res) {
postRequests.push(req);
var returnedStub = urlParser.hasMatchingStub(urlParser.buildUrlStorageLinkedList(req.originalUrl), postRequestStubs);
if (returnedStub != null){
//TODO - ONLY VERIFY POST REQUEST PARAMS
for(key in returnedStub.getPostParams()){
if(req.body[key] != null){
if(req.body[key] === returnedStub.getPostParams()[key]){
continue;
}
} else {
res.status(404);
res.send("Does not exist");
}
}
for(var key in returnedStub.getMockResponse().getHeader()){
res.set(key, returnedStub.getMockResponse().getHeader()[key]);
}
res.status(returnedStub.getMockResponse().getStatus());
res.send(returnedStub.getMockResponse().getBody());
}
else{
res.status(404);
res.send("Does not exist");
}
});
return this;
};
exports.urlEqualTo = function(url){
var mockRequest = new MockRequest(url);
return mockRequest;
};
exports.get = function(mockRequest){
mockRequest.setRequestType("GET");
return mockRequest;
};
exports.post= function(mockRequest, postParams){
mockRequest.setRequestType("POST");
mockRequest.setPostParams(postParams);
return mockRequest;
};
exports.withPostParams = function(postParams){
return postParams;
};
exports.stubFor = function(jsWireMock, mockRequest){
jsWireMock.addStub(mockRequest);
};
exports.a_response = function(){
return new MockResponse();
};
function MockRequest(url) {
this.url = urlParser.buildUrlStorageLinkedList(url);
this.mockResponse = null;
this.requestType = null;
this.postParams = null;
this.getUrl = function(){
return this.url;
};
this.getMockResponse = function(){
return this.mockResponse;
};
this.willReturn = function(mockResponse){
this.mockResponse = mockResponse;
return this;
};
this.setRequestType = function(requestType){
this.requestType = requestType;
};
this.getRequestType = function(){
return this.requestType;
};
this.setPostParams = function(postParams){
this.postParams = postParams;
};
this.getPostParams = function(){
return this.postParams;
};
}
function MockResponse(){
this.status = null;
this.withStatus = function(status){
this.status = status;
return this;
};
this.getStatus = function(){
return this.status;
};
this.body = null;
this.withBody = function(body){
this.body = body;
return this;
};
this.getBody = function(){
return this.body;
};
this.header = null;
this.withHeader = function(header){
this.header = header;
return this;
};
this.getHeader = function(){
return this.header;
};
}