-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.spec.ts
269 lines (214 loc) · 5.44 KB
/
index.spec.ts
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
import * as test from "tape";
import objToQueryString, { ParamError, removeEmpty } from "../src/index";
test("removeEmpty will remove undefined and null values", t => {
const result = removeEmpty({
a: undefined,
b: "something",
c: undefined,
d: [undefined, null, 1]
});
t.deepEqual(result, { b: "something", d: [1] });
t.end();
});
test("It returns an empty string if nothing is passed in", t => {
const result = objToQueryString();
t.equal(result, "");
t.end();
});
test(`It returns a query string when an integer is passed in`, t => {
const object = {
a: 1
};
const result = objToQueryString(object);
t.equal(result, "a=1");
t.end();
});
test(`It returns a query string when a boolean is passed in`, t => {
const object = {
a: false
};
const result = objToQueryString(object);
t.equal(result, "a=false");
t.end();
});
test(`It can handle an integer as a key`, t => {
const object = {
3: 1
};
const result = objToQueryString(object);
t.equal(result, "3=1");
t.end();
});
test(`It can handle multiple integers by splitting them up with a &`, t => {
const object = {
a: 1,
b: 2
};
const result = objToQueryString(object);
t.equal(result, "a=1&b=2");
t.end();
});
test(`It will clear out empty strings and arrays`, t => {
const object = {
a: "",
b: "hey",
c: []
};
const result = objToQueryString(object);
t.equal(result, "b=hey");
t.end();
});
test(`It will clear out undefined values`, t => {
const object = {
a: undefined,
b: "hey"
};
const result = objToQueryString(object);
t.equal(result, "b=hey");
t.end();
});
test(`It will handle strings by URI encoding them`, t => {
const object = {
a: "a string",
b: "another string"
};
const result = objToQueryString(object);
t.equal(result, "a=a%20string&b=another%20string");
t.end();
});
test(`It can handle a string as a key`, t => {
const object: {
[key: string]: string;
} = {
a: "a string"
};
object["string-key"] = "another string";
const result = objToQueryString(object);
t.equal(result, "a=a%20string&string-key=another%20string");
t.end();
});
test(`It will handle an array of numbers by creating the format 'arrayName[]=val1&arrayName[]=val2`, t => {
const object = {
a: [1, 2, 3]
};
const result = objToQueryString(object);
t.equal(result, "a[]=1&a[]=2&a[]=3");
t.end();
});
test(`It will handle an array of strings by creating the format 'arrayName[]=val1&arrayName[]=val2`, t => {
const object = {
a: ["a string", "the second string", "the third string"]
};
const result = objToQueryString(object);
t.equal(
result,
"a[]=a%20string&a[]=the%20second%20string&a[]=the%20third%20string"
);
t.end();
});
test(`It will handle integers, strings, booleans, and multiple array of strings of strings/numbers by creating the format 'arrayName[]=val1&arrayName[]=val2`, t => {
const object = {
a: ["a string", "the second string", "the third string", 2],
b: 3,
c: "a string by itself",
4: [1, "more", "array of stuff"],
d: false
};
const result = objToQueryString(object);
t.equal(
result,
"4[]=1&4[]=more&4[]=array%20of%20stuff&a[]=a%20string&a[]=the%20second%20string&a[]=the%20third%20string&a[]=2&b=3&c=a%20string%20by%20itself&d=false"
);
t.end();
});
// error handling
test("Throws an error if anything but an object is passed in", t => {
// [1, 'two', () => {}, null, NaN];
const params = [
{
name: "Integer",
value: 1
},
{
name: "String",
value: "string"
},
{
name: "Function",
value: () => {}
},
{
name: "null",
value: null
}
];
params.forEach(param => {
let { name, value } = param;
try {
// @ts-ignore
const result = objToQueryString(value);
t.fail(
`Failed to throw an error when a param of type '${name}' is passed in`
);
t.end();
} catch (e) {
t.comment(`Throws an error if param is equal to '${name}'`);
t.equal(e.code, ParamError.invalidObjectParam);
}
});
t.end();
});
test("Throws an error if an object passed in has any properties but an integer, string, or array of numbers/strings", t => {
const props = [
{
name: "Object",
value: {}
},
{
name: "Function",
value: () => {}
}
];
props.forEach(prop => {
let { name, value } = prop;
try {
// @ts-ignore
const result = objToQueryString({ name: value });
t.fail(
`Failed to throw an error when the object param supplied has a type of '${name}' as a property`
);
t.end();
} catch (e) {
t.comment(`Throws an error if object param contains a '${name}'`);
t.equal(e.code, ParamError.invalidObjectProperty);
}
});
t.end();
});
test("Throws an error if an array has anything but a number or string", t => {
const props = [
{
name: "Object",
value: [1, 2, {}]
},
{
name: "Function",
value: ["a string", () => {}]
}
];
props.forEach(prop => {
let { name, value } = prop;
try {
// @ts-ignore
const result = objToQueryString({ name: value });
t.fail(
`Failed to throw an error when an array param contains a '${name}'`
);
t.end();
} catch (e) {
t.comment(`Throws an error if the array contains '${name}'`);
t.equal(e.code, ParamError.invalidArrayValue);
}
});
t.end();
});