86bc5c2d2808387d53f7feff8108f1a1c75fa01f
[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 "new Array()")
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 _js4 = arguments.length;
388 var n1 = 2;
389 for (; n1 < _js4; ) {
390 switch (arguments[n1]) {
391 case 'baz':
392 {
393 baz = arguments[n1 + 1];
394 };
395 };
396 var _js5 = n1 + 2;
397 n1 = _js5;
398 };
399 if (baz === undefined) {
400 baz = null;
401 };
402 return foo + bar + baz;
403 }")
404
405 (test-ps-js defun-keyword2
406 (defun zoo (&key baz) (return (* baz baz)))
407 "function zoo() {
408 var baz;
409 var _js4 = arguments.length;
410 var n1 = 0;
411 for (; n1 < _js4; ) {
412 switch (arguments[n1]) {
413 case 'baz':
414 {
415 baz = arguments[n1 + 1];
416 };
417 };
418 var _js5 = n1 + 2;
419 n1 = _js5;
420 };
421 if (baz === undefined) {
422 baz = null;
423 };
424 return baz * baz;
425 }")
426
427 (test-ps-js defun-keyword3
428 (defun zoo (&key baz (bar 4)) (return (* baz bar)))
429 "function zoo() {
430 var baz;
431 var bar;
432 var _js4 = arguments.length;
433 var n1 = 0;
434 for (; n1 < _js4; ) {
435 switch (arguments[n1]) {
436 case 'baz':
437 {
438 baz = arguments[n1 + 1];
439 };
440 break;
441 case 'bar':
442 {
443 bar = arguments[n1 + 1];
444 };
445 };
446 var _js5 = n1 + 2;
447 n1 = _js5;
448 };
449 if (baz === undefined) {
450 baz = null;
451 };
452 if (bar === undefined) {
453 bar = 4;
454 };
455 return baz * bar;
456 }")
457
458 (test-ps-js keyword-funcall1
459 (func :baz 1)
460 "func('baz', 1)")
461
462 (test-ps-js keyword-funcall2
463 (func :baz 1 :bar foo)
464 "func('baz', 1, 'bar', foo)")
465
466 (test-ps-js keyword-funcall3
467 (fun a b :baz c)
468 "fun(a, b, 'baz', c)")
469
470 (test-ps-js cond1
471 (cond ((= x 1) 1))
472 "if (x == 1) {
473 1;
474 }")
475
476 (test-ps-js cond2
477 (cond ((= x 1) 2) ((= y (* x 4)) (foo "blah") (* x y)))
478 "if (x == 1) {
479 2;
480 } else if (y == x * 4) {
481 foo('blah');
482 x * y;
483 }")
484
485 (test-ps-js if-exp-without-else-returns-null
486 (return (if x 1))
487 "return x ? 1 : null")
488
489 (test-ps-js progn-expression-single-statement
490 (return (progn (* x y)))
491 "return x * y")
492
493 (test-ps-js cond-expression1
494 (defun foo () (return (cond ((< 1 2) (bar "foo") (* 4 5)))))
495 "function foo() {
496 return 1 < 2 ? (bar('foo'), 4 * 5) : null;
497 }")
498
499 (test-ps-js cond-expression2
500 (defun foo () (return (cond ((< 2 1) "foo") ((= 7 7) "bar"))))
501 "function foo() {
502 return 2 < 1 ? 'foo' : (7 == 7 ? 'bar' : null);
503 }")
504
505 (test-ps-js cond-expression-final-t-clause
506 (defun foo () (return (cond ((< 1 2) (bar "foo") (* 4 5)) ((= a b) (+ c d)) ((< 1 2 3 4 5) x) (t "foo"))))
507 "function foo() {
508 return 1 < 2 ? (bar('foo'), 4 * 5) : (a == b ? c + d : (1 < 2 < 3 < 4 < 5 ? x : 'foo'));
509 }")
510
511 (test-ps-js cond-expression-middle-t-clause ;; should this signal a warning?
512 (defun foo () (return (cond ((< 2 1) 5) (t "foo") ((< 1 2) "bar"))))
513 "function foo() {
514 return 2 < 1 ? 5 : 'foo';
515 }")
516
517 (test-ps-js funcall-if-expression
518 (document.write
519 (if (= *linkornot* 1)
520 (ps-html ((:a :href "#"
521 :onclick (ps-inline (transport)))
522 img))
523 img))
524 "document.write(LINKORNOT == 1 ? '<A HREF=\"#\" ONCLICK=\"' + ('javascript:' + 'transport' + '(' + ')') + '\">' + img + '</A>' : img)")
525
526 (test-ps-js negate-number-literal ;; ok, this was broken and fixed before, but no one bothered to add the test!
527 (- 1)
528 "-1")
529
530 (test macro-environment1
531 (is (string= (normalize-js-code (let* ((macroname (gensym)))
532 (ps* `(defmacro ,macroname (x) `(+ ,x 123))
533 `(defun test1 ()
534 (macrolet ((,macroname (x) `(aref data ,x)))
535 (when (,macroname x)
536 (setf (,macroname x) 123)))))))
537 (normalize-js-code
538 "function test1() {
539 if (data[x]) {
540 data[x] = 123;
541 };
542 };
543 "))))
544
545 (test macro-environment2
546 (is (string= (normalize-js-code (let ((outer-lexical-variable 1))
547 (defpsmacro macro-environment2-macro (x)
548 `(+ ,outer-lexical-variable ,x))
549 (ps* '(macro-environment2-macro 2))))
550 (normalize-js-code "1 + 2;"))))
551
552 (test-ps-js ampersand-whole-1
553 (macrolet ((foo (&whole foo bar baz)
554 (declare (ignore bar baz))
555 (format nil "~a" foo)))
556 (foo 1 2))
557 "'(FOO 1 2)';")
558
559 (test-ps-js keyword-consistent
560 :x
561 "'x'")
562
563 (test-ps-js simple-symbol-macrolet
564 (symbol-macrolet ((x 1)) x)
565 "1;")
566
567 (test-ps-js compound-symbol-macrolet
568 (symbol-macrolet ((x 123)
569 (y (* 2 x)))
570 y)
571 "2 * 123;")
572
573 (test-ps-js define-symbol-macro
574 (progn (define-symbol-macro tst-sym-macro 2)
575 tst-sym-macro)
576 "2;")
577
578 (test-ps-js expression-progn
579 (defun f () (return (progn (foo) (if x 1 2))))
580 "function f() {
581 return (foo(), x ? 1 : 2);
582 }")
583
584 (test-ps-js let-decl-in-expression
585 (defun f (x) (return (if x 1 (let* ((foo x)) foo))))
586 "function f(x) {
587 var foo;
588 return x ? 1 : (foo = x, foo);
589 }")
590
591 (test-ps-js special-var1
592 (progn (defvar *foo*) (let* ((*foo* 2)) (* *foo* 2)))
593 "var FOO;
594 var tempstackvar1;
595 try {
596 tempstackvar1 = FOO;
597 FOO = 2;
598 FOO * 2;
599 } finally {
600 FOO = tempstackvar1;
601 delete tempstackvar1;
602 };")
603
604 (test-ps-js special-var2
605 (progn (defvar *foo*) (let* ((*baz* 3) (*foo* 2)) (* *foo* 2 *baz*)))
606 "var FOO;
607 var BAZ = 3;
608 var tempstackvar1;
609 try {
610 tempstackvar1 = FOO;
611 FOO = 2;
612 FOO * 2 * BAZ;
613 } finally {
614 FOO = tempstackvar1;
615 delete tempstackvar1;
616 };
617 ")
618
619 (test-ps-js literal1
620 (setf x undefined)
621 "x = undefined;")
622
623 (test-ps-js literal2
624 (aref this x)
625 "this[x]")
626
627 (test-ps-js setf-dec1
628 (setf x (- 1 x 2))
629 "x = 1 - x - 2;")
630
631 (test-ps-js setf-dec2
632 (setf x (- x 1 2))
633 "x = x - 1 - 2;")
634
635 (test-ps-js special-char-equals
636 blah=
637 "blahequals")
638
639 (test-ps-js setf-operator-priority
640 (return (or (slot-value cache id)
641 (setf (slot-value cache id) (document.get-element-by-id id))))
642 "return cache[id] || (cache[id] = document.getElementById(id))")
643
644 (test-ps-js aref-operator-priority
645 (aref (if (and x (> (length x) 0))
646 (aref x 0)
647 y)
648 z)
649 "(x && x.length > 0 ? x[0] : y)[z]")
650
651 (test-ps-js aref-operator-priority1
652 (aref (or (slot-value x 'y)
653 (slot-value a 'b))
654 z)
655 "(x.y || a.b)[z]")
656
657 (test-ps-js aref-operator-priority2
658 (aref (if a b c) 0)
659 "(a ? b : c)[0]")
660
661 (test-ps-js negative-operator-priority
662 (- (if x y z))
663 "-(x ? y : z)")
664
665 (test-ps-js op-p1
666 (new (or a b))
667 "new (a || b)")
668
669 (test-ps-js op-p2
670 (delete (if a (or b c) d))
671 "delete (a ? b || c : d)")
672
673 (test-ps-js op-p3
674 (not (if (or x (not y)) z))
675 "!(x || !y ? z : null)")
676
677 (test-ps-js op-p4
678 (- (- (* 1 2) 3))
679 "-(1 * 2 - 3)")
680
681 (test-ps-js op-p5
682 (instanceof (or a b) (if x y z))
683 "((a || b) instanceof (x ? y : z))")
684
685 (test-ps-js op-p7
686 (or x (if (= x 0) "zero" "empty"))
687 "x || (x == 0 ? 'zero' : 'empty')")
688
689 (test-ps-js named-op-expression
690 (throw (if a b c))
691 "throw a ? b : c")
692
693 (test-ps-js named-op-expression1
694 (typeof (or x y))
695 "typeof (x || y)")
696
697 (test-ps-js aref-array-expression
698 (aref (or a b c) 0)
699 "(a || b || c)[0]")
700
701 (test-ps-js slot-value-operator
702 (slot-value (or a b c) 'd)
703 "(a || b || c).d")
704
705 (test-ps-js slot-value-parens
706 (slot-value (slot-value foo 'bar) 'baz)
707 "foo.bar.baz")
708
709 (test-ps-js funcall-funcall
710 ((foo))
711 "foo()()")
712
713 (test-ps-js expression-funcall
714 ((or (@ window eval) eval) foo nil)
715 "(window.eval || eval)(foo, null)")
716
717 (test-ps-js expression-funcall1
718 (((or (@ window eval) eval) foo nil))
719 "(window.eval || eval)(foo, null)()")
720
721 (test-ps-js expression-funcall2
722 (((or (@ window eval) eval)) foo nil)
723 "(window.eval || eval)()(foo, null)")
724
725 (test-ps-js slot-value-object-literal
726 (slot-value (create :a 1) 'a)
727 "({ a : 1 }).a")
728
729 (test-ps-js slot-value-lambda
730 (slot-value (lambda ()) 'prototype)
731 "(function () { }).prototype")
732
733 (test-ps-js who-html1
734 (who-ps-html (:span :class "ticker-symbol"
735 :ticker-symbol symbol
736 (:a :href "http://foo.com"
737 symbol)
738 (:span :class "ticker-symbol-popup")))
739 "'<SPAN CLASS=\"ticker-symbol\" TICKER-SYMBOL=\"' + symbol + '\"><A HREF=\"http://foo.com\">' + symbol + '</A><SPAN CLASS=\"ticker-symbol-popup\"></SPAN></SPAN>'")
740
741 (test-ps-js flet1
742 ((lambda () (flet ((foo (x) (return (1+ x)))) (return (foo 1)))))
743 "(function () {
744 var foo = function (x) {
745 return x + 1;
746 };
747 return foo(1);
748 })()")
749
750 (test-ps-js labels1
751 ((lambda () (labels ((foo (x)
752 (return (if (=== 0 x)
753 0
754 (+ x (foo (1- x)))))))
755 (return (foo 3)))))
756 "(function () {
757 var foo = function foo(x) {
758 return 0 === x ? 0 : x + foo(x - 1);
759 };
760 return foo(3);
761 })()")
762
763 (test-ps-js for-loop-var-init-exp
764 ((lambda (x)
765 (return (do* ((y (if x 0 1) (1+ y))
766 (z 0 (1+ z)))
767 ((= y 3) z))))
768 true)
769 "(function (x) {
770 return (function () {
771 for (var y = x ? 0 : 1, z = 0; y != 3; y += 1, z += 1) {
772 };
773 return z;
774 })();
775 })(true)")
776
777 (test-ps-js math-pi
778 pi
779 "Math.PI")
780
781 (test-ps-js literal-array
782 '(1 2 3)
783 "[1, 2, 3]")
784
785 (test-ps-js literal-array-1
786 '(1 foo 3)
787 "[1, 'foo', 3]")
788
789 (test ps-lisp-expands-in-lexical-environment
790 (is (string= "5;" (let ((x 5)) (ps (lisp x))))))
791
792 (test ps*-lisp-expands-in-null-lexical-environment
793 (signals error (let ((x 5)) (ps* '(lisp x)))))
794
795 (test ps*-lisp-expands-in-dynamic-environment
796 (is (string= "1 + 2;" (let ((*print-level* 2)) (ps* '(+ 1 (lisp *print-level*)))))))
797
798 (test ps-lisp-dynamic-environment
799 (is (string= "1 + 2;" (let ((*print-level* 2)) (ps (+ 1 (lisp *print-level*)))))))