-
Notifications
You must be signed in to change notification settings - Fork 360
/
Copy pathconvert.test.js
292 lines (267 loc) · 9.84 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
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;
describe('csharp restsharp function', function () {
describe('csharp-restsharp convert function', function () {
it('should return expected snippet', function () {
var request = new sdk.Request(mainCollection.item[4].request),
options = {
indentCount: 1,
indentType: 'Tab',
followRedirect: true,
trimRequestBody: true
};
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 RestSharp;\nnamespace HelloWorldApplication {\n');
});
});
it('should generate snippet with Space as an 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(' ');
expect(snippetArray[i + 1].charAt(1)).to.equal(' ');
expect(snippetArray[i + 1].charAt(2)).to.not.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 = 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('client.FollowRedirects = false');
});
});
it('should trim header keys and not trim header values', function () {
var request = new sdk.Request({
'method': 'GET',
'header': [
{
'key': ' key_containing_whitespaces ',
'value': ' value_containing_whitespaces '
}
],
'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('request.AddHeader("key_containing_whitespaces", ' +
'" value_containing_whitespaces ")');
});
});
it('should generate snippets for no files in form data', function () {
var request = new sdk.Request({
'method': 'POST',
'header': [],
'body': {
'mode': 'formdata',
'formdata': [
{
'key': 'no file',
'value': '',
'type': 'file',
'src': []
},
{
'key': 'no src',
'value': '',
'type': 'file'
},
{
'key': 'invalid src',
'value': '',
'type': 'file',
'src': {}
}
]
},
'url': {
'raw': 'https://postman-echo.com/post',
'protocol': 'https',
'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('request.AddFile("no file", "/path/to/file"');
expect(snippet).to.include('request.AddFile("no src", "/path/to/file"');
expect(snippet).to.include('request.AddFile("invalid src", "/path/to/file"');
});
});
it('should use client.UserAgent instead of AddHeader function', function () {
const sampleUA = 'Safari/605.1.15',
expectValue = `client.UserAgent = "${sampleUA}";`;
var request = new sdk.Request({
'method': 'GET',
'header': [
{
'key': 'User-Agent',
'value': sampleUA
}
],
'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(expectValue);
});
});
});
describe('getOptions function', function () {
it('should return array of options for csharp-restsharp 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');
expect(getOptions()[5]).to.have.property('id', 'trimRequestBody');
});
});
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.trimRequestBody = 'true';
testOptions.indentType = 'tabSpace';
sanitizedOptions = sanitizeOptions(testOptions, getOptions());
expect(sanitizedOptions.indentCount).to.equal(defaultOptions.indentCount.default);
expect(sanitizedOptions.indentType).to.equal(defaultOptions.indentType.default);
expect(sanitizedOptions.trimRequestBody).to.equal(defaultOptions.trimRequestBody.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.trimRequestBody = true;
testOptions.followRedirect = false;
testOptions.includeBoilerplate = true;
sanitizedOptions = sanitizeOptions(testOptions, getOptions());
expect(sanitizedOptions).to.deep.equal(testOptions);
});
});
});