65f377b2f9b8bcb37809f7b8c81f82c74464d6ac
[clinton/parenscript.git] / t / ps-tests.lisp
1 (in-package :ps-test)
2
3 ;;; Hand-written unit tests
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
10 (setf x (+ "before" x "after"))
11 "x = 'before' + x + 'after';")
12
13 (test-ps-js plus-works-if-first
14 (setf x (+ x "middle" "after"))
15 "x += 'middle' + 'after';")
16
17 (test-ps-js setf-side-effects
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;
25 function sideEffect() {
26 x = 4;
27 return 3;
28 };
29 x = 2 + sideEffect() + x + 5;")
30 ;; Parenscript used to optimize incorrectly:
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
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)
47 "('' + x).toString(1, 2, 'baz', 3)")
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()")
56
57 (test-ps-js method-call-lit-object
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)")
64
65 (test-ps-js method-call-variable
66 ((@ x to-string))
67 "x.toString()")
68
69 (test-ps-js method-call-array
70 ((@ (list 10 20) to-string))
71 "[ 10, 20 ].toString()")
72
73 (test-ps-js method-call-fn-call
74 ((@ (foo) to-string))
75 "foo().toString()")
76
77 (test-ps-js method-call-lambda-fn
78 ((@ (lambda () (alert 10)) to-string))
79 "( function () { alert(10); } ).toString()")
80
81 (test-ps-js method-call-lambda-call
82 ((@ ((lambda (x) (return x)) 10) to-string))
83 "(function (x) { return x; })(10).toString()")
84
85 (test no-whitespace-before-dot
86 (let* ((str (ps1* '((@ ((lambda (x) (return x)) 10) to-string))))
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
92 (test-ps-js simple-slot-value
93 (let* ((foo (create :a 1)))
94 (alert (slot-value foo 'a)))
95 "var foo = { a : 1 };
96 alert(foo.a);")
97
98 (test-ps-js buggy-slot-value
99 (let* ((foo (create :a 1))
100 (slot-name "a"))
101 (alert (slot-value foo slot-name)))
102 " var foo = { a : 1 };
103 var slotName = 'a';
104 alert(foo[slotName]);
105 "); Last line was alert(foo.slotName) before bug-fix.
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]) {
150 case 1:
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"))
163 (otherwise (alert "default clause")))
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
172 (let ((escapes `((#\\ . #\\)
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
184 for generated = (ps1* `(let* ((x ,(format nil "hello~ahi" lisp-char)))))
185 for wanted = (format nil "var x = 'hello\\~ahi';" js-escape)
186 do (is (string= (normalize-js-code generated) wanted)))))
187
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")
195
196 (test-ps-js slot-value-setf
197 (setf (slot-value x 'y) (+ (+ a 3) 4))
198 "x.y = (a + 3) + 4;")
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
208 (test script-star-eval1
209 (is (string= "x = 1; y = 2;" (normalize-js-code (ps* '(setf x 1) '(setf y 2))))))
210
211 (test script-star-eval2
212 (is (string= "x = 1;" (normalize-js-code (ps* '(setf x 1))))))
213
214 (test-ps-js unquoted-nil
215 nil
216 "null")
217
218 (test-ps-js list-with-single-nil
219 (array nil)
220 "[null]")
221
222 (test-ps-js quoted-nil-is-array
223 'nil
224 "[]")
225
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"))
240 "function __setf_someThing(newVal, i1, i2) {
241 SOMETHING[i1][i2] = newVal;
242 };
243 var _js2 = 1;
244 var _js3 = 2;
245 var _js1 = 'foo';
246 __setf_someThing(_js1, _js2, _js3);")
247
248 (test-ps-js defun-optional1
249 (defun test-opt (&optional x) (return (if x "yes" "no")))
250 "function testOpt(x) {
251 if (x === undefined) {
252 x = null;
253 };
254 return x ? 'yes' : 'no';
255 }")
256
257 (test-ps-js defun-optional2
258 (defun foo (x &optional y) (+ x y))
259 "function foo(x, y) {
260 if (y === undefined) {
261 y = null;
262 };
263 x + y;
264 }")
265
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
276 (test-ps-js return-nothing
277 (return)
278 "return null")
279
280 (test-ps-js set-timeout
281 (do-set-timeout (10) (alert "foo"))
282 "setTimeout(function () { alert('foo'); }, 10)")
283 (test-ps-js operator-precedence
284 (* 3 (+ 4 5) 6)
285 "3 * (4 + 5) * 6")
286
287 (test-ps-js operators-1
288 (in prop obj)
289 "prop in obj")
290
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
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
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)
317 "{ 'foo' : 2 }")
318
319 (test-ps-js slot-value-string
320 (slot-value foo "bar")
321 "foo['bar']")
322
323 (test-ps-js slot-value-string1
324 (slot-value "bar" 'length)
325 "'bar'.length")
326
327 (test-ps-js slot-value-progn
328 (slot-value (progn (some-fun "abc") "123") "length")
329 "(someFun('abc'), '123')['length']")
330
331 (test-ps-js method-call-block
332 ((@ (progn (some-fun "abc") "123") to-string))
333 "(someFun('abc'), '123').toString()")
334
335 (test-ps-js create-blank
336 (create)
337 "{ }")
338
339 (test-ps-js blank-object-literal
340 {}
341 "{ }")
342
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
363 (test-ps-js defun-rest1
364 (defun foo (&rest bar) (alert bar[1]))
365 "function foo() {
366 var bar = [];
367 for (var i1 = 0; i1 < arguments.length - 0; i1 += 1) {
368 bar[i1] = arguments[i1 + 0];
369 };
370 alert(bar[1]);
371 }")
372
373 (test-ps-js defun-rest2
374 (defun foo (baz &rest bar) (return (+ baz (aref bar 1))))
375 "function foo(baz) {
376 var bar = [];
377 for (var i1 = 0; i1 < arguments.length - 1; i1 += 1) {
378 bar[i1] = arguments[i1 + 1];
379 };
380 return baz + bar[1];
381 }")
382
383 (test-ps-js defun-keyword1
384 (defun zoo (foo bar &key baz) (return (+ foo bar baz)))
385 "function zoo(foo, bar) {
386 var baz;
387 var _js3 = arguments.length;
388 for (var n1 = 2; n1 < _js3; n1 += 2) {
389 switch (arguments[n1]) {
390 case 'baz':
391 {
392 baz = arguments[n1 + 1];
393 };
394 };
395 };
396 if (baz === undefined) {
397 baz = null;
398 };
399 return foo + bar + baz;
400 }")
401
402 (test-ps-js defun-keyword2
403 (defun zoo (&key baz) (return (* baz baz)))
404 "function zoo() {
405 var baz;
406 var _js3 = arguments.length;
407 for (var n1 = 0; n1 < _js3; n1 += 2) {
408 switch (arguments[n1]) {
409 case 'baz':
410 {
411 baz = arguments[n1 + 1];
412 };
413 };
414 };
415 if (baz === undefined) {
416 baz = null;
417 };
418 return baz * baz;
419 }")
420
421 (test-ps-js defun-keyword3
422 (defun zoo (&key baz (bar 4)) (return (* baz bar)))
423 "function zoo() {
424 var baz;
425 var bar;
426 var _js3 = arguments.length;
427 for (var n1 = 0; n1 < _js3; n1 += 2) {
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 };
439 };
440 if (baz === undefined) {
441 baz = null;
442 };
443 if (bar === undefined) {
444 bar = 4;
445 };
446 return baz * bar;
447 }")
448
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
469 (test-ps-js keyword-funcall1
470 (func :baz 1)
471 "func('baz', 1)")
472
473 (test-ps-js keyword-funcall2
474 (func :baz 1 :bar foo)
475 "func('baz', 1, 'bar', foo)")
476
477 (test-ps-js keyword-funcall3
478 (fun a b :baz c)
479 "fun(a, b, 'baz', c)")
480
481 (test-ps-js cond1
482 (cond ((= x 1) 1))
483 "if (x == 1) {
484 1;
485 }")
486
487 (test-ps-js cond2
488 (cond ((= x 1) 2)
489 ((= y (* x 4)) (foo "blah") (* x y)))
490 "if (x == 1) {
491 2;
492 } else if (y == x * 4) {
493 foo('blah');
494 x * y;
495 }")
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")
504
505 (test-ps-js cond-expression1
506 (defun foo () (return (cond ((< 1 2) (bar "foo") (* 4 5)))))
507 "function foo() {
508 return 1 < 2 ? (bar('foo'), 4 * 5) : null;
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
518 (defun foo () (return (cond ((< 1 2) (bar "foo") (* 4 5)) ((= a b) (+ c d)) ((< 1 2 3 4 5) x) (t "foo"))))
519 "function foo() {
520 return 1 < 2 ? (bar('foo'), 4 * 5) : (a == b ? c + d : (1 < 2 < 3 < 4 < 5 ? x : 'foo'));
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 }")
528
529 (test-ps-js funcall-if-expression
530 (document.write
531 (if (= *linkornot* 1)
532 (ps-html ((:a :href "#"
533 :onclick (ps-inline (transport)))
534 img))
535 img))
536 "document.write(LINKORNOT == 1 ? '<A HREF=\"#\" ONCLICK=\"' + ('javascript:' + 'transport' + '(' + ')') + '\">' + img + '</A>' : img)")
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")
541
542 (test macro-environment1
543 (is (string= (normalize-js-code (let* ((macroname (gensym)))
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 "))))
556
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
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))
569 "'(FOO 1 2)';")
570
571 (test-ps-js keyword-consistent
572 :x
573 "'x'")
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;")
584
585 (test-ps-js define-symbol-macro
586 (progn (define-symbol-macro tst-sym-macro 2)
587 tst-sym-macro)
588 "2;")
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
597 (defun f (x) (return (if x 1 (let* ((foo x)) foo))))
598 "function f(x) {
599 var foo;
600 return x ? 1 : (foo = x, foo);
601 }")
602
603 (test-ps-js special-var1
604 (progn (defvar *foo*) (let* ((*foo* 2)) (* *foo* 2)))
605 "var FOO;
606 var tempstackvar1;
607 try {
608 tempstackvar1 = FOO;
609 FOO = 2;
610 FOO * 2;
611 } finally {
612 FOO = tempstackvar1;
613 delete tempstackvar1;
614 };")
615
616 (test-ps-js special-var2
617 (progn (defvar *foo*) (let* ((*baz* 3) (*foo* 2)) (* *foo* 2 *baz*)))
618 "var FOO;
619 var BAZ = 3;
620 var tempstackvar1;
621 try {
622 tempstackvar1 = FOO;
623 FOO = 2;
624 FOO * 2 * BAZ;
625 } finally {
626 FOO = tempstackvar1;
627 delete tempstackvar1;
628 };
629 ")
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]")
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;")
646
647 (test-ps-js special-char-equals
648 blah=
649 "blahequals")
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
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)")
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")
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
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")
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")))
751 "'<SPAN CLASS=\"ticker-symbol\" TICKER-SYMBOL=\"' + symbol + '\"><A HREF=\"http://foo.com\">' + symbol + '</A><SPAN CLASS=\"ticker-symbol-popup\"></SPAN></SPAN>'")
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 })()")
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)")
788
789 (test-ps-js math-pi
790 pi
791 "Math.PI")
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]")
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
805 (signals error (let ((x 5)) (declare (ignore x)) (ps* '(lisp x)))))
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*)))))))
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)
822
823 (test-ps-js nested-if-expressions1
824 (return (if (if x y z) a b))
825 "return (x ? y : z) ? a : b")
826
827 (test-ps-js nested-if-expressions2
828 (return (if x y (if z a b)))
829 "return x ? y : (z ? a : b)")