forked from mock-server/mockserver-client-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmockServerClient.js
More file actions
529 lines (509 loc) · 21.3 KB
/
mockServerClient.js
File metadata and controls
529 lines (509 loc) · 21.3 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
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
/*
* mockserver
* http://mock-server.com
*
* Copyright (c) 2014 James Bloom
* Licensed under the Apache License, Version 2.0
*/
var mockServerClient;
(function () {
"use strict";
var makeRequest = (typeof require !== 'undefined' ? require('./sendRequest').sendRequest : function (host, port, path, jsonBody, resolveCallback) {
var body = (typeof jsonBody === "string" ? jsonBody : JSON.stringify(jsonBody || ""));
var url = 'http://' + host + ':' + port + path;
return {
then: function (sucess, error) {
try {
var xmlhttp = new XMLHttpRequest();
xmlhttp.addEventListener("load", (function (sucess, error) {
return function () {
sucess && sucess({
statusCode: this.status,
description: this.status + " " + this.statusText,
body: this.responseText
});
};
})(sucess, error));
xmlhttp.open('PUT', url);
xmlhttp.setRequestHeader("Content-Type", "application/json; charset=utf-8");
xmlhttp.send(body);
} catch (e) {
error && error(e);
}
}
};
});
/**
* Start the client communicating to a MockServer at the specified host and port
* for example:
*
* var client = mockServerClient("localhost", 1080);
*
* @param host the host for the MockServer to communicate with
* @param port the port for the MockServer to communicate with
* @param contextPath the context path if MockServer was deployed as a war
*/
mockServerClient = function (host, port, contextPath) {
var cleanedContextPath = (function (contextPath) {
if (contextPath) {
if (!contextPath.endsWith("/")) {
contextPath += "/";
}
if (!contextPath.startsWith("/")) {
contextPath = "/" + contextPath;
}
return contextPath;
} else {
return '';
}
})(contextPath);
/**
* The default headers added to to the mocked response when using mockSimpleResponse(...)
*/
var defaultResponseHeaders = [
{"name": "Content-Type", "values": ["application/json; charset=utf-8"]},
{"name": "Cache-Control", "values": ["no-cache, no-store"]}
];
var defaultRequestHeaders = [];
var arrayUniqueConcatenate = function (arrayTarget, arraySource) {
if (arraySource) {
if (arrayTarget) {
for (var i = 0; i < arraySource.length; i++) {
var arrayTargetAlreadyHasValue = false;
for (var j = 0; j < arrayTarget.length; j++) {
if (JSON.stringify(arraySource[i]) === JSON.stringify(arrayTarget[j])) {
arrayTargetAlreadyHasValue = true;
}
}
if (!arrayTargetAlreadyHasValue) {
arrayTarget.push(arraySource[i]);
}
}
} else {
arrayTarget = arraySource;
}
}
return arrayTarget;
};
var createResponseMatcher = function (path) {
return {
method: "",
path: path,
body: "",
headers: defaultRequestHeaders,
cookies: [],
queryStringParameters: []
};
};
var createExpectation = function (path, responseBody, statusCode) {
return {
httpRequest: createResponseMatcher(path),
httpResponse: {
statusCode: statusCode || 200,
body: JSON.stringify(responseBody),
cookies: [],
headers: defaultResponseHeaders,
delay: {
timeUnit: "MICROSECONDS",
value: 0
}
},
times: {
remainingTimes: 1,
unlimited: false
}
};
};
var createExpectationWithCallback = function (requestMatcher, clientId, times) {
var timesObject;
if (typeof times === 'number') {
timesObject = {
remainingTimes: times,
unlimited: false
};
} else if (typeof times === 'object') {
timesObject = times;
}
requestMatcher.headers = arrayUniqueConcatenate(requestMatcher.headers, defaultRequestHeaders);
return {
httpRequest: requestMatcher,
httpObjectCallback: {
clientId: clientId
},
times: timesObject || {
remainingTimes: 1,
unlimited: false
}
};
};
var WebSocketClient = (typeof require !== 'undefined' ? require('./webSocketClient').webSocketClient : function (host, port, contextPath) {
var clientId;
var clientIdHandler;
var requestHandler;
var browserWebSocket;
if (typeof(window) !== "undefined") {
if (window.WebSocket) {
browserWebSocket = window.WebSocket;
} else if (window.MozWebSocket) {
browserWebSocket = window.MozWebSocket;
} else {
throw "Your browser does not support web sockets.";
}
}
if (browserWebSocket) {
var webSocketLocation = "ws://" + host + ":" + port + contextPath + "/_mockserver_callback_websocket";
var socket = new WebSocket(webSocketLocation);
socket.onmessage = function (event) {
var message = JSON.parse(event.data);
if (message.type === "org.mockserver.model.HttpRequest") {
var request = JSON.parse(message.value);
var response = requestHandler(request);
if (socket.readyState === WebSocket.OPEN) {
socket.send(JSON.stringify(response));
} else {
throw "The socket is not open.";
}
} else if (message.type === "org.mockserver.client.serialization.model.WebSocketClientIdDTO") {
var registration = JSON.parse(message.value);
if (registration.clientId) {
clientId = registration.clientId;
if (clientIdHandler) {
clientIdHandler(clientId);
}
}
}
};
socket.onopen = function (event) {
};
socket.onclose = function (event) {
};
}
function requestCallback(callback) {
requestHandler = callback;
}
function clientIdCallback(callback) {
clientIdHandler = callback;
if (clientId) {
clientIdHandler(clientId);
}
}
return {
requestCallback: requestCallback,
clientIdCallback: clientIdCallback
};
});
/**
* Setup an expectation in the MockServer by specifying an expectation object
* for example:
*
* mockServerClient("localhost", 1080).mockAnyResponse(
* {
* 'httpRequest': {
* 'path': '/somePath',
* 'body': {
* 'type': "STRING",
* 'value': 'someBody'
* }
* },
* 'httpResponse': {
* 'statusCode': 200,
* 'body': Base64.encode(JSON.stringify({ name: 'first_body' })),
* 'delay': {
* 'timeUnit': 'MILLISECONDS',
* 'value': 250
* }
* },
* 'times': {
* 'remainingTimes': 1,
* 'unlimited': false
* }
* }
* );
*
* @param expectation the expectation to setup on the MockServer
*/
var mockAnyResponse = function (expectation) {
if (expectation.httpRequest.headers) {
expectation.httpRequest.headers = arrayUniqueConcatenate(expectation.httpRequest.headers, defaultRequestHeaders);
} else if (expectation.httpRequest) {
expectation.httpRequest.headers = defaultRequestHeaders;
} else {
expectation.httpRequest = {
headers: defaultRequestHeaders
};
}
return makeRequest(host, port, "/expectation", expectation);
};
/**
* Setup an expectation in the MockServer by specifying a request matcher, and
* a local request handler function. The request handler function receives each
* request (that matches the request matcher) and returns the response that the
* MockServer will return for this expectation.
*
* for example:
*
* mockServerClient("localhost", 1080).mockWithCallback(
* {
* path: '/somePath',
* body: 'some_request_body'
* },
* function (request) {
* var response = {
* statusCode: 200,
* body: 'some_response_body'
* };
* return response
* }
* ).then(
* function () {
* alert('expectation sent');
* },
* function (error) {
* alert('error');
* }
* );
*
* @param requestMatcher the request matcher for the expectation
* @param requestHandler the function to be called back when the request is matched
*/
var mockWithCallback = function (requestMatcher, requestHandler, times) {
return {
then: function (sucess, error) {
try {
var webSocketClient = WebSocketClient(host, port, cleanedContextPath);
webSocketClient.requestCallback(function (request) {
return {
type: "org.mockserver.model.HttpResponse",
value: JSON.stringify(requestHandler(request))
};
});
webSocketClient.clientIdCallback(function (clientId) {
return makeRequest(host, port, "/expectation", createExpectationWithCallback(requestMatcher, clientId, times)).then(sucess, error)
});
} catch (e) {
error && error(e);
}
}
};
};
/**
* Setup an expectation in the MockServer without having to specify the full expectation object
* for example:
*
* mockServerClient("localhost", 1080).mockSimpleResponse('/somePath', { name: 'value' }, 203);
*
* @param path the path to match requests against
* @param responseBody the response body to return if a request matches
* @param statusCode the response code to return if a request matches
*/
var mockSimpleResponse = function (path, responseBody, statusCode) {
return mockAnyResponse(createExpectation(path, responseBody, statusCode));
};
/**
* Override:
*
* - default headers that are used to specify the response headers in mockSimpleResponse(...)
* (note: if you use mockAnyResponse(...) the default headers are not used)
*
* - headers added to every request matcher, this is particularly useful for running tests in parallel
*
* for example:
*
* mockServerClient("localhost", 1080).setDefaultHeaders([
* {"name": "Content-Type", "values": ["application/json; charset=utf-8"]},
* {"name": "Cache-Control", "values": ["no-cache, no-store"]}
* ],[
* {"name": "sessionId", "values": ["786fcf9b-606e-605f-181d-c245b55e5eac"]}
* ])
*
* @param responseHeaders the default headers to be added to every response
* @param requestHeaders the default headers to be added to every request matcher
*/
var setDefaultHeaders = function (responseHeaders, requestHeaders) {
if (responseHeaders) {
defaultResponseHeaders = responseHeaders;
}
if (requestHeaders) {
defaultRequestHeaders = requestHeaders;
}
return _this;
};
var addDefaultRequestMatcherHeaders = function (pathOrRequestMatcher) {
var responseMatcher;
if (typeof pathOrRequestMatcher === "string") {
responseMatcher = {
path: pathOrRequestMatcher
};
} else if (typeof pathOrRequestMatcher === "object") {
responseMatcher = pathOrRequestMatcher;
} else {
responseMatcher = {
path: ".*"
};
}
if (defaultRequestHeaders.length) {
if (responseMatcher.httpRequest) {
responseMatcher.httpRequest.headers = arrayUniqueConcatenate(responseMatcher.httpRequest.headers, defaultRequestHeaders);
} else {
responseMatcher.headers = arrayUniqueConcatenate(responseMatcher.headers, defaultRequestHeaders);
}
}
return responseMatcher;
};
/**
* Verify a request has been sent for example:
*
* expect(client.verify({
* 'httpRequest': {
* 'method': 'POST',
* 'path': '/somePath'
* }
* })).toBeTruthy();
*
* @param request the http request that must be matched for this verification to pass
* @param count the number of times this request must be matched
* @param exact true if the count is matched as "equal to" or false if the count is matched as "greater than or equal to"
*/
var verify = function (request, count, exact) {
if (count === undefined) {
count = 1;
}
return {
then: function (sucess, error) {
request.headers = arrayUniqueConcatenate(request.headers, defaultRequestHeaders);
return makeRequest(host, port, "/verify", {
"httpRequest": request,
"times": {
"count": count,
"exact": exact
}
}).then(function (result) {
if (result.statusCode !== 202) {
error && error(result.body);
} else {
sucess && sucess();
}
});
}
};
};
/**
* Verify a sequence of requests has been sent for example:
*
* client.verifySequence(
* {
* 'method': 'POST',
* 'path': '/first_request'
* },
* {
* 'method': 'POST',
* 'path': '/second_request'
* },
* {
* 'method': 'POST',
* 'path': '/third_request'
* }
* );
*
* @param arguments the list of http requests that must be matched for this verification to pass
*/
var verifySequence = function () {
var requestSequence = [];
for (var i = 0; i < arguments.length; i++) {
var requestMatcher = arguments[i];
requestMatcher.headers = arrayUniqueConcatenate(requestMatcher.headers, defaultRequestHeaders);
requestSequence.push(requestMatcher);
}
return {
then: function (sucess, error) {
return makeRequest(host, port, "/verifySequence", {
"httpRequests": requestSequence
}).then(function (result) {
if (result.statusCode !== 202) {
error && error(result.body);
} else {
sucess && sucess();
}
});
}
};
};
/**
* Reset MockServer by clearing all expectations
*/
var reset = function () {
return makeRequest(host, port, "/reset");
};
/**
* Clear all expectations that match the specified path
*
* @param pathOrRequestMatcher if a string is passed in the value will be treated as the path to
* decide which expectations to cleared, however if an object is passed
* in the value will be treated as a full request matcher object
* @param type the type to clear 'expectation', 'log' or 'all', defaults to 'all' if not specified
*/
var clear = function (pathOrRequestMatcher, type) {
return makeRequest(host, port, "/clear" + (type ? "?type=" + type : ""), addDefaultRequestMatcherHeaders(pathOrRequestMatcher));
};
/**
* Retrieve the recorded requests that match the parameter, as follows:
* - use a string value to match on path,
* - use a request matcher object to match on a full request,
* - or use null to retrieve all requests
*
* @param pathOrRequestMatcher if a string is passed in the value will be treated as the path, however
* if an object is passed in the value will be treated as a full request
* matcher object, if null is passed in it will be treated as match all
*/
var retrieveRequests = function (pathOrRequestMatcher) {
return {
then: function (sucess, error) {
makeRequest(host, port, "/retrieve", addDefaultRequestMatcherHeaders(pathOrRequestMatcher))
.then(function (result) {
sucess(result.body && JSON.parse(result.body));
});
}
};
};
/**
* Retrieve the setup expectations that match the parameter,
* the expectation is retrieved by matching the parameter
* on the expectations own request matcher, as follows:
* - use a string value to match on path,
* - use a request matcher object to match on a full request,
* - or use null to retrieve all requests
*
* @param pathOrRequestMatcher if a string is passed in the value will be treated as the path, however
* if an object is passed in the value will be treated as a full request
* matcher object, if null is passed in it will be treated as match all
*/
var retrieveExpectations = function (pathOrRequestMatcher) {
return {
then: function (sucess, error) {
return makeRequest(host, port, "/retrieve?type=expectation", addDefaultRequestMatcherHeaders(pathOrRequestMatcher))
.then(function (result) {
sucess(result.body && JSON.parse(result.body));
});
}
}
};
var _this = {
mockAnyResponse: mockAnyResponse,
mockWithCallback: mockWithCallback,
mockSimpleResponse: mockSimpleResponse,
setDefaultHeaders: setDefaultHeaders,
verify: verify,
verifySequence: verifySequence,
reset: reset,
clear: clear,
retrieveRequests: retrieveRequests,
retrieveExpectations: retrieveExpectations
};
return _this;
};
if (typeof module !== 'undefined') {
module.exports = {
mockServerClient: mockServerClient
};
}
})();