3 ;; Testcases for parenscript
5 (defun trim-whitespace(str)
6 (string-trim '(#\Space
#\Tab
#\Newline
) str
))
8 (defun same-space-between-statements(code)
9 (cl-ppcre:regex-replace-all
"\\s*;\\s*" code
(concatenate 'string
(list #\
; #\Newline))))
11 (defun no-indentation(code)
12 (cl-ppcre:regex-replace-all
(cl-ppcre:create-scanner
"^\\s*" :multi-line-mode t
) code
""))
14 (defun no-trailing-spaces(code)
15 (cl-ppcre:regex-replace-all
(cl-ppcre:create-scanner
"\\s*$" :multi-line-mode t
) code
""))
17 (defun normalize-js-code(str)
18 (trim-whitespace (no-indentation (no-trailing-spaces (same-space-between-statements str
)))))
20 (defmacro test-ps-js
(testname parenscript javascript
)
22 (setf js
::*var-counter
* 0)
23 ;; is-macro expands its argument again when reporting failures, so
24 ;; the reported temporary js-variables get wrong if we don't evalute first.
25 (let ((generated-code (js-to-string ',parenscript
))
26 (js-code ,javascript
))
27 (is (string= (normalize-js-code generated-code
)
28 (normalize-js-code js-code
))))))
31 (format t
"Running reference tests:~&")
33 (format t
"Running other tests:~&")
36 ;;---------------------------------------------------------------------------
40 (test-ps-js plus-is-not-commutative
41 (setf x
(+ "before" x
"after"))
42 "x = 'before' + x + 'after'")
44 (test-ps-js plus-works-if-first
45 (setf x
(+ x
"middle" "after"))
46 "x += 'middle' + 'after'")
48 (test-ps-js setf-side-effects
54 (setf x
(+ 2 (side-effect) x
5))))
57 function sideEffect() {
61 x = 2 + sideEffect() + x + 5;")
62 ;; Parenscript used to optimize to much:
64 ;; function sideEffect() {
68 ;; x += 2 + sideEffect() + 5;
70 ;; Which is 20, not 14
73 (test-ps-js dot-notation-bug
74 (.match
(+ "" x
) "foo")
75 "('' + x).match('foo')")
77 (test-ps-js method-call-op-form
(.to-string
(+ "" x
)) "('' + x).toString()")
78 (test-ps-js method-call-number
(.to-string
10) "(10).toString()")
79 (test-ps-js method-call-string
(.to-string
"hi") "'hi'.toString()")
80 (test-ps-js method-call-lit-object
81 (.to-string
(create :to-string
: (lambda ()
82 (return "it works"))))
83 "({ toString : function () {
87 (test-ps-js method-call-variable
91 (test-ps-js method-call-array
92 (.to-string
(list 10 20))
93 "[10, 20].toString()")
94 (test-ps-js method-call-fn-call
97 (test-ps-js method-call-lambda-fn
98 (.to-string
(lambda () (alert 10)))
99 "(function () {alert(10);}).toString()")
100 (test-ps-js method-call-lambda-call
101 (.to-string
((lambda (x) (return x
)) 10))
102 "(function (x) {return x;})(10).toString()")
104 (test no-whitespace-before-dot
105 (let* ((str (js:js
* '(.to-string
((lambda (x) (return x
)) 10))))
106 (dot-pos (position #\. str
:test
#'char
=))
107 (char-before (elt str
(1- dot-pos
)))
109 (is (char= char-before a-parenthesis
))))
111 ;; A problem with long nested operator, when the statement spanned several rows
112 ;; the rows would not be joined together correctly.
113 (test-ps-js bug-dwim-join
114 (alert (html ((:div
:id
777
115 :style
(css-inline :border
"1pxsssssssssss"
118 :width
(* 2 300))))))
120 ('<div id=\"777\" style=\"'
121 + ('border:1pxsssssssssss;font-size:x-small;height:' + 2 * 200 + ';width:'
123 + '\"></div>')") ;";This line should start with a plus character.
126 (test-ps-js simple-slot-value
127 (let ((foo (create :a
1)))
128 (alert (slot-value foo
'a
)))
134 (test-ps-js buggy-slot-value
135 (let ((foo (create :a
1))
137 (alert (slot-value foo slot-name
)))
141 alert(foo[slotName]);
142 }"); Last line was alert(foo.slotName) before bug-fix.
144 (test-ps-js buggy-slot-value-two
145 (slot-value foo
(get-slot-name))
146 "foo[getSlotName()]")
148 (test-ps-js old-case-is-now-switch
149 ;; Switch was "case" before, but that was very non-lispish.
150 ;; For example, this code makes three messages and not one
151 ;; which may have been expected. This is because a switch
152 ;; statment must have a break statement for it to return
153 ;; after the alert. Otherwise it continues on the next
155 (switch (aref blorg i
)
158 (default (alert "default clause")))
160 case 1: alert('one');
161 case 2: alert('two');
162 default: alert('default clause');
165 (test-ps-js lisp-like-case
169 (default (alert "default clause")))
177 default: alert('default clause');
181 (test-ps-js even-lispier-case
183 ((1 2) (alert "Below three"))
185 (t (alert "Something else")))
189 alert('Below three');
194 default: alert('Something else');
197 (test-ps-js otherwise-case
200 (otherwise (alert "default clause")))
205 default: alert('default clause');
208 (test escape-sequences-in-string
209 (let ((escapes `((#\\ .
#\\)
212 ("u000b" .
,(code-char #x000b
));;Vertical tab, too uncommon to bother with
215 (#\' .
#\');;Double quote need not be quoted because parenscript strings are single quoted
217 ("u001f" .
,(code-char #x001f
));; character below 32
218 ("u0080" .
,(code-char 128)) ;;Character over 127. Actually valid, parenscript escapes them to be sure.
219 ("uabcd" .
,(code-char #xabcd
)))));; Really above ascii.
220 (loop for
(js-escape . lisp-char
) in escapes
221 for generated
= (js-to-string `(let ((x , (format nil
"hello~ahi" lisp-char
)))))
222 for wanted
= (format nil
"{
223 var x = 'hello\\~ahi';
225 do
(is (string= generated wanted
)))))