forked from jnyryan/node-soap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver-test.js
452 lines (406 loc) · 15.2 KB
/
server-test.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
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
"use strict";
var fs = require('fs'),
soap = require('..'),
assert = require('assert'),
request = require('request'),
http = require('http'),
lastReqAddress;
var test = {};
test.server = null;
test.service = {
StockQuoteService: {
StockQuotePort: {
GetLastTradePrice: function(args, cb, soapHeader) {
if (soapHeader)
return { price: soapHeader.SomeToken };
if (args.tickerSymbol === 'trigger error') {
throw new Error('triggered server error');
} else if (args.tickerSymbol === 'Async') {
return cb({ price: 19.56 });
} else if (args.tickerSymbol === 'SOAP Fault v1.2') {
throw {
Fault: {
Code: {
Value: "soap:Sender",
Subcode: { value: "rpc:BadArguments" }
},
Reason: { Text: "Processing Error" }
}
};
} else if (args.tickerSymbol === 'SOAP Fault v1.1') {
throw {
Fault: {
faultcode: "soap:Client.BadArguments",
faultstring: "Error while processing arguments"
}
};
} else {
return { price: 19.56 };
}
},
SetTradePrice: function(args, cb, soapHeader) {
},
IsValidPrice: function(args, cb, soapHeader, req) {
lastReqAddress = req.connection.remoteAddress;
var validationError = {
Fault: {
Code: {
Value: "soap:Sender",
Subcode: { value: "rpc:BadArguments" }
},
Reason: { Text: "Processing Error" },
statusCode: 500
}
};
var isValidPrice = function() {
var price = args.price;
if(isNaN(price) || (price === ' ')) {
return cb(validationError);
}
price = parseInt(price, 10);
var validPrice = (price > 0 && price < Math.pow(10, 5));
return cb(null, { valid: validPrice });
};
setTimeout(isValidPrice, 10);
}
}
}
};
describe('SOAP Server', function() {
before(function(done) {
fs.readFile(__dirname + '/wsdl/strict/stockquote.wsdl', 'utf8', function(err, data) {
assert.ok(!err);
test.wsdl = data;
done();
});
});
beforeEach(function(done) {
test.server = http.createServer(function(req, res) {
res.statusCode = 404;
res.end();
});
test.server.listen(15099, null, null, function() {
test.soapServer = soap.listen(test.server, '/stockquote', test.service, test.wsdl);
test.baseUrl =
'http://' + test.server.address().address + ":" + test.server.address().port;
//windows return 0.0.0.0 as address and that is not
//valid to use in a request
if (test.server.address().address === '0.0.0.0' || test.server.address().address === '::') {
test.baseUrl =
'http://127.0.0.1:' + test.server.address().port;
}
done();
});
});
afterEach(function(done) {
test.server.close(function() {
test.server = null;
delete test.soapServer;
test.soapServer = null;
done();
});
});
it('should add and clear response soap headers', function(done) {
assert.ok(!test.soapServer.getSoapHeaders());
var i1 = test.soapServer.addSoapHeader('about-to-change-1');
var i2 = test.soapServer.addSoapHeader('about-to-change-2');
assert.ok(i1 === 0);
assert.ok(i2 === 1);
assert.ok(test.soapServer.getSoapHeaders().length === 2);
test.soapServer.changeSoapHeader(0, 'header1');
test.soapServer.changeSoapHeader(1, 'header2');
assert.ok(test.soapServer.getSoapHeaders()[0] === 'header1');
assert.ok(test.soapServer.getSoapHeaders()[1] === 'header2');
test.soapServer.clearSoapHeaders();
assert.ok(!test.soapServer.getSoapHeaders());
done();
});
it('should return predefined headers in response', function(done) {
soap.createClient(test.baseUrl + '/stockquote?wsdl', function(err, client) {
assert.ok(!err);
test.soapServer.addSoapHeader('<header1>ONE</header1>');
test.soapServer.changeSoapHeader(1, { header2: 'TWO' });
client.GetLastTradePrice({ tickerSymbol: 'AAPL'}, function(err, result, raw, headers) {
assert.ok(!err);
assert.deepEqual(headers, { header1: 'ONE', header2: 'TWO' });
done();
});
});
});
it('should be running', function(done) {
request(test.baseUrl, function(err, res, body) {
assert.ok(!err);
done();
});
});
it('should 404 on non-WSDL path', function(done) {
request(test.baseUrl, function(err, res, body) {
assert.ok(!err);
assert.equal(res.statusCode, 404);
done();
});
});
it('should 500 on wrong message', function(done) {
request.post({
url: test.baseUrl + '/stockquote?wsdl',
body : '<soapenv:Envelope' +
' xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"' +
' xmlns:soap="http://service.applicationsnet.com/soap/">' +
' <soapenv:Header/>' +
' <soapenv:Body>' +
' <soap:WrongTag/>' +
' </soapenv:Body>' +
'</soapenv:Envelope>',
headers: {'Content-Type': 'text/xml'}
}, function(err, res, body) {
assert.ok(!err);
assert.equal(res.statusCode, 500);
assert.ok(body.length);
done();
}
);
});
it('should server up WSDL', function(done) {
request(test.baseUrl + '/stockquote?wsdl', function(err, res, body) {
assert.ok(!err);
assert.equal(res.statusCode, 200);
assert.ok(body.length);
done();
});
});
it('should return complete client description', function(done) {
soap.createClient(test.baseUrl + '/stockquote?wsdl', function(err, client) {
assert.ok(!err);
var description = client.describe(),
expected = { input: { tickerSymbol: "string" }, output:{ price: "float" } };
assert.deepEqual(expected , description.StockQuoteService.StockQuotePort.GetLastTradePrice);
done();
});
});
it('should return correct results', function(done) {
soap.createClient(test.baseUrl + '/stockquote?wsdl', function(err, client) {
assert.ok(!err);
client.GetLastTradePrice({ tickerSymbol: 'AAPL'}, function(err, result) {
assert.ok(!err);
assert.equal(19.56, parseFloat(result.price));
done();
});
});
});
it('should return correct async results (single argument callback style)', function(done) {
soap.createClient(test.baseUrl + '/stockquote?wsdl', function(err, client) {
assert.ok(!err);
client.GetLastTradePrice({ tickerSymbol: 'Async'}, function(err, result) {
assert.ok(!err);
assert.equal(19.56, parseFloat(result.price));
done();
});
});
});
it('should return correct async results (double argument callback style)', function(done) {
soap.createClient(test.baseUrl + '/stockquote?wsdl', function(err, client) {
assert.ok(!err);
client.IsValidPrice({ price: 50000 }, function(err, result) {
assert.ok(!err);
assert.equal(true, !!(result.valid));
done();
});
});
});
it('should pass the original req to async methods', function(done) {
soap.createClient(test.baseUrl + '/stockquote?wsdl', function(err, client) {
assert.ok(!err);
client.IsValidPrice({ price: 50000 }, function(err, result) {
// node V3.x+ reports addresses as IPV6
var addressParts = lastReqAddress.split(':');
addressParts[(addressParts.length - 1)].should.equal('127.0.0.1');
done();
});
});
});
it('should return correct async errors', function(done) {
soap.createClient(test.baseUrl + '/stockquote?wsdl', function(err, client) {
assert.ok(!err);
client.IsValidPrice({ price: "invalid_price"}, function(err, result) {
assert.ok(err);
assert.ok(err.root.Envelope.Body.Fault);
assert.equal(err.response.statusCode, 500);
done();
});
});
});
it('should handle headers in request', function(done) {
soap.createClient(test.baseUrl + '/stockquote?wsdl', function(err, client) {
assert.ok(!err);
client.addSoapHeader('<SomeToken>123.45</SomeToken>');
client.GetLastTradePrice({ tickerSymbol: 'AAPL'}, function(err, result) {
assert.ok(!err);
assert.equal(123.45, parseFloat(result.price));
done();
});
});
});
it('should return security timestamp in response', function(done) {
soap.createClient(test.baseUrl + '/stockquote?wsdl', function(err, client) {
assert.ok(!err);
client.addSoapHeader('<Security><Timestamp><Created>2015-02-23T12:00:00.000Z</Created><Expires>2015-02-23T12:05:00.000Z</Expires></Timestamp></Security>');
client.GetLastTradePrice({ tickerSymbol: 'AAPL'}, function(err, result, raw, soapHeader) {
assert.ok(!err);
assert.ok(soapHeader && soapHeader.Security && soapHeader.Security.Timestamp);
done();
});
});
});
it('should emit \'request\' event', function(done) {
test.soapServer.on('request', function requestManager(request, methodName) {
assert.equal(methodName, 'GetLastTradePrice');
done();
});
soap.createClient(test.baseUrl + '/stockquote?wsdl', function(err, client) {
assert.ok(!err);
client.GetLastTradePrice({ tickerSymbol: 'AAPL'}, function() {});
});
});
it('should emit \'headers\' event', function(done) {
test.soapServer.on('headers', function headersManager(headers, methodName) {
assert.equal(methodName, 'GetLastTradePrice');
headers.SomeToken = 0;
});
soap.createClient(test.baseUrl + '/stockquote?wsdl', function(err, client) {
assert.ok(!err);
client.addSoapHeader('<SomeToken>123.45</SomeToken>');
client.GetLastTradePrice({ tickerSymbol: 'AAPL'}, function(err, result) {
assert.ok(!err);
assert.equal(0, parseFloat(result.price));
done();
});
});
});
it('should not emit the \'headers\' event when there are no headers', function(done) {
test.soapServer.on('headers', function headersManager(headers, methodName) {
assert.ok(false);
});
soap.createClient(test.baseUrl + '/stockquote?wsdl', function(err, client) {
assert.ok(!err);
client.GetLastTradePrice({ tickerSymbol: 'AAPL'}, function(err, result) {
assert.ok(!err);
done();
});
});
});
it('should include response and body in error object', function(done) {
soap.createClient(test.baseUrl + '/stockquote?wsdl', function(err, client) {
assert.ok(!err);
client.GetLastTradePrice({ tickerSymbol: 'trigger error' }, function(err, response, body) {
assert.ok(err);
assert.strictEqual(err.response, response);
assert.strictEqual(err.body, body);
done();
});
});
});
it('should return SOAP Fault body for SOAP 1.2', function(done) {
soap.createClient(test.baseUrl + '/stockquote?wsdl', function(err, client) {
assert.ok(!err);
client.GetLastTradePrice({ tickerSymbol: 'SOAP Fault v1.2' }, function(err, response, body) {
assert.ok(err);
var fault = err.root.Envelope.Body.Fault;
assert.equal(err.message, fault.faultcode + ': ' + fault.faultstring);
assert.equal(fault.Code.Value, "soap:Sender");
assert.equal(fault.Reason.Text, "Processing Error");
// Verify namespace on elements set according to fault spec 1.2
assert.ok(body.match(/<soap:Code>.*<\/soap:Code>/g),
"Body should contain Code-element with namespace");
assert.ok(body.match(/<soap:Reason>.*<\/soap:Reason>/g),
"Body should contain Reason-element with namespace");
assert.equal(err.response.statusCode, 200);
done();
});
});
});
it('should return SOAP Fault body for SOAP 1.1', function(done) {
soap.createClient(test.baseUrl + '/stockquote?wsdl', function(err, client) {
assert.ok(!err);
client.GetLastTradePrice({ tickerSymbol: 'SOAP Fault v1.1' }, function(err, response, body) {
assert.ok(err);
var fault = err.root.Envelope.Body.Fault;
assert.equal(err.message, fault.faultcode + ': ' + fault.faultstring);
assert.equal(fault.faultcode, "soap:Client.BadArguments");
assert.equal(fault.faultstring, "Error while processing arguments");
// Verify namespace on elements set according to fault spec 1.1
assert.ok(body.match(/<faultcode>.*<\/faultcode>/g),
"Body should contain faultcode-element without namespace");
assert.ok(body.match(/<faultstring>.*<\/faultstring>/g),
"Body should contain faultstring-element without namespace");
done();
});
});
});
it('should return SOAP Fault thrown from \'headers\' event handler', function(done) {
test.soapServer.on('headers', function headersManager() {
throw {
Fault: {
Code: {
Value: "soap:Sender",
Subcode: { value: "rpc:BadArguments" }
},
Reason: { Text: "Processing Error" }
}
};
});
soap.createClient(test.baseUrl + '/stockquote?wsdl', function(err, client) {
client.addSoapHeader('<SomeToken>0.0</SomeToken>');
client.GetLastTradePrice({ tickerSymbol: 'AAPL'}, function(err, result) {
assert.ok(err);
assert.ok(err.root.Envelope.Body.Fault);
done();
});
});
});
it('should accept attributes as a string on the body element', function(done) {
soap.createClient(test.baseUrl + '/stockquote?wsdl', function(err, client) {
assert.ok(!err);
client.addBodyAttribute('xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" wsu:Id="######################"');
client.GetLastTradePrice({ tickerSymbol: 'AAPL' }, function(err, response, body) {
assert.ok(!err);
done();
});
});
});
it('should accept attributes as an object on the body element', function(done) {
soap.createClient(test.baseUrl + '/stockquote?wsdl', function(err, client) {
assert.ok(!err);
var attributes = { 'xmlns:wsu': 'http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd', 'wsu:Id': '######################' };
client.addBodyAttribute(attributes);
client.GetLastTradePrice({ tickerSymbol: 'AAPL' }, function(err, response, body) {
assert.ok(!err);
done();
});
});
});
it('should handle one-way operations', function(done) {
soap.createClient(test.baseUrl + '/stockquote?wsdl', function(err, client) {
assert.ok(!err);
client.SetTradePrice({ tickerSymbol: 'GOOG', price: 575.33 }, function(err, result) {
assert.ok(!err);
assert.equal(result,null);
done();
});
});
});
// NOTE: this is actually a -client- test
/*
it('should return a valid error if the server stops responding': function(done) {
soap.createClient(test.baseUrl + '/stockquote?wsdl', function(err, client) {
assert.ok(!err);
server.close(function() {
server = null;
client.GetLastTradePrice({ tickerSymbol: 'trigger error' }, function(err, response, body) {
assert.ok(err);
done();
});
});
});
});
*/
});