-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtest.core.string.js
378 lines (355 loc) · 10.8 KB
/
test.core.string.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
describe('ax5.util.left TEST', function () {
var testCases = [
{
args: ['ab.da', '.'],
expect: 'ab',
explanation: 'ab.da, "."'
},
{
args: ['abc"', "\""],
expect: 'abc',
explanation: 'abc", "\""'
},
{
args: ['abc4', 4],
expect: 'abc4',
explanation: 'abc4, 4'
},
{
args: ['abc4efg', 4.0],
expect: 'abc4',
explanation: 'abc4efg, 4.0'
},
{
args: ['abc4e', 100],
expect: 'abc4e',
explanation: 'abc4e, 100'
},
{
args: ['abc4', '4'],
expect: 'abc',
explanation: 'abc4, "4"'
},
{
args: ['abc', '4'],
expect: '',
explanation: 'abc, "4"'
},
{
args: ['abc', 0],
expect: '',
explanation: 'abc", 0'
},
{
args: ['abc', '0'],
expect: '',
explanation: 'abc", "0"'
},
{
args: ['abc'],
expect: '',
explanation: 'abc'
},
{
args: ['abc', ''],
expect: '',
explanation: 'abc, ""'
},
{
args: ['abc', null],
expect: '',
explanation: 'abc, null'
},
{
args: ['abc', undefined],
expect: '',
explanation: 'abc", undefined'
},
{
args: ['abc', true],
expect: '',
explanation: 'abc", true'
},
{
args: ['abc', false],
expect: '',
explanation: 'abc", false'
},
{
args: ['abc', new Object],
expect: '',
explanation: 'abc", new Object'
},
{
args: ['abc', new Function],
expect: '',
explanation: 'abc", new Function]'
},
{
args: ['abc', []],
expect: '',
explanation: 'abc", []]'
},
{
args: ['abc', {}],
expect: '',
explanation: 'abc", {}]'
}
];
testCases.forEach(function (testCase) {
it('ax5.util.left(' + testCase.explanation + ') expect ' + JSON.stringify(testCase.expect), function () {
var actual = ax5.util.left.apply(this, testCase.args);
actual.should.deepEqual(testCase.expect);
});
});
});
describe('ax5.util.right TEST', function () {
var testCases = [
{
args: ['abcd.efd', 3],
expect: 'efd'
},
{
args: ['abcd.efd', '.'],
expect: 'efd'
},
{
args: ['vi"veri"veniversum"vivus"vici', '\"'],
expect: 'vici'
},
{
args: ['vi veri veniversum vivus vici', 10],
expect: 'vivus vici'
},
{
args: ['abc', null],
expect: '',
explanation: 'abc, null'
},
{
args: ['abc', undefined],
expect: '',
explanation: 'abc", undefined'
},
{
args: ['coincidence', true],
expect: '',
explanation: 'coincidence, ""'
},
{
args: ['coincidence', false],
expect: '',
explanation: 'coincidence, ""'
},
{
args: ['object', new Object],
expect: '',
explanation: 'object, new Object'
},
{
args: ['function', new Function],
expect: '',
explanation: 'function, new Function'
},
{
args: ['abc', []],
expect: '',
explanation: 'abc", []]'
},
{
args: ['abc', {}],
expect: '',
explanation: 'abc", {}]'
}
];
testCases.forEach(function (testCase) {
it('ax5.util.right(' + testCase.args + ') expect ' + testCase.expect, function () {
var actual = ax5.util.right.apply(this, testCase.args);
actual.should.deepEqual(testCase.expect);
});
});
});
describe('ax5.util.camelCase Test', function () {
var testCases = [
{
args: ['inner-width'],
expect: 'innerWidth'
},
{
args: ['innerWidth'],
expect: 'innerWidth'
},
{
args: ['-ms-border-radius'],
expect: 'msBorderRadius'
},
{
args: ['-webkit-border-radius'],
expect: 'WebkitBorderRadius'
},
{
args: ['-moz-border-radius'],
expect: 'MozBorderRadius'
},
{
args: ['-o-border-radius'],
expect: 'OBorderRadius'
}
];
testCases.forEach(function (testCase) {
it('ax5.util.camelCase(' + testCase.args + ') expect ' + testCase.expect, function () {
var actual = ax5.util.camelCase.apply(this, testCase.args);
actual.should.deepEqual(testCase.expect);
});
});
});
describe('ax5.util.snakeCase Test', function () {
var testCases = [
{
args: ['inner-width'],
expect: 'inner-width'
},
{
args: ['camelCase'],
expect: 'camel-case'
},
{
args: ['camelCase'],
expect: 'camel-case'
},
{
args: ['MsBorderRadius'],
expect: '-ms-border-radius'
},
{
args: ['WebkitBorderRadius'],
expect: '-webkit-border-radius'
},
{
args: ['MozBorderRadius'],
expect: '-moz-border-radius'
},
{
args: ['OBorderRadius'],
expect: '-o-border-radius'
},
{
args: ['HELLOWORLD'],
expect: '-h-e-l-l-o-w-o-r-l-d'
}
];
testCases.forEach(function (testCase) {
it('ax5.util.snakeCase(' + testCase.args + ') expect ' + testCase.expect, function () {
var actual = ax5.util.snakeCase.apply(this, testCase.args);
actual.should.deepEqual(testCase.expect);
});
});
});
describe('ax5.util.setDigit Test', function () {
var testCases = [
{
args: [1, 2],
expect: '01'
},
{
args: [10, 2, 0, 2],
expect: '1010'
},
{
args: [10, 8, 0, 8],
expect: '00000012'
},
{
args: [320, 8, 0, 16],
expect: '00000140'
},
{
args: [10, 6, "10"],
expect: '1010101010'
},
{
args: [10, 4, 0, 4],
expect: '0022'
}
];
testCases.forEach(function (testCase) {
it('ax5.util.setDigit(' + testCase.args + ') expect ' + testCase.expect, function () {
var actual = ax5.util.setDigit.apply(this, testCase.args);
actual.should.deepEqual(testCase.expect);
});
});
});
describe('ax5.util.times Test', function () {
var testCases = [
{
args: [2016, 2],
expect: '20162016'
},
{
args: ["", 4],
expect: ''
},
{
args: [true, 3],
expect: 'truetruetrue'
},
{
args: [null, 4],
expect: 'nullnullnullnull'
},
{
args: [undefined, 4],
expect: ',,,,'
}
];
testCases.forEach(function (testCase) {
it('ax5.util.times(' + testCase.args + ') expect ' + testCase.expect, function () {
var actual = ax5.util.times.apply(this, testCase.args);
actual.should.deepEqual(testCase.expect);
});
});
});
describe('ax5.util.escape Test', function () {
it('ax5.util.escapeHtml("HTML <span>string</span> & "escape"") expect "HTML <span>string</span> & "escape""', function () {
var actual = ax5.util.escapeHtml('HTML <span>string</span> & "escape"');
should(actual).be.equal('HTML <span>string</span> & "escape"');
});
it('ax5.util.escapeHtml(undefined) expect undefined', function () {
var actual = ax5.util.escapeHtml(undefined);
should(actual).be.equal(undefined);
});
it('ax5.util.escapeHtml({ "foo": 1 }) expect { "foo": 1 }', function () {
var actual = ax5.util.escapeHtml({"foo": 1});
should(actual).be.deepEqual({"foo": 1});
});
it('ax5.util.unescapeHtml("HTML <span>string</span> & "escape"") expect "HTML <span>string</span> & "escape""', function () {
var actual = ax5.util.unescapeHtml('HTML <span>string</span> & "escape"');
should(actual).be.equal('HTML <span>string</span> & "escape"');
});
it('ax5.util.unescapeHtml(undefined) expect undefined', function () {
var actual = ax5.util.unescapeHtml(undefined);
should(actual).be.equal(undefined);
});
it('ax5.util.unescapeHtml({ "foo": 1 }) expect { "foo": 1 }', function () {
var actual = ax5.util.unescapeHtml({"foo": 1});
should(actual).be.deepEqual({"foo": 1});
});
it('ax5.util.unescapeHtml("<div id="hello-world" class="happy">:)</div>") expect "<div id="hello-world" class="happy">:)</div>"', function () {
var actual = ax5.util.unescapeHtml('<div id="hello-world" class="happy">:)</div>');
should(actual).be.equal('<div id="hello-world" class="happy">:)</div>');
});
});
describe('ax5.util.string Test', function () {
it('ax5.util.string("{0} is dead, but {1} is alive! {0} {2}").format("ASP", "ASP.NET", 99); expect "ASP is dead, but ASP.NET is alive! ASP 99"', function () {
var actual = ax5.util.string("{0} is dead, but {1} is alive! {0} {2}").format("ASP", "ASP.NET", 99);
should(actual).be.equal("ASP is dead, but ASP.NET is alive! ASP 99");
});
it('ax5.util.string("{0} is dead, but {1} is alive! {0} {2}").format(["ASP", "ASP.NET", 99]); expect "ASP is dead, but ASP.NET is alive! ASP 99"', function () {
var actual = ax5.util.string("{0} is dead, but {1} is alive! {0} {2}").format(["ASP", "ASP.NET", 99]);
should(actual).be.equal("ASP is dead, but ASP.NET is alive! ASP 99");
});
it('ax5.util.string("{0} is dead, but {1} is alive! {0} {2}").format(["ASP", "ASP.NET", 99]); expect "to be, or not to be, that is the question"', function () {
var actual = ax5.util.string("{0} {1}, or not {0} {1}, that is the question").format(["to", "be"]);
should(actual).be.equal("to be, or not to be, that is the question");
});
});