-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathParseInt1.js
313 lines (173 loc) · 9.79 KB
/
ParseInt1.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
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
//Parse Int Test cases
var id=0;
function verify(get_actual,get_expected,id,testdesc)
{
if(isNaN(get_actual) && isNaN(get_expected))
{
return;
}
if(get_actual !==get_expected)
WScript.Echo(id+":"+testdesc+"\t"+"failed Actual:" + get_actual + " Excpected:" + get_expected);
}
//White space at the begining
verify(parseInt(" 123",10),123,id++,"\"Testing WhiteSpace at the begining of the string\"")
//Escape characters at the begining
verify(parseInt("\t\n\f\r123",10),123,id++,"\"Testing WhiteSpace with escape at the begining of the string\"")
// only white spaces
verify(parseInt("\t\n\f\r",10), NaN,id++,"\"Only whitespaces\"")
// embedded null
verify(parseInt("32\032",10), 32,id++,"\"Embedded null\"")
//White Spaces in the End
verify(parseInt("123 ",10),123,id++,"\"Testing WhiteSpace at the End of the string\"")
//Escape characters at the end
verify(parseInt("123\t\n\f\r",10),123,id++,"\"Testing WhiteSpace with escape at the end of the string\"")
//Space in between Strings
verify(parseInt("12 3",10),12,id++,"\"Testing WhiteSpace in between strings\"")
//Escape Characters in between Strings
verify(parseInt("12\n\t\r\f3",10),12,id++,"\"Testing Escape Characters in between of the strings\"")
//Default Radix Testing: Null
verify(parseInt("123",null),123,id++,"\"Default Radix Null\"")
//Default Radix Testing: NaN
verify(parseInt("123",NaN),123,id++,"\"Default Radix NaN\"")
//Default Radix Testing: Undefined
verify(parseInt("123",undefined),123,id++,"\"Default Radix Undefined\"")
//Default Radix Testing: 0
verify(parseInt("123",0),123,id++,"\"Default Radix 0\"")
//Default Radix Testing with 0X String :Basic
verify(parseInt("0x19",16),25,id++,"\"Default Radix With 0x String: Basic\"")
//Default Radix Testing With 0x String: Null
verify(parseInt("0xFF",null),255,id++,"\"Default Radix With 0x String: Null\"")
//Default Radix Testing With 0x: NaN
verify(parseInt("0xFF",NaN),255,id++,"\"Default Radix With 0x String:NaN\"")
//Default Radix Testing With 0x: Undefined
verify(parseInt("0xFF",undefined),255,id++,"\"Default Radix With 0x String: undefined\"")
//Default Radix Testing With 0x: 0
verify(parseInt("0xFF",0),255,id++,"\"Default Radix With 0x String: 0\"")
//Default Radix Testing With 0X String: Null
verify(parseInt("0XFF",null),255,id++,"\"Default Radix With 0X String: Null\"")
//Default Radix Testing With 0X: NaN
verify(parseInt("0XFF",NaN),255,id++,"\"Default Radix With 0X String:NaN\"")
//Default Radix Testing With 0X: Undefined
verify(parseInt("0XFF",undefined),255,id++,"\"Default Radix With 0X String: undefined\"")
//Default Radix Testing With 0X: 0
verify(parseInt("0XFF",0),255,id++,"\"Default Radix With 0X String: 0\"")
//Default Radix Negative Testing: Out of bound Strings: Null
var x=parseInt("A123",null)
verify(isNaN(x),true,id++,"\"Default Radix:null Negative Testing Null\"")
//Default Radix Negative Testing : Out of bound Strings: NaN
var x=parseInt("A123",NaN)
verify(isNaN(x),true,id++,"\"Default Radix Negative Testing NaN\"")
//Default Radix Negative Testing : Out of bound Strings: undefined
var x=parseInt("A123",undefined)
verify(isNaN(x),true,id++,"\"Default Radix Negative Testing undefined\"")
//Default Radix Negative Testing : Out of bound Strings: 0
var x=parseInt("A123",0)
verify(isNaN(x),true,id++,"\"Default Radix Negative Testing 0\"")
//Default Radix Negative Testing: Out of bound Strings with 0x: Null
var x=parseInt("0xG123",null)
verify(isNaN(x),true,id++,"\"Default Radix with 0x String Negative Testing Null\"")
//Default Radix Negative Testing: Out of bound Strings with 0x: NaN
var x=parseInt("0xG123",NaN)
verify(isNaN(x),true,id++,"\"Default Radix with 0x String Negative Testing NaN\"")
//Default Radix Negative Testing: Out of bound Strings with 0x: undefined
var x=parseInt("0xG123",undefined)
verify(isNaN(x),true,id++,"\"Default Radix with 0x String Negative Testing undefined\"")
//Default Radix Negative Testing: Out of bound Strings with 0x: 0
var x=parseInt("0xG123",0)
verify(isNaN(x),true,id++,"\"Default Radix with 0x String Negative Testing 0\"")
//Default Radix Negative Testing: Out of bound Strings with 0X: Null
var x=parseInt("0XG123",null)
verify(isNaN(x),true,id++,"\"Default Radix with 0X String Negative Testing Null\"")
//Default Radix Negative Testing: Out of bound Strings with 0X: NaN
var x=parseInt("0XG123",NaN)
verify(isNaN(x),true,id++,"\"Default Radix with 0X String Negative Testing NaN\"")
//Default Radix Negative Testing: Out of bound Strings with 0X: undefined
var x=parseInt("0XG123",undefined)
verify(isNaN(x),true,id++,"\"Default Radix with 0X String Negative Testing undefined\"")
//Default Radix Negative Testing: Out of bound Strings with 0X: 0
var x=parseInt("0XG123",0)
verify(isNaN(x),true,id++,"\"Default Radix with 0X String Negative Testing 0\"")
//Radix Testing Limits: Lower Limit 2
verify(parseInt("101",2),5,id++,"\"Radix Testing Limits: Lower Limit 2\"");
//Radix Testing Limits: upper limit 36
verify(parseInt("aAzZ",36),480815,id++,"\"Radix Testing Limits: Upper Limit 36\"");
//Radix Testing Limits: +0
verify(parseInt("11",+0),11,id++,"\"Radix Testing Limits: +0\"");
//Radix Testing Limits: -0
verify(parseInt("11",-0),11,id++,"\"Radix Testing Limits: -0\"");
//Radix Testing Limits: -0.0
verify(parseInt("11",-0.0),11,id++,"\"Radix Testing Limits: -0.0\"");
//Radix Testing Limits: Infinity
verify(parseInt("11",Infinity),11,id++,"\"Radix Testing Limits: Infinity\"");
//Radix Testing Limits: check for 1
var x=parseInt("10",1)
verify(isNaN(x),true,id++,"\"Radix Testing Limits check for 1\"")
//Radix Testing Limits: check for -1
var x=parseInt("10",-1)
verify(isNaN(x),true,id++,"\"Radix Testing Limits check for -1\"")
//Radix Testing Limits: check for 37
var x=parseInt("10",37)
verify(isNaN(x),true,id++,"\"Radix Testing Limits check for 37\"")
//Radix Testing : Non Integer: String
verify(parseInt("11","+2"),3,id++,"\"Radix Testing : Non Integer: String \"")
//Radix Testing : Non Integer : Boolean: true is replaced with a 1
var x=parseInt("10",true)
verify(isNaN(x),true,id++,"\"Radix Testing : Non Integer : Boolean:true is replaced with a 1\"")
//Radix Testing : Non Integer : Boolean: false is replaced with a 0
verify(parseInt("11",false),11,id++,"\"Radix Testing : Non Integer : Boolean: false is replaced with a 0 \"")
//Radix Testing : Output from a Constructor: Number
verify(parseInt("A",new Number(16)),10,id++,"\"Radix testing: Constructor-Number \"");
//Radix Testing Output from a constructor : String
verify(parseInt("A",new String("16")),10,id++,"\"Radix testing: Constructor-String \"");
//Radix Testing Output from a variable
var obj=36
verify(parseInt("aAzZ",obj.toString()),480815,id++,"\"Radix testing: Variable \"");
//Radix Testing Function
function fun()
{
return "35"
}
verify(parseInt("bY",fun()),419,id++,"\"Radix testing:Function \"");
//String Testing : Null
verify(isNaN(parseInt("",10)),true,id++,"\"String Testing :null\"");
//String Testing 2^32
verify(parseInt("4294967296",10),4294967296,id++,"\"String Testing :2^32 \"");
//String Testing -2^32
verify(parseInt("-4294967296",10),-4294967296,id++,"\"String Testing :2^32 \"");
verify(parseInt("999999999",10),999999999,id++,"\"Large int :999999999 \"");
verify(parseInt("-FFFFFFFF",16),-0xFFFFFFFF,id++,"\"Max Neg int (Base 16) :FFFFFFFF \"");
verify(parseInt("-0xFFFFFFFF",16),-0xFFFFFFFF,id++,"\"Max Neg int (Base 16) :FFFFFFFF \"");
verify(parseInt("-0xABCDEF",16),-0xabcdef,id++,"\"Base 16 number\"");
verify(parseInt("-0xabcdef",16),-0xabcdef,id++,"\"Base 16 number\"");
verify(parseInt("abcdefghijklm",34), 24661871785383067000,id++,"\" Base 34 number \"");
verify(parseInt("lmnXYZ",36), 1307858363,id++,"\"Base 36 number - fast path \"");
verify(parseInt("lmnXYZabc",36), 61019439797496,id++,"\"Base 36 number - slow path \"");
//String Testing : Unmatched numbers for the radix
verify(parseInt("AB",11),10,id++,"\"String Testing: unmatched numbers for radix\"");
//String Testing :Expressions
verify(parseInt("A+5",11),10,id++,"\"String Testing: Expressions\"");
//String Testing : floating point
verify(parseInt("5.67",10),5,id++,"\"String Testing: Floating point numbers\"");
//String Testing : Octal Numbers
verify(parseInt("00789",008),7,id++,"\"String Testing: Octal Numbers\"");
//Substring scenarios
var strings = [
{ str: "+0x32", start: 0, length: 1, expected: NaN, expectedBase10: NaN },
{ str: "+0x32", start: 0, length: 1, expected: NaN, expectedBase10: NaN },
{ str: "+0x32", start: 0, length: 2, expected: 0, expectedBase10:0 },
{ str: "+0x32", start: 0, length: 3, expected: NaN, expectedBase10: 0 },
{ str: "+0x32", start: 0, length: 4, expected: 3, expectedBase10:0 }
];
for(var i =0; i < strings.length; i++)
{
var current = strings[i];
var substr = current.str.substring(current.start, current.length);
verify(parseInt(substr), current.expected, id++, "Substring testing base: implicit string:" + substr);
verify(parseInt(substr, 10), current.expectedBase10, id++, "Substring testing base: 10 string:" + substr);
verify(parseInt(substr, 16), current.expected, id++, "Substring testing base: 16 string:" + substr);
}
WScript.Echo("Done")