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
|
(in-package :js-test)
;; Testcases for parenscript
(defun trim-whitespace(str)
(string-trim '(#\Space #\Tab #\Newline) str))
(defun same-space-between-statements(code)
(cl-ppcre:regex-replace-all "\\s*;\\s*" code (concatenate 'string (list #\; #\Newline))))
(defun no-indentation(code)
(cl-ppcre:regex-replace-all (cl-ppcre:create-scanner "^\\s*" :multi-line-mode t) code ""))
(defun no-trailing-spaces(code)
(cl-ppcre:regex-replace-all (cl-ppcre:create-scanner "\\s*$" :multi-line-mode t) code ""))
(defun normalize-js-code(str)
(trim-whitespace (no-indentation (no-trailing-spaces (same-space-between-statements str)))))
(defmacro test-ps-js (testname parenscript javascript)
`(test ,testname ()
(setf js::*var-counter* 0)
;; is-macro expands its argument again when reporting failures, so
;; the reported temporary js-variables get wrong if we don't evalute first.
(let ((generated-code (js-to-string ',parenscript))
(js-code ,javascript))
(is (string= (normalize-js-code generated-code)
(normalize-js-code js-code))))))
(defun run-tests()
(format t "Running reference tests:~&")
(run! 'ref-tests)
(format t "Running other tests:~&")
(run! 'ps-tests))
;;---------------------------------------------------------------------------
(def-suite ps-tests)
(in-suite ps-tests)
;; A problem with long nested operator, when the statement spanned several rows
;; the rows would not be joined together correctly.
(test-ps-js bug-dwim-join
(alert (html ((:div :id 777
:style (css-inline :border "1pxsssssssssss"
:font-size "x-small"
:height (* 2 200)
:width (* 2 300))))))
"alert
('<div id=\"777\" style=\"'
+ ('border:1pxsssssssssss;font-size:x-small;height:' + 2 * 200 + ';width:'
+ 2 * 300)
+ '\"></div>')") ;";This line should start with a plus character.
(test-ps-js simple-slot-value
(let ((foo (create :a 1)))
(alert (slot-value foo 'a)))
"{
var foo = { a : 1 };
alert(foo.a);
}")
(test-ps-js buggy-slot-value
(let ((foo (create :a 1))
(slot-name "a"))
(alert (slot-value foo slot-name)))
"{
var foo = { a : 1 };
var slotName = 'a';
alert(foo[slotName]);
}"); Last line was alert(foo.slotName) before bug-fix.
(test-ps-js buggy-slot-value-two
(slot-value foo (get-slot-name))
"foo[getSlotName()]")
(test-ps-js old-case-is-now-switch
;; Switch was "case" before, but that was very non-lispish.
;; For example, this code makes three messages and not one
;; which may have been expected. This is because a switch
;; statment must have a break statement for it to return
;; after the alert. Otherwise it continues on the next
;; clause.
(switch (aref blorg i)
(1 (alert "one"))
(2 (alert "two"))
(default (alert "default clause")))
"switch (blorg[i]) {
case 1: alert('one');
case 2: alert('two');
default: alert('default clause');
}")
(test-ps-js lisp-like-case
(case (aref blorg i)
(1 (alert "one"))
(2 (alert "two"))
(default (alert "default clause")))
"switch (blorg[i]) {
case 1:
alert('one');
break;
case 2:
alert('two');
break;
default: alert('default clause');
}")
(test-ps-js even-lispier-case
(case (aref blorg i)
((1 2) (alert "Below three"))
(3 (alert "Three"))
(t (alert "Something else")))
"switch (blorg[i]) {
case 1: ;
case 2:
alert('Below three');
break;
case 3:
alert('Three');
break;
default: alert('Something else');
}")
(test-ps-js otherwise-case
(case (aref blorg i)
(1 (alert "one"))
(otherwise (alert "default clause")))
"switch (blorg[i]) {
case 1:
alert('one');
break;
default: alert('default clause');
}")
(test escape-sequences-in-string
(let ((escapes `((#\\ . #\\)
(#\b . #\Backspace)
(#\f . #\Form)
("u000B" . ,(code-char #x000b));;Vertical tab, too uncommon to bother with
(#\n . #\Newline)
(#\r . #\Return)
(#\' . #\');;Double quote need not be quoted because parenscript strings are single quoted
(#\t . #\Tab)
("u001F" . ,(code-char #x001f));; character below 32
("u0080" . ,(code-char 128)) ;;Character over 127. Actually valid, parenscript escapes them to be sure.
("uABCD" . ,(code-char #xabcd)))));; Really above ascii.
(loop for (js-escape . lisp-char) in escapes
for generated = (js-to-string `(let ((x , (format nil "hello~ahi" lisp-char)))))
for wanted = (format nil "{
var x = 'hello\\~ahi';
}" js-escape)
do (is (string= generated wanted)))))
|