Menu

[r4]: / trunk / JavaScript / UnitTest / InterpExprTest.cs  Maximize  Restore  History

Download this file

395 lines (355 with data), 9.4 kB

  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
/** JavaScript -- DOT NET Javascript Library
* Copyright (C) 2005 John Garrison
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
using System;
using NUnit.Framework;
namespace JavaScript.UnitTest
{
/// <summary>
/// Summary description for InterpTest.
/// </summary>
[TestFixture]
public class InterpTest
{
public InterpTest()
{
}
[Test]
public void ShortExprPlus()
{
string src = "1+1;";
Assert.AreEqual("2", Exec(src), "1+1");
}
[Test]
public void ShortExprMinus()
{
string src = "1-1;";
Assert.AreEqual("0", Exec(src), "1-1;");
}
[Test]
public void ShortExprNoSemi()
{
string src = "1";
Assert.AreEqual(true, ExecHasException(src), "No SEMI");
}
[Test]
public void ShortExprNoSemi2()
{
string src = "1+1";
Assert.AreEqual(true, ExecHasException(src), "No SEMI 2");
}
[Test]
public void ShortExprNegate()
{
string src = "-1;";
Assert.AreEqual("-1", Exec(src), "-1");
}
[Test]
public void ShortExprMult()
{
string src = "1*2;";
Assert.AreEqual("2", Exec(src), "1*2");
src = "4*4;";
Assert.AreEqual("16", Exec(src), "4*4");
src = "4*.5;";
Assert.AreEqual("2", Exec(src), "4*.5;");
}
[Test]
public void ShortExprDiv()
{
string src = "1/2;";
Assert.AreEqual("0", Exec(src), "1/2");
src = "1/2.0;";
Assert.AreEqual("0.5", Exec(src), "1/2.0");
src = "10/5;";
Assert.AreEqual("2", Exec(src), "10/5;");
}
[Test]
public void ShortExprMod()
{
string src = "6 % 12;";
Assert.AreEqual("6", Exec(src), "6 % 12");
src = "13 % 12;";
Assert.AreEqual("1", Exec(src), "13 % 12");
}
[Test]
public void ShortExprCmb()
{
string src = "13 % 12 + 1;";
Assert.AreEqual("2", Exec(src), "13 % 12 + 1;");
src = "1 + 2 * 2;";
Assert.AreEqual("5", Exec(src), "1 + 2 * 2;");
}
[Test]
public void ShortExprLogOr()
{
string src = "true || true;";
Assert.AreEqual("True", Exec(src), "true || true;");
src = "false || false;";
Assert.AreEqual("False", Exec(src), "false || false;");
src = "false || true;";
Assert.AreEqual("True", Exec(src), "false || true;");
src = "true || false;";
Assert.AreEqual("True", Exec(src), "true || false;");
}
[Test]
public void ShortExprBinOr()
{
string src = "1 | 2;";
Assert.AreEqual("3", Exec(src), "1 | 2;");
}
[Test]
public void ShortExprLogAnd()
{
string src = "true && true;";
Assert.AreEqual("True", Exec(src), "true && true;");
src = "false && false;";
Assert.AreEqual("False", Exec(src), "false && false;");
src = "false && true;";
Assert.AreEqual("False", Exec(src), "false && true;");
src = "true && false;";
Assert.AreEqual("False", Exec(src), "true && false;");
}
[Test]
public void ShortExprBinAnd()
{
string src = "1 & 2;";
Assert.AreEqual("0", Exec(src), "1 & 2;");
src = "1 & 1;";
Assert.AreEqual("1", Exec(src), "1 & 1;");
}
[Test]
public void ShortExprXor()
{
string src = "1 ^ 1;";
Assert.AreEqual("0", Exec(src), "1 ^ 1;");
src = "1 ^ 2;";
Assert.AreEqual("3", Exec(src), "1 ^ 2;");
}
[Test]
public void ShortExprNot()
{
string src = "! false;";
Assert.AreEqual("True", Exec(src), "! false;");
src = "! true;";
Assert.AreEqual("False", Exec(src), "! true;");
}
[Test]
public void ShortExprVar()
{
JsEngine eng = new JsEngine();
Exec( "var a;", eng );
Exec( "a = 1;", eng );
Assert.AreEqual("1", Exec("a;", eng), "Assigment a=1");
Exec( "var b = 1;", eng );
Assert.AreEqual("1", Exec("b;", eng), "Assigment var b=1");
Assert.AreEqual("2", Exec("a+b;", eng), "a+b");
Exec( "var c = a+b;", eng );
Assert.AreEqual("2", Exec("c;", eng), "var c = a+b");
}
[Test]
public void ShortExprInc()
{
JsEngine eng = new JsEngine();
Exec( "var a = 1; var b = 1;", eng );
Assert.AreEqual("2", Exec("a+b;", eng), "Assigment a=1;b=1");
Assert.AreEqual("True", Exec("a++ == 1;", eng), "a++ == 1");
Assert.AreEqual("2", Exec("a;", eng), "a==2");
Assert.AreEqual("2", Exec("a = ++b; a;", eng),"a = ++b; a;");
Assert.AreEqual("3", Exec("++b;", eng), "++b == 3;");
}
[Test]
public void ShortExprPara()
{
Assert.AreEqual("2", Exec("(1+1);"), "(1+1);");
Assert.AreEqual("4", Exec("(1+1)*2;"), "(1+1)*2;");
Assert.AreEqual("6", Exec("2*(1+2);"), "2*(1+2);");
}
[Test]
public void ShortExprIf()
{
Console.WriteLine("ShortExprIf");
string src = "var a = 1;\n" +
"if ( a == 1 )\n" +
"{\n" +
"a = 2;\n" +
"}\n" +
"a;\n";
Assert.AreEqual("2", Exec(src), "if ( a == 1 )");
}
[Test]
public void ShortExprElse()
{
Console.WriteLine("ShortExprElse");
string src = "var x = 1;\n" +
"if ( x == 2)\n" +
"{\n" +
"x = 3;\n" +
"}\n" +
"else\n" +
"x = 4;\n" +
"x;\n";
Assert.AreEqual("4", Exec(src), "if ... else ... ");
src = "var x = 1;\n" +
"if ( x == 2 || x == 1 )\n" +
"x = 3;\n" +
"else\n" +
"{\n" +
"x = 4;\n" +
"}\n" +
"x;\n";
Assert.AreEqual("3", Exec(src), "if ... else ... ");
}
[Test]
public void ShortExprWhile()
{
Console.WriteLine("ShortExprWhile");
string src = "var x = 1;" +
"while ( x < 3 )" +
"{" +
"x++;" +
"}" +
"x;";
Assert.AreEqual("3", Exec(src), "while (x < 3)");
}
[Test]
public void ShortExprIfElse2()
{
Console.WriteLine("ShortExprIfElse2");
string src = "if ( x == 33 )\n" +
"{\n" +
"x = 100;\n" +
"}\n" +
"else if ( x == 22 )\n" +
"{\n" +
"x = 33;\n" +
"}\n" +
"else\n" +
"{\n" +
"x = 22;\n" +
"}";
JsEngine eng = new JsEngine();
Exec( "var x = 1;", eng );
Assert.AreEqual("1", Exec("x;", eng), "1");
Exec( src, eng );
Assert.AreEqual("22", Exec("x;", eng), "2");
Exec( src, eng );
Assert.AreEqual("33", Exec("x;", eng), "3");
Exec( src, eng );
Assert.AreEqual("100", Exec("x;", eng), "4");
}
[Test]
public void NestedIf()
{
Console.WriteLine("NestedIf");
string src = "var x = 1;" +
"if ( x == 1 )" +
"{" +
"if ( x < 2 )" +
"{" +
"x = 5;" +
"}" +
"}" +
"x;";
Assert.AreEqual("5", Exec(src), "if");
}
[Test]
public void ArraySyntax()
{
JsEngine eng = new JsEngine();
Exec( "function arr(){this.a=1;this.b=2;}", eng );
Exec( "var x = new arr();", eng );
Assert.AreEqual("1", Exec("x.a;", eng), "x.a");
Assert.AreEqual("2", Exec("x.b;", eng), "x.b");
Assert.AreEqual("1", Exec("x['a'];", eng), "x['a']");
Assert.AreEqual("2", Exec("x['b'];", eng), "x['b']");
}
[Test]
public void ForTest()
{
string src = "var x = 1;" +
"for ( var y = 0; y < 1; y++ )" +
"{" +
"x++;" +
"}" +
"x;";
Assert.AreEqual("2", Exec(src), "x");
}
[Test]
public void BreakTest()
{
string src = "function fn(a)" +
"{" +
"var ret = \"\";" +
"for ( var x = 0; x < a.length; x++ )" +
"{" +
"if ( a.charAt(x) == 'b' )" +
"break;" +
"ret += a.charAt(x);" +
"}" +
"return ret;" +
"}" +
"fn('12b34');";
Assert.AreEqual("12", Exec(src), "x");
}
[Test]
public void ConditionalTest()
{
Assert.AreEqual("false", Exec("(1 > 1) ? 'true' : 'false';"), "conditional 1");
Assert.AreEqual("true", Exec("(1 > 0) ? 'true' : 'false';"), "conditional 1");
JsEngine eng = new JsEngine();
eng.Eval( "var mstrVersion = \"IE\";" );
eng.Eval("var isNav = (mstrVersion == \"Netscape\") ? true : false;");
Assert.AreEqual("False", eng.Eval("isNav;").ToString(), "isNav;");
eng.Eval( "var mstrVersion = \"Netscape\";" );
eng.Eval("isNav = (mstrVersion == \"Netscape\") ? true : false;");
Assert.AreEqual("True", eng.Eval("isNav;").ToString(), "isNav;");
}
[Test]
public void CommentTest()
{
Exec("// this is a comment\r\n");
}
[Test]
public void ConditionalOperatorTest()
{
Assert.AreEqual("1", Exec("var x = (1 > 0) ? 1 : 0; x;"));
}
private bool ExecHasException( string src )
{
try
{
Exec( src );
return false;
}
catch ( Exception )
{
return true;
}
}
private string Exec( string src )
{
JsEngine eng = new JsEngine();
return Exec( src, eng );
}
private string Exec( string src, JsEngine eng )
{
JsObject o = eng.Eval( src, 1 );
return o.ToString();
}
}
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.