Fixed bug in keyword argument handling (patch thanks to Red Daly).
[clinton/parenscript.git] / t / ps-tests.lisp
CommitLineData
171bbab3 1(in-package :ps-test)
13b8268e
VS
2
3;;; Hand-written unit tests
e2932347
LC
4
5(eval-when (:compile-toplevel :load-toplevel :execute)
6 (def-suite ps-tests))
7(in-suite ps-tests)
8
9(test-ps-js plus-is-not-commutative
79630c82
VS
10 (setf x (+ "before" x "after"))
11 "x = 'before' + x + 'after';")
e2932347
LC
12
13(test-ps-js plus-works-if-first
79630c82
VS
14 (setf x (+ x "middle" "after"))
15 "x += 'middle' + 'after';")
e2932347
LC
16
17(test-ps-js setf-side-effects
58c4ef4f
VS
18 (progn
19 (let* ((x 10))
20 (defun side-effect()
21 (setf x 4)
22 (return 3))
23 (setf x (+ 2 (side-effect) x 5))))
24 "var x = 10;
e2932347
LC
25function sideEffect() {
26 x = 4;
27 return 3;
28};
29x = 2 + sideEffect() + x + 5;")
79630c82 30;; Parenscript used to optimize incorrectly:
e2932347
LC
31;; var x = 10;
32;; function sideEffect() {
33;; x = 4;
34;; return 3;
35;; };
36;; x += 2 + sideEffect() + 5;
37;;
38;; Which is 20, not 14
39
40
79630c82
VS
41(test-ps-js method-call-op-form
42 ((@ (+ "" x) to-string))
43 "('' + x).toString()")
44
45(test-ps-js method-call-op-form-args
46 ((@ (+ "" x) to-string) 1 2 :baz 3)
c7716e67 47 "('' + x).toString(1, 2, 'baz', 3)")
79630c82
VS
48
49(test-ps-js method-call-number
50 ((@ 10 to-string))
51 "( 10 ).toString()")
52
53(test-ps-js method-call-string
54 ((@ "hi" to-string))
55 "'hi'.toString()")
e2932347 56
e2932347 57(test-ps-js method-call-lit-object
79630c82
VS
58 ((@ (create :to-string (lambda () (return "it works"))) to-string))
59 "( { toString : function () { return 'it works'; } } ).toString()")
60
61(test-ps-js method-call-conditional
62 ((if a x y) 1)
63 "(a ? x : y)(1)")
e2932347
LC
64
65(test-ps-js method-call-variable
79630c82
VS
66 ((@ x to-string))
67 "x.toString()")
e2932347
LC
68
69(test-ps-js method-call-array
79630c82
VS
70 ((@ (list 10 20) to-string))
71 "[ 10, 20 ].toString()")
72
e2932347 73(test-ps-js method-call-fn-call
79630c82
VS
74 ((@ (foo) to-string))
75 "foo().toString()")
76
e2932347 77(test-ps-js method-call-lambda-fn
79630c82
VS
78 ((@ (lambda () (alert 10)) to-string))
79 "( function () { alert(10); } ).toString()")
80
e2932347 81(test-ps-js method-call-lambda-call
79630c82
VS
82 ((@ ((lambda (x) (return x)) 10) to-string))
83 "(function (x) { return x; })(10).toString()")
e2932347
LC
84
85(test no-whitespace-before-dot
79630c82 86 (let* ((str (ps1* '((@ ((lambda (x) (return x)) 10) to-string))))
e2932347
LC
87 (dot-pos (position #\. str :test #'char=))
88 (char-before (elt str (1- dot-pos)))
89 (a-parenthesis #\)))
90 (is (char= char-before a-parenthesis))))
91
e2932347 92(test-ps-js simple-slot-value
58c4ef4f 93 (let* ((foo (create :a 1)))
f2bb932e 94 (alert (slot-value foo 'a)))
07afea38
VS
95 "var foo = { a : 1 };
96 alert(foo.a);")
e2932347
LC
97
98(test-ps-js buggy-slot-value
58c4ef4f 99 (let* ((foo (create :a 1))
f2bb932e 100 (slot-name "a"))
e2932347 101 (alert (slot-value foo slot-name)))
07afea38 102 " var foo = { a : 1 };
e2932347
LC
103 var slotName = 'a';
104 alert(foo[slotName]);
07afea38 105 "); Last line was alert(foo.slotName) before bug-fix.
e2932347
LC
106
107(test-ps-js buggy-slot-value-two
108 (slot-value foo (get-slot-name))
109 "foo[getSlotName()]")
110
111(test-ps-js old-case-is-now-switch
112 ;; Switch was "case" before, but that was very non-lispish.
113 ;; For example, this code makes three messages and not one
114 ;; which may have been expected. This is because a switch
115 ;; statment must have a break statement for it to return
116 ;; after the alert. Otherwise it continues on the next
117 ;; clause.
118 (switch (aref blorg i)
119 (1 (alert "one"))
120 (2 (alert "two"))
121 (default (alert "default clause")))
122 "switch (blorg[i]) {
123 case 1: alert('one');
124 case 2: alert('two');
125 default: alert('default clause');
126 }")
127
128(test-ps-js lisp-like-case
129 (case (aref blorg i)
130 (1 (alert "one"))
131 (2 (alert "two"))
132 (default (alert "default clause")))
133 "switch (blorg[i]) {
134 case 1:
135 alert('one');
136 break;
137 case 2:
138 alert('two');
139 break;
140 default: alert('default clause');
141 }")
142
143
144(test-ps-js even-lispier-case
145 (case (aref blorg i)
146 ((1 2) (alert "Below three"))
147 (3 (alert "Three"))
148 (t (alert "Something else")))
149 "switch (blorg[i]) {
b44afd8f 150 case 1:
e2932347
LC
151 case 2:
152 alert('Below three');
153 break;
154 case 3:
155 alert('Three');
156 break;
157 default: alert('Something else');
158 }")
159
160(test-ps-js otherwise-case
161 (case (aref blorg i)
162 (1 (alert "one"))
e0f0d152 163 (otherwise (alert "default clause")))
e2932347
LC
164 "switch (blorg[i]) {
165 case 1:
166 alert('one');
167 break;
168 default: alert('default clause');
169 }")
170
171(test escape-sequences-in-string
905f534e 172 (let ((escapes `((#\\ . #\\)
e2932347
LC
173 (#\b . #\Backspace)
174 (#\f . ,(code-char 12))
175 ("u000B" . ,(code-char #x000b));;Vertical tab, too uncommon to bother with
176 (#\n . #\Newline)
177 (#\r . #\Return)
178 (#\' . #\');;Double quote need not be quoted because parenscript strings are single quoted
179 (#\t . #\Tab)
180 ("u001F" . ,(code-char #x001f));; character below 32
181 ("u0080" . ,(code-char 128)) ;;Character over 127. Actually valid, parenscript escapes them to be sure.
182 ("uABCD" . ,(code-char #xabcd)))));; Really above ascii.
183 (loop for (js-escape . lisp-char) in escapes
cb8f8e58 184 for generated = (ps1* `(let* ((x ,(format nil "hello~ahi" lisp-char)))))
b508414b
TC
185 for wanted = (format nil "var x = 'hello\\~ahi';" js-escape)
186 do (is (string= (normalize-js-code generated) wanted)))))
9da682ca 187
e0f0d152
VS
188(test-ps-js complicated-symbol-name1
189 grid-rows[foo].bar
190 "gridRows[foo].bar")
191
192(test-ps-js complicated-symbol-name2
193 *grid-rows*[foo].bar
194 "GRIDROWS[foo].bar")
cf460f93
VS
195
196(test-ps-js slot-value-setf
197 (setf (slot-value x 'y) (+ (+ a 3) 4))
72332f2a 198 "x.y = (a + 3) + 4;")
eb0befe2
VS
199
200(test-ps-js slot-value-conditional1
201 (slot-value (if zoo foo bar) 'x)
202 "(zoo ? foo : bar).x")
203
204(test-ps-js slot-value-conditional2
205 (slot-value (if (not zoo) foo bar) 'x)
206 "(!zoo ? foo : bar).x")
207
245d0fbd 208(test script-star-eval1
07afea38 209 (is (string= "x = 1; y = 2;" (normalize-js-code (ps* '(setf x 1) '(setf y 2))))))
245d0fbd
VS
210
211(test script-star-eval2
07afea38 212 (is (string= "x = 1;" (normalize-js-code (ps* '(setf x 1))))))
62b4a867 213
46f794a4
RD
214(test-ps-js unquoted-nil
215 nil
216 "null")
217
218(test-ps-js list-with-single-nil
fb469285 219 (array nil)
46f794a4
RD
220 "[null]")
221
fb469285 222(test-ps-js quoted-nil-is-array
62b4a867 223 'nil
1cd3540f 224 "[]")
72332f2a 225
5af33a27
VS
226(test-ps-js defsetf1
227 (progn (defsetf baz (x y) (newval) `(set-baz ,x ,y ,newval))
228 (setf (baz 1 2) 3))
229 "var _js2 = 1; var _js3 = 2; var _js1 = 3; setBaz(_js2, _js3, _js1);")
230
231(test-ps-js defsetf-short
232 (progn (defsetf baz set-baz "docstring")
233 (setf (baz 1 2 3) "foo"))
234 "setBaz(1, 2, 3, 'foo');")
235
236(test-ps-js defun-setf1
237 (progn (defun (setf some-thing) (new-val i1 i2)
238 (setf (aref *some-thing* i1 i2) new-val))
239 (setf (some-thing 1 2) "foo"))
c7716e67 240"function __setf_someThing(newVal, i1, i2) {
5af33a27
VS
241 SOMETHING[i1][i2] = newVal;
242};
c7716e67
VS
243var _js2 = 1;
244var _js3 = 2;
245var _js1 = 'foo';
246__setf_someThing(_js1, _js2, _js3);")
dbb7017b 247
d989d711
VS
248(test-ps-js defun-optional1
249 (defun test-opt (&optional x) (return (if x "yes" "no")))
250 "function testOpt(x) {
0e198f66
TC
251 if (x === undefined) {
252 x = null;
253 };
254 return x ? 'yes' : 'no';
a2434734
VS
255}")
256
5ac90695
VS
257(test-ps-js defun-optional2
258 (defun foo (x &optional y) (+ x y))
259 "function foo(x, y) {
0e198f66
TC
260 if (y === undefined) {
261 y = null;
262 };
5ac90695
VS
263 x + y;
264}")
265
7be02bed
VS
266(test-ps-js defun-optional3
267 (defun blah (&optional (x 0))
268 (return x))
269 "function blah(x) {
270 if (x === undefined) {
271 x = 0;
272 };
273 return x;
274}")
275
a2434734
VS
276(test-ps-js return-nothing
277 (return)
278 "return null")
dbb7017b
VS
279
280(test-ps-js set-timeout
281 (do-set-timeout (10) (alert "foo"))
b44afd8f 282 "setTimeout(function () { alert('foo'); }, 10)")
07afea38
VS
283(test-ps-js operator-precedence
284 (* 3 (+ 4 5) 6)
285 "3 * (4 + 5) * 6")
286
2d2c6dc2
TC
287(test-ps-js operators-1
288 (in prop obj)
289 "prop in obj")
290
07afea38
VS
291(test-ps-js incf1
292 (incf foo bar)
293 "foo += bar")
294
295(test-ps-js decf1
296 (decf foo bar)
297 "foo -= bar")
298
49c50da4
VS
299(test-ps-js incf2
300 (incf x 5)
301 "x += 5")
302
303(test-ps-js decf2
304 (decf y 10)
305 "y -= 10")
306
07afea38
VS
307(test-ps-js setf-conditional
308 (setf foo (if x 1 2))
309 "foo = x ? 1 : 2;")
310
311(test-ps-js obj-literal-numbers
312 (create 1 "foo")
313 "{ 1 : 'foo' }")
314
315(test-ps-js obj-literal-strings
316 (create "foo" 2)
a805b30d
VS
317 "{ 'foo' : 2 }")
318
319(test-ps-js slot-value-string
320 (slot-value foo "bar")
321 "foo['bar']")
b44afd8f 322
79630c82
VS
323(test-ps-js slot-value-string1
324 (slot-value "bar" 'length)
325 "'bar'.length")
326
b44afd8f 327(test-ps-js slot-value-progn
13b8268e
VS
328 (slot-value (progn (some-fun "abc") "123") "length")
329 "(someFun('abc'), '123')['length']")
b44afd8f
VS
330
331(test-ps-js method-call-block
79630c82 332 ((@ (progn (some-fun "abc") "123") to-string))
13b8268e 333 "(someFun('abc'), '123').toString()")
b44afd8f
VS
334
335(test-ps-js create-blank
336 (create)
337 "{ }")
338
339(test-ps-js blank-object-literal
5ac90695 340 {}
667e3784 341 "{ }")
44934751 342
06ed0d3a
VS
343(test-ps-js array-literal1
344 []
345 "[]")
346
347(test-ps-js array-literal2
348 ([])
349 "[]")
350
351(test-ps-js array-literal3
352 ([] 1 2 3)
353 "[1, 2, 3]")
354
355(test-ps-js array-literal4
356 ([] 1 (2 3))
357 "[1, [2, 3]]")
358
359(test-ps-js array-literal5
360 ([] (1 2) ("a" "b"))
361 "[[1, 2], ['a', 'b']]")
362
44934751
VS
363(test-ps-js defun-rest1
364 (defun foo (&rest bar) (alert bar[1]))
365 "function foo() {
366 var bar = [];
c7716e67
VS
367 for (var i1 = 0; i1 < arguments.length - 0; i1 += 1) {
368 bar[i1] = arguments[i1 + 0];
44934751
VS
369 };
370 alert(bar[1]);
371}")
372
373(test-ps-js defun-rest2
374 (defun foo (baz &rest bar) (return (+ baz (aref bar 1))))
2e593e4c 375 "function foo(baz) {
44934751 376 var bar = [];
c7716e67
VS
377 for (var i1 = 0; i1 < arguments.length - 1; i1 += 1) {
378 bar[i1] = arguments[i1 + 1];
44934751
VS
379 };
380 return baz + bar[1];
381}")
2e593e4c
VS
382
383(test-ps-js defun-keyword1
384 (defun zoo (foo bar &key baz) (return (+ foo bar baz)))
1cd3540f 385"function zoo(foo, bar) {
c7716e67 386 var baz;
1cd3540f
VS
387 var _js3 = arguments.length;
388 for (var n1 = 2; n1 < _js3; n1 += 2) {
c7716e67
VS
389 switch (arguments[n1]) {
390 case 'baz':
391 {
392 baz = arguments[n1 + 1];
393 };
394 };
0e198f66 395 };
c7716e67
VS
396 if (baz === undefined) {
397 baz = null;
398 };
399 return foo + bar + baz;
2e593e4c 400}")
b0f64e9b 401
f2bb932e
VS
402(test-ps-js defun-keyword2
403 (defun zoo (&key baz) (return (* baz baz)))
c7716e67
VS
404 "function zoo() {
405 var baz;
1cd3540f
VS
406 var _js3 = arguments.length;
407 for (var n1 = 0; n1 < _js3; n1 += 2) {
c7716e67
VS
408 switch (arguments[n1]) {
409 case 'baz':
410 {
411 baz = arguments[n1 + 1];
412 };
413 };
c7716e67
VS
414 };
415 if (baz === undefined) {
416 baz = null;
f2bb932e 417 };
c7716e67 418 return baz * baz;
f2bb932e
VS
419}")
420
421(test-ps-js defun-keyword3
422 (defun zoo (&key baz (bar 4)) (return (* baz bar)))
c7716e67
VS
423 "function zoo() {
424 var baz;
425 var bar;
1cd3540f
VS
426 var _js3 = arguments.length;
427 for (var n1 = 0; n1 < _js3; n1 += 2) {
c7716e67
VS
428 switch (arguments[n1]) {
429 case 'baz':
430 {
431 baz = arguments[n1 + 1];
432 };
433 break;
434 case 'bar':
435 {
436 bar = arguments[n1 + 1];
437 };
438 };
c7716e67
VS
439 };
440 if (baz === undefined) {
441 baz = null;
f2bb932e 442 };
c7716e67
VS
443 if (bar === undefined) {
444 bar = 4;
f2bb932e 445 };
c7716e67 446 return baz * bar;
f2bb932e
VS
447}")
448
62ddca23
VS
449(test-ps-js defun-keyword4
450 (defun hello-world (&key ((:my-name-key my-name) 1))
451 my-name)
452 "function helloWorld() {
453 var myName;
454 var _js3 = arguments.length;
455 for (var n1 = 0; n1 < _js3; n1 += 2) {
456 switch (arguments[n1]) {
457 case 'my-name-key':
458 {
459 myName = arguments[n1 + 1];
460 };
461 };
462 };
463 if (myName === undefined) {
464 myName = 1;
465 };
466 myName;
467}")
468
f2bb932e
VS
469(test-ps-js keyword-funcall1
470 (func :baz 1)
c7716e67 471 "func('baz', 1)")
f2bb932e
VS
472
473(test-ps-js keyword-funcall2
474 (func :baz 1 :bar foo)
c7716e67 475 "func('baz', 1, 'bar', foo)")
f2bb932e
VS
476
477(test-ps-js keyword-funcall3
478 (fun a b :baz c)
c7716e67 479 "fun(a, b, 'baz', c)")
f2bb932e 480
b0f64e9b
VS
481(test-ps-js cond1
482 (cond ((= x 1) 1))
483 "if (x == 1) {
484 1;
485}")
486
487(test-ps-js cond2
fdfa77fc
VS
488 (cond ((= x 1) 2)
489 ((= y (* x 4)) (foo "blah") (* x y)))
b0f64e9b
VS
490 "if (x == 1) {
491 2;
492} else if (y == x * 4) {
13b8268e 493 foo('blah');
b0f64e9b
VS
494 x * y;
495}")
5705b542
VS
496
497(test-ps-js if-exp-without-else-returns-null
498 (return (if x 1))
499 "return x ? 1 : null")
500
501(test-ps-js progn-expression-single-statement
502 (return (progn (* x y)))
503 "return x * y")
0949f072
VS
504
505(test-ps-js cond-expression1
13b8268e 506 (defun foo () (return (cond ((< 1 2) (bar "foo") (* 4 5)))))
0949f072 507 "function foo() {
13b8268e 508 return 1 < 2 ? (bar('foo'), 4 * 5) : null;
0949f072
VS
509}")
510
511(test-ps-js cond-expression2
512 (defun foo () (return (cond ((< 2 1) "foo") ((= 7 7) "bar"))))
513 "function foo() {
514 return 2 < 1 ? 'foo' : (7 == 7 ? 'bar' : null);
515}")
516
517(test-ps-js cond-expression-final-t-clause
13b8268e 518 (defun foo () (return (cond ((< 1 2) (bar "foo") (* 4 5)) ((= a b) (+ c d)) ((< 1 2 3 4 5) x) (t "foo"))))
0949f072 519 "function foo() {
13b8268e 520 return 1 < 2 ? (bar('foo'), 4 * 5) : (a == b ? c + d : (1 < 2 < 3 < 4 < 5 ? x : 'foo'));
0949f072
VS
521}")
522
523(test-ps-js cond-expression-middle-t-clause ;; should this signal a warning?
524 (defun foo () (return (cond ((< 2 1) 5) (t "foo") ((< 1 2) "bar"))))
525 "function foo() {
526 return 2 < 1 ? 5 : 'foo';
527}")
e5253c5b
VS
528
529(test-ps-js funcall-if-expression
530 (document.write
531 (if (= *linkornot* 1)
532 (ps-html ((:a :href "#"
e69d0a12 533 :onclick (ps-inline (transport)))
e5253c5b
VS
534 img))
535 img))
496ef8be 536 "document.write(LINKORNOT == 1 ? '<A HREF=\"#\" ONCLICK=\"' + ('javascript:' + 'transport' + '(' + ')') + '\">' + img + '</A>' : img)")
49c50da4
VS
537
538(test-ps-js negate-number-literal ;; ok, this was broken and fixed before, but no one bothered to add the test!
539 (- 1)
540 "-1")
efe35e12
VS
541
542(test macro-environment1
58c4ef4f 543 (is (string= (normalize-js-code (let* ((macroname (gensym)))
efe35e12
VS
544 (ps* `(defmacro ,macroname (x) `(+ ,x 123))
545 `(defun test1 ()
546 (macrolet ((,macroname (x) `(aref data ,x)))
547 (when (,macroname x)
548 (setf (,macroname x) 123)))))))
549 (normalize-js-code
550"function test1() {
551 if (data[x]) {
552 data[x] = 123;
553 };
554};
555"))))
921f2e02 556
8cfc6fe9
VS
557(test macro-environment2
558 (is (string= (normalize-js-code (let ((outer-lexical-variable 1))
559 (defpsmacro macro-environment2-macro (x)
560 `(+ ,outer-lexical-variable ,x))
561 (ps* '(macro-environment2-macro 2))))
562 (normalize-js-code "1 + 2;"))))
563
921f2e02
VS
564(test-ps-js ampersand-whole-1
565 (macrolet ((foo (&whole foo bar baz)
566 (declare (ignore bar baz))
567 (format nil "~a" foo)))
568 (foo 1 2))
6e8ff198
VS
569 "'(FOO 1 2)';")
570
571(test-ps-js keyword-consistent
572 :x
f2bb932e 573 "'x'")
43a1d5c3
VS
574
575(test-ps-js simple-symbol-macrolet
576 (symbol-macrolet ((x 1)) x)
577 "1;")
578
579(test-ps-js compound-symbol-macrolet
580 (symbol-macrolet ((x 123)
581 (y (* 2 x)))
582 y)
583 "2 * 123;")
1af04ae5
VS
584
585(test-ps-js define-symbol-macro
586 (progn (define-symbol-macro tst-sym-macro 2)
587 tst-sym-macro)
588 "2;")
e0032a96
VS
589
590(test-ps-js expression-progn
591 (defun f () (return (progn (foo) (if x 1 2))))
592 "function f() {
593 return (foo(), x ? 1 : 2);
594}")
595
596(test-ps-js let-decl-in-expression
58c4ef4f 597 (defun f (x) (return (if x 1 (let* ((foo x)) foo))))
e0032a96
VS
598 "function f(x) {
599 var foo;
600 return x ? 1 : (foo = x, foo);
601}")
58c4ef4f
VS
602
603(test-ps-js special-var1
604 (progn (defvar *foo*) (let* ((*foo* 2)) (* *foo* 2)))
605 "var FOO;
606var tempstackvar1;
607try {
608 tempstackvar1 = FOO;
609 FOO = 2;
610 FOO * 2;
611} finally {
612 FOO = tempstackvar1;
d777a405 613 delete tempstackvar1;
58c4ef4f
VS
614};")
615
616(test-ps-js special-var2
617 (progn (defvar *foo*) (let* ((*baz* 3) (*foo* 2)) (* *foo* 2 *baz*)))
618 "var FOO;
619var BAZ = 3;
620var tempstackvar1;
621try {
622 tempstackvar1 = FOO;
623 FOO = 2;
624 FOO * 2 * BAZ;
625} finally {
626 FOO = tempstackvar1;
d777a405
TC
627 delete tempstackvar1;
628};
629")
5ac90695
VS
630
631(test-ps-js literal1
632 (setf x undefined)
633 "x = undefined;")
634
635(test-ps-js literal2
636 (aref this x)
637 "this[x]")
d89456ee
VS
638
639(test-ps-js setf-dec1
640 (setf x (- 1 x 2))
641 "x = 1 - x - 2;")
642
643(test-ps-js setf-dec2
644 (setf x (- x 1 2))
645 "x = x - 1 - 2;")
93e99720
VS
646
647(test-ps-js special-char-equals
648 blah=
649 "blahequals")
7be02bed
VS
650
651(test-ps-js setf-operator-priority
652 (return (or (slot-value cache id)
653 (setf (slot-value cache id) (document.get-element-by-id id))))
654 "return cache[id] || (cache[id] = document.getElementById(id))")
655
656(test-ps-js aref-operator-priority
657 (aref (if (and x (> (length x) 0))
658 (aref x 0)
659 y)
660 z)
661 "(x && x.length > 0 ? x[0] : y)[z]")
662
663(test-ps-js aref-operator-priority1
664 (aref (or (slot-value x 'y)
665 (slot-value a 'b))
666 z)
667 "(x.y || a.b)[z]")
668
669(test-ps-js aref-operator-priority2
670 (aref (if a b c) 0)
671 "(a ? b : c)[0]")
672
673(test-ps-js negative-operator-priority
674 (- (if x y z))
675 "-(x ? y : z)")
676
677(test-ps-js op-p1
678 (new (or a b))
679 "new (a || b)")
680
681(test-ps-js op-p2
682 (delete (if a (or b c) d))
683 "delete (a ? b || c : d)")
684
685(test-ps-js op-p3
686 (not (if (or x (not y)) z))
687 "!(x || !y ? z : null)")
688
689(test-ps-js op-p4
690 (- (- (* 1 2) 3))
691 "-(1 * 2 - 3)")
692
693(test-ps-js op-p5
694 (instanceof (or a b) (if x y z))
695 "((a || b) instanceof (x ? y : z))")
696
7be02bed
VS
697(test-ps-js op-p7
698 (or x (if (= x 0) "zero" "empty"))
699 "x || (x == 0 ? 'zero' : 'empty')")
700
701(test-ps-js named-op-expression
702 (throw (if a b c))
703 "throw a ? b : c")
704
705(test-ps-js named-op-expression1
706 (typeof (or x y))
707 "typeof (x || y)")
9b31227f
VS
708
709(test-ps-js aref-array-expression
710 (aref (or a b c) 0)
711 "(a || b || c)[0]")
712
713(test-ps-js slot-value-operator
714 (slot-value (or a b c) 'd)
715 "(a || b || c).d")
716
717(test-ps-js slot-value-parens
718 (slot-value (slot-value foo 'bar) 'baz)
719 "foo.bar.baz")
9496b3a4
VS
720
721(test-ps-js funcall-funcall
722 ((foo))
723 "foo()()")
724
725(test-ps-js expression-funcall
726 ((or (@ window eval) eval) foo nil)
727 "(window.eval || eval)(foo, null)")
728
729(test-ps-js expression-funcall1
730 (((or (@ window eval) eval) foo nil))
731 "(window.eval || eval)(foo, null)()")
732
733(test-ps-js expression-funcall2
734 (((or (@ window eval) eval)) foo nil)
735 "(window.eval || eval)()(foo, null)")
736
79630c82
VS
737(test-ps-js slot-value-object-literal
738 (slot-value (create :a 1) 'a)
739 "({ a : 1 }).a")
740
741(test-ps-js slot-value-lambda
742 (slot-value (lambda ()) 'prototype)
743 "(function () { }).prototype")
dde6e656
VS
744
745(test-ps-js who-html1
746 (who-ps-html (:span :class "ticker-symbol"
747 :ticker-symbol symbol
748 (:a :href "http://foo.com"
749 symbol)
750 (:span :class "ticker-symbol-popup")))
0734b390 751 "'<SPAN CLASS=\"ticker-symbol\" TICKER-SYMBOL=\"' + symbol + '\"><A HREF=\"http://foo.com\">' + symbol + '</A><SPAN CLASS=\"ticker-symbol-popup\"></SPAN></SPAN>'")
ef3be63e
VS
752
753(test-ps-js flet1
754 ((lambda () (flet ((foo (x) (return (1+ x)))) (return (foo 1)))))
755 "(function () {
756 var foo = function (x) {
757 return x + 1;
758 };
759 return foo(1);
760})()")
761
762(test-ps-js labels1
763 ((lambda () (labels ((foo (x)
764 (return (if (=== 0 x)
765 0
766 (+ x (foo (1- x)))))))
767 (return (foo 3)))))
768 "(function () {
769 var foo = function foo(x) {
770 return 0 === x ? 0 : x + foo(x - 1);
771 };
772 return foo(3);
773})()")
083b7f89
VS
774
775(test-ps-js for-loop-var-init-exp
776 ((lambda (x)
777 (return (do* ((y (if x 0 1) (1+ y))
778 (z 0 (1+ z)))
779 ((= y 3) z))))
780 true)
781 "(function (x) {
782 return (function () {
783 for (var y = x ? 0 : 1, z = 0; y != 3; y += 1, z += 1) {
784 };
785 return z;
786 })();
787})(true)")
5288d666
VS
788
789(test-ps-js math-pi
790 pi
791 "Math.PI")
fb469285
VS
792
793(test-ps-js literal-array
794 '(1 2 3)
795 "[1, 2, 3]")
796
797(test-ps-js literal-array-1
798 '(1 foo 3)
799 "[1, 'foo', 3]")
ceb1f277
VS
800
801(test ps-lisp-expands-in-lexical-environment
802 (is (string= "5;" (let ((x 5)) (ps (lisp x))))))
803
804(test ps*-lisp-expands-in-null-lexical-environment
1cd3540f 805 (signals error (let ((x 5)) (declare (ignore x)) (ps* '(lisp x)))))
ceb1f277
VS
806
807(test ps*-lisp-expands-in-dynamic-environment
808 (is (string= "1 + 2;" (let ((*print-level* 2)) (ps* '(+ 1 (lisp *print-level*)))))))
809
810(test ps-lisp-dynamic-environment
811 (is (string= "1 + 2;" (let ((*print-level* 2)) (ps (+ 1 (lisp *print-level*)))))))
4525e3cd
VS
812
813(test-ps-js ps-js-target-version-keyword-test1
814 (defun foo (x y &key bar baz))
815 "function foo(x, y) {
816 var x1 = Array.prototype.indexOf.call(arguments, 'bar', 2);
817 var bar = -1 == x1 ? null : arguments[x1 + 1];
818 var x2 = Array.prototype.indexOf.call(arguments, 'baz', 2);
819 var baz = -1 == x2 ? null : arguments[x2 + 1];
820}"
821 :js-target-version 1.6)