-
Notifications
You must be signed in to change notification settings - Fork 360
/
Copy pathconvert.test.js
534 lines (498 loc) · 18.2 KB
/
convert.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
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
530
531
532
533
534
var expect = require('chai').expect,
sdk = require('postman-collection'),
convert = require('../../lib/index').convert,
mainCollection = require('./fixtures/testcollection/collection.json'),
testCollection = require('./fixtures/testcollection/collectionForEdge.json'),
getOptions = require('../../lib/index').getOptions,
testResponse = require('./fixtures/testresponse.json'),
sanitize = require('../../lib/util').sanitize,
sanitizeOptions = require('../../lib/util').sanitizeOptions;
// csharpify = require('../../lib/util').csharpify;
describe('csharp httpclient function', function () {
describe('csharp-httpclient convert function', function () {
it('should return expected snippet', function () {
var request = new sdk.Request(mainCollection.item[10].request),
options = {
indentCount: 1,
indentType: 'Tab'
};
convert(request, options, function (error, snippet) {
if (error) {
expect.fail(null, null, error);
return;
}
expect(snippet).deep.equal(testResponse.result);
});
});
});
describe('convert function', function () {
var request = new sdk.Request(testCollection.item[0].request),
snippetArray,
options = {
includeBoilerplate: true,
indentType: 'Space',
indentCount: 2
};
// it('should return snippet with boilerplate code given option', function () {
// convert(request, { includeBoilerplate: true }, function (error, snippet) {
// if (error) {
// expect.fail(null, null, error);
// return;
// }
// expect(snippet).to.include('using System;\nusing System.Net.Http;\nusing System.Threading.Tasks;\n' +
// 'namespace HelloWorldApplication\n{\n public class Program\n {\n ' +
// 'static async Task Main(string[] args)\n {');
// });
// });
it('should generate snippet with Space as indent type with exact indent count', function () {
convert(request, options, function (error, snippet) {
if (error) {
expect.fail(null, null, error);
return;
}
snippetArray = snippet.split('\n');
for (var i = 0; i < snippetArray.length; i++) {
if (snippetArray[i].startsWith('namespace HelloWorldApplication')) {
expect(snippetArray[i + 1].charAt(0)).to.equal('{');
// TODO: Do more expects
expect(snippetArray[i + 2].charAt(0)).to.equal(' ');
}
}
});
});
it('should add client timeout configurations when requestTimeout is set to non zero value', function () {
convert(request, { requestTimeout: 5 }, function (error, snippet) {
if (error) {
expect.fail(null, null, error);
}
expect(snippet).to.be.a('string');
expect(snippet).to.include('client.Timeout = TimeSpan.FromSeconds(5);');
});
});
it('should add client FollowRedirects configurations when followRedirects is set to false', function () {
convert(request, { followRedirect: false }, function (error, snippet) {
if (error) {
expect.fail(null, null, error);
}
expect(snippet).to.be.a('string');
expect(snippet).to.include('AllowAutoRedirect = false');
});
});
it('should create custom HttpMethod when method is non-standard', function () {
var request = new sdk.Request({
'method': 'NOTNORMAL',
'header': [],
'url': {
'raw': 'https://google.com',
'protocol': 'https',
'host': [
'google',
'com'
]
}
});
convert(request, {}, function (error, snippet) {
if (error) {
expect.fail(null, null, error);
}
expect(snippet).to.be.a('string');
expect(snippet).to.include('new HttpMethod("NOTNORMAL")');
});
});
it('should throw when callback is not a function', function () {
expect(function () { convert(request, {}, 'not a function'); })
.to.throw('C#-HttpClient-Converter: Callback is not valid function');
});
it('should add fake body when content type header added to empty body', function () {
var request = new sdk.Request({
'method': 'DELETE',
'body': {},
'header': [
{
'key': 'Content-Type',
'value': 'application/json'
}
]
});
convert(request, {}, function (error, snippet) {
if (error) {
expect.fail(null, null, error);
}
expect(snippet).to.include('var content = new StringContent(string.Empty);');
expect(snippet).to.include('content.Headers.ContentType = new MediaTypeHeaderValue(' +
'"application/json");');
});
});
// it('should only include one System.IO using with multiple files', function () {
// var request = new sdk.Request({
// 'method': 'POST',
// 'header': [],
// 'body': {
// 'mode': 'formdata',
// 'formdata': [
// {
// 'key': 'no file',
// 'value': '',
// 'type': 'file',
// 'src': '/test1.txt'
// },
// {
// 'key': 'no file',
// 'value': '',
// 'type': 'file',
// 'src': '/test2.txt'
// }
// ]
// }
// });
// convert(request, { includeBoilerplate: true, indentCount: 2, indentType: 'Space' }, function (error, snippet) {
// if (error) {
// expect.fail(null, null, error);
// }
// expect(snippet).to.include('using System;\nusing System.IO;\nusing System.Net.Http;\n');
// expect(snippet).to
// .include('content.Add(new StreamContent(File.OpenRead("/test1.txt")), "no file", "/test1.txt");');
// expect(snippet).to
// .include('content.Add(new StreamContent(File.OpenRead("/test2.txt")), "no file", "/test2.txt");');
// });
// });
it('should include multiple form content when file has multiple sources', function () {
var request = new sdk.Request({
'method': 'POST',
'header': [],
'body': {
'mode': 'formdata',
'formdata': [
{
'key': 'no file',
'value': '',
'type': 'file',
'src': [
'/test1.txt',
'/test2.txt'
]
}
]
}
});
convert(request, {}, function (error, snippet) {
if (error) {
expect.fail(null, null, error);
}
expect(snippet).to
.include('content.Add(new StreamContent(File.OpenRead("/test1.txt")), "no file", "/test1.txt");');
expect(snippet).to
.include('content.Add(new StreamContent(File.OpenRead("/test2.txt")), "no file", "/test2.txt");');
});
});
it('should include graphql body in the snippet', function () {
var request = new sdk.Request({
'method': 'POST',
'header': [],
'body': {
'mode': 'graphql',
'graphql': {
'query': '{ body { graphql } }',
'variables': '{"variable_key": "variable_value"}'
}
},
'url': {
'raw': 'http://postman-echo.com/post',
'protocol': 'http',
'host': [
'postman-echo',
'com'
],
'path': [
'post'
]
}
});
convert(request, {}, function (error, snippet) {
if (error) {
expect.fail(null, null, error);
}
expect(snippet).to.be.a('string');
expect(snippet).to
.include('var content = new StringContent("{\\"query\\":\\"{ body { graphql } }\\",' +
'\\"variables\\":{\\"variable_key\\":\\"variable_value\\"}}", null, "application/json");');
});
});
it('should add blank graphql variables when invalid', function () {
var request = new sdk.Request({
'method': 'POST',
'header': [],
'body': {
'mode': 'graphql',
'graphql': {
'query': '{ body { graphql } }',
'variables': '<text>some xml</text>'
}
},
'url': {
'raw': 'http://postman-echo.com/post',
'protocol': 'http',
'host': [
'postman-echo',
'com'
],
'path': [
'post'
]
}
});
convert(request, {}, function (error, snippet) {
if (error) {
expect.fail(null, null, error);
}
expect(snippet).to.be.a('string');
expect(snippet).to
.include('var content = new StringContent("{\\"query\\":\\"{ body { graphql } }\\",' +
'\\"variables\\":{}}", null, "application/json");');
});
});
it('should not add multiport form content when disabled', function () {
var request = new sdk.Request(mainCollection.item[15].request);
convert(request, {}, function (error, snippet) {
if (error) {
expect.fail(null, null, error);
}
expect(snippet).to.be.a('string');
expect(snippet).to.include('content.Add(new StringContent("\'a\'"), "pl");');
expect(snippet).to.include('content.Add(new StringContent("\\"b\\""), "qu");');
expect(snippet).to.include('content.Add(new StringContent("d"), "sa");');
expect(snippet).to.include('content.Add(new StringContent("!@#$%&*()^_+=`~"), "Special");');
expect(snippet).to.include('content.Add(new StringContent(",./\';[]}{\\":?><|\\\\\\\\"), "more");');
expect(snippet).not.to.include('Not Select');
expect(snippet).not.to.include('Disabled');
});
});
it('should run add content as string on raw request', function () {
var request = new sdk.Request(mainCollection.item[12].request);
convert(request, {}, function (error, snippet) {
if (error) {
expect.fail(null, null, error);
}
expect(snippet).to.be.a('string');
expect(snippet).to
.include('var content = new StringContent("Curabitur auctor, elit nec pulvinar porttitor, ' +
'ex augue condimentum enim, eget suscipit urna felis quis neque.\\nSuspendisse sit amet' +
' luctus massa, nec venenatis mi. Suspendisse tincidunt massa at nibh efficitur fringilla. ' +
'Nam quis congue mi. Etiam volutpat.", null, "text/plain");');
});
});
it('should add a file on file request', function () {
var request = new sdk.Request({
'method': 'POST',
'url': 'https://google.com',
'header': [],
'body': {
'mode': 'file',
'file': {
'src': './test.txt'
}
}
});
convert(request, {}, function (error, snippet) {
if (error) {
expect.fail(null, null, error);
}
expect(snippet).to.be.a('string');
expect(snippet).to.include('request.Content = new StreamContent(File.OpenRead("./test.txt"));');
});
});
it('should add all enabled headers to request', function () {
var request = new sdk.Request({
'method': 'POST',
'url': 'https://postman-echo.com/post',
'header': [
{
'key': 'my-header',
'value': 'my-header-value'
},
{
'key': 'Content-Type',
'value': 'application/json'
},
{
'key': 'disabled-header',
'value': 'diabled-header-value',
'disabled': true
}
],
'body': {
'mode': 'raw',
'raw': '{\n "json": "Test-Test"\n}'
}
});
convert(request, {}, function (error, snippet) {
if (error) {
expect.fail(null, null, error);
}
expect(snippet).to.be.a('string');
expect(snippet).to.include('request.Headers.Add("my-header", "my-header-value");');
expect(snippet).not.to.include('Content-Type');
expect(snippet).not.to.include('disabled-header');
expect(snippet).not.to.include('disabled-header-value');
});
});
it('should skip disabled form url encoded values', function () {
var request = new sdk.Request({
'method': 'POST',
'header': [],
'url': 'https://postman-echo.com/post',
'body': {
'mode': 'urlencoded',
'urlencoded': [
{
'key': 'enabled',
'value': 'enabled-value'
},
{
'key': 'disabled',
'value': 'disabled-value',
'disabled': true
}
]
}
});
convert(request, {}, function (error, snippet) {
if (error) {
expect.fail(null, null, error);
}
expect(snippet).to.be.a('string');
expect(snippet).to.include('collection.Add(new("enabled", "enabled-value"));');
expect(snippet).not.to.include('disabled');
});
});
it('should skip collection initialization when no urlencoded values are enabled', function () {
var request = new sdk.Request({
'method': 'POST',
'header': [],
'url': 'https://postman-echo.com/post',
'body': {
'mode': 'urlencoded',
'urlencoded': [
{
'key': 'disabled',
'value': 'disabled-value',
'disabled': true
}
]
}
});
convert(request, {}, function (error, snippet) {
if (error) {
expect.fail(null, null, error);
}
expect(snippet).to.be.a('string');
expect(snippet).not.to.include('var collection = new List<KeyValuePair<string, string>>();');
});
});
it('should skip creating multipart form data content when all values are disabled', function () {
var request = new sdk.Request({
'method': 'POST',
'header': [],
'url': 'https://postman-echo.com/post',
'body': {
'mode': 'formdata',
'formdata': [
{
'key': 'disabled',
'value': 'disabled-value',
'disabled': true
}
]
}
});
convert(request, {}, function (error, snippet) {
if (error) {
expect.fail(null, null, error);
}
expect(snippet).to.be.a('string');
expect(snippet).not.to.include('var content = new MultipartFormDataContent();');
});
});
});
describe('getOptions function', function () {
it('should return array of options for csharp-httpclient converter', function () {
expect(getOptions()).to.be.an('array');
});
it('should return all the valid options', function () {
expect(getOptions()[0]).to.have.property('id', 'includeBoilerplate');
expect(getOptions()[1]).to.have.property('id', 'indentCount');
expect(getOptions()[2]).to.have.property('id', 'indentType');
expect(getOptions()[3]).to.have.property('id', 'requestTimeout');
expect(getOptions()[4]).to.have.property('id', 'followRedirect');
});
});
describe('Sanitize function', function () {
it('should return empty string when input is not a string type', function () {
expect(sanitize(123, false)).to.equal('');
expect(sanitize(null, false)).to.equal('');
expect(sanitize({}, false)).to.equal('');
expect(sanitize([], false)).to.equal('');
});
it('should trim input string when needed', function () {
expect(sanitize('inputString ', true)).to.equal('inputString');
});
});
describe('sanitizeOptions function', function () {
var defaultOptions = {},
testOptions = {},
sanitizedOptions;
getOptions().forEach((option) => {
defaultOptions[option.id] = {
default: option.default,
type: option.type
};
if (option.type === 'enum') {
defaultOptions[option.id].availableOptions = option.availableOptions;
}
});
it('should remove option not supported by module', function () {
testOptions.randomName = 'random value';
sanitizedOptions = sanitizeOptions(testOptions, getOptions());
expect(sanitizedOptions).to.not.have.property('randomName');
});
it('should use defaults when option value type does not match with expected type', function () {
testOptions = {};
testOptions.indentCount = '5';
testOptions.includeBoilerplate = 'true';
testOptions.indentType = 'tabSpace';
sanitizedOptions = sanitizeOptions(testOptions, getOptions());
expect(sanitizedOptions.indentCount).to.equal(defaultOptions.indentCount.default);
expect(sanitizedOptions.includeBoilerplate).to.equal(defaultOptions.includeBoilerplate.default);
expect(sanitizedOptions.indentType).to.equal(defaultOptions.indentType.default);
});
it('should use defaults when option type is valid but value is invalid', function () {
testOptions = {};
testOptions.indentCount = -1;
testOptions.indentType = 'spaceTab';
testOptions.requestTimeout = -3000;
sanitizedOptions = sanitizeOptions(testOptions, getOptions());
expect(sanitizedOptions.indentCount).to.equal(defaultOptions.indentCount.default);
expect(sanitizedOptions.indentType).to.equal(defaultOptions.indentType.default);
expect(sanitizedOptions.requestTimeout).to.equal(defaultOptions.requestTimeout.default);
});
it('should return the same object when default options are provided', function () {
for (var id in defaultOptions) {
if (defaultOptions.hasOwnProperty(id)) {
testOptions[id] = defaultOptions[id].default;
}
}
sanitizedOptions = sanitizeOptions(testOptions, getOptions());
expect(sanitizedOptions).to.deep.equal(testOptions);
});
it('should return the same object when valid (but not necessarily defaults) options are provided', function () {
testOptions = {};
testOptions.indentType = 'Tab';
testOptions.indentCount = 3;
testOptions.requestTimeout = 3000;
testOptions.followRedirect = false;
testOptions.includeBoilerplate = true;
sanitizedOptions = sanitizeOptions(testOptions, getOptions());
expect(sanitizedOptions).to.deep.equal(testOptions);
});
});
});