1 (in-package #:clnl-test)
3 (defparameter *tests* nil)
5 (defun run-and-print-test (test)
7 ((green (format nil "~c[1;32m" #\Esc))
8 (red (format nil "~c[1;31m" #\Esc))
9 (result (funcall (cadr test))))
10 (format t "~A- ~S ~A~c[0m~%" (if result green red) (car test) (if result "passed" "failed") #\Esc)
13 (defun run-tests (tests)
18 :for result := (run-and-print-test test)
19 :do (setf final-result (and final-result result)))
22 (defun run-all-tests ()
23 (run-tests (reverse *tests*)))
25 (defun run-tests-matching (match)
27 (remove-if-not (lambda (test-name) (cl-ppcre:scan (format nil "^~A$" match) test-name)) *tests* :key #'car)))
29 (defun find-test (name)
31 (find name *tests* :test #'string= :key #'car)
32 (error "Couldn't find test with name: ~A" name)))
34 (defun test-debug (name) (format t "----~%~A~%" (funcall (third (find-test name)))))
35 (defun test-scala-prog (name) (format t "----~%~A~%" (fourth (find-test name))))
36 (defun test-scala-input (name) (format t "----~%~A~%" (fifth (find-test name))))
38 (defmacro defsimpletest (name test-fn debug-fn scala-prog scala-input)
40 ;(when (find-test ,name) (error "Test with name ~S already exists, abort, abort" ,name))
42 (list ,name ,test-fn ,debug-fn ,scala-prog ,scala-input)
45 (defun checksum= (expected got)
46 (if (stringp expected)
47 (string= got expected)
48 (find got expected :test #'string=)))
50 ; To be used only with the simplest of tests, just a list of commands and a checksum of the
51 ; world after they've been run.
52 (defmacro defsimplecommandtest (name commands checksum)
54 (format nil "Simple Command - ~A" ,name)
56 (clnl:boot "resources/empty.nlogo" t)
57 (clnl:run-commands ,commands)
58 (checksum= ,checksum (checksum-world)))
60 (clnl:boot "resources/empty.nlogo" t)
61 (clnl:run-commands ,commands)
63 (clnl-nvm:export-world)
66 (format nil "~A~%" ,commands)))
68 (defmacro defsimplereportertest (name reporter value checksum)
70 (format nil "Simple Reporter - ~A" ,name)
72 (clnl:boot "resources/empty.nlogo" t)
74 (string= (funcall (intern "DUMP-OBJECT" :clnl-nvm) (clnl:run-reporter ,reporter)) ,value)
75 (checksum= ,checksum (checksum-world))))
77 (clnl:boot "resources/empty.nlogo" t)
78 (format nil "~A~%~A~A"
79 (funcall (intern "DUMP-OBJECT" :clnl-nvm) (clnl:run-reporter ,reporter))
80 (clnl-nvm:export-world)
83 (format nil "@#$#@#$#@~A" ,reporter)))
85 (defmacro defreportertestwithsetup (name setup reporter value checksum)
87 (format nil "Reporter With Setup - ~A" ,name)
89 (clnl:boot "resources/empty.nlogo" t)
90 (clnl:run-commands ,setup)
92 (string= (funcall (intern "DUMP-OBJECT" :clnl-nvm) (clnl:run-reporter ,reporter)) ,value)
93 (checksum= ,checksum (checksum-world))))
95 (clnl:boot "resources/empty.nlogo" t)
96 (clnl:run-commands ,setup)
97 (format nil "~A~%~A~A"
98 (funcall (intern "DUMP-OBJECT" :clnl-nvm) (clnl:run-reporter ,reporter))
99 (clnl-nvm:export-world)
102 (format nil "~A@#$#@#$#@~A" ,setup ,reporter)))
104 (defun model-code->nlogo (code)
108 GRAPHICS-WINDOW~%210~%10~%649~%470~%-1~%-1~%13.0~%1~%10~%1~%1~%1~%0~%1~%1~%1~%-1~%1~%-1~%1~%0~%0~%1~%ticks~%30.0~%
113 (defmacro defmodeltest (name model commands reporter value checksum)
118 ((model (with-input-from-string (str ,(model-code->nlogo model)) (clnl-model:read-from-nlogo str))))
122 (declaim (sb-ext:muffle-conditions cl:warning))
123 (eval (clnl:model->single-form-lisp model :netlogo-callback (lambda (f) (setf callback f))))
124 (when ,commands (funcall callback ,commands))
126 (or (not ,reporter) (string= (funcall (intern "DUMP-OBJECT" :clnl-nvm) (funcall callback ,reporter)) ,value))
127 (checksum= ,checksum (checksum-world))))
129 ((pkg (make-package (gensym)))
130 (clnl:*model-package* pkg)
131 (prev-package *package*))
135 (clnl:model->multi-form-lisp model (intern "BOOT-ME" pkg)
136 :netlogo-callback-fn (intern "NETLOGO-CALLBACK" pkg))))
137 (eval `(in-package ,(package-name prev-package)))
138 (funcall (symbol-function (intern "BOOT-ME" pkg)))
139 (when ,commands (funcall (symbol-function (intern "NETLOGO-CALLBACK" pkg)) ,commands))
144 (funcall (intern "DUMP-OBJECT" :clnl-nvm) (funcall (intern "NETLOGO-CALLBACK" pkg) ,reporter))
146 (checksum= ,checksum (checksum-world)))))))
150 (declaim (sb-ext:muffle-conditions cl:warning))
152 (clnl:model->single-form-lisp
153 (with-input-from-string (str ,(model-code->nlogo model)) (clnl-model:read-from-nlogo str))
154 :netlogo-callback (lambda (f) (setf callback f))))
155 (when ,commands (funcall callback ,commands))
157 (if ,reporter (format nil "~A~%" (funcall (intern "DUMP-OBJECT" :clnl-nvm) (funcall callback ,reporter))) "")
158 (clnl-nvm:export-world)
161 (format nil "~A@#$#@#$#@~A@#$#@#$#@~A" ,commands (or ,reporter "") ,model)))
163 (defmacro defmodelcommandtest (name model commands checksum)
164 `(defmodeltest (format nil "Model Command - ~A" ,name) ,model ,commands nil nil ,checksum))
166 (defmacro defmodelreportertest (name model commands reporter value checksum)
167 `(defmodeltest (format nil "Model Reporter - ~A" ,name) ,model ,commands ,reporter ,value ,checksum))
169 (defmacro defmodelfiletest (name file commands checksum)
171 ,(format nil "File Model - ~A" name)
174 ((model (with-open-file (str ,file) (clnl-model:read-from-nlogo str))))
178 (declaim (sb-ext:muffle-conditions cl:warning))
179 (eval (clnl:model->single-form-lisp model :netlogo-callback (lambda (f) (setf callback f))))
180 (when ,commands (funcall callback ,commands))
181 (checksum= ,checksum (checksum-world)))
183 ((pkg (make-package (gensym)))
184 (clnl:*model-package* pkg)
185 (prev-package *package*))
189 (clnl:model->multi-form-lisp model (intern "BOOT-ME" pkg)
190 :netlogo-callback-fn (intern "NETLOGO-CALLBACK" pkg))))
191 (eval `(in-package ,(package-name prev-package)))
192 (funcall (symbol-function (intern "BOOT-ME" pkg)))
193 (when ,commands (funcall (symbol-function (intern "NETLOGO-CALLBACK" pkg)) ,commands))
194 (checksum= ,checksum (checksum-world))))))
198 (declaim (sb-ext:muffle-conditions cl:warning))
200 (clnl:model->single-form-lisp
201 (with-open-file (str ,file) (clnl-model:read-from-nlogo str))
202 :netlogo-callback (lambda (f) (setf callback f))))
203 (when ,commands (funcall callback ,commands))
205 (clnl-nvm:export-world)
208 (format nil "~A@#$#@#$#@@#$#@#$#@@#$#@#$#@~A" ,commands ,file)))
210 (defmacro defviewtest (name commands checksum)
212 (format nil "Simple View - ~A" ,name)
214 (clnl:boot "resources/empty55.nlogo")
215 (clnl:run-commands ,commands)
217 ((viewsum (checksum-view)))
218 (when (not (checksum= ,checksum viewsum))
219 (format t "~c[1;35m-- For ~A, got ~A but expected ~A~c[0m~%" #\Esc ,name viewsum ,checksum #\Esc))
220 (checksum= ,checksum (checksum-view))))
222 (clnl:boot "resources/empty55.nlogo")
223 (clnl:run-commands ,commands)
225 (format nil "~A" (checksum-view)))
227 (format nil "~A~%" ,commands)))
229 (defun checksum-world ()
230 (format nil "~{~2,'0X~}"
231 (map 'list #'identity
232 (ironclad:digest-sequence
234 (map '(vector (unsigned-byte 8)) #'char-code (clnl-nvm:export-world))))))
236 (defun checksum-view ()
237 (format nil "~{~2,'0X~}"
238 (map 'list #'identity
239 (ironclad:digest-sequence :sha1 (coerce (clnl-interface:export-view) '(vector (unsigned-byte 8)))))))
241 (defun save-view-to-ppm ()
243 ((height 143) (width 143)) ; hardcoded in interface, hardcoded here, cry for me
244 (with-open-file (str "cl.ppm"
246 :if-exists :supersede
247 :if-does-not-exist :create
248 :element-type '(unsigned-byte 8))
249 (write-sequence (map 'vector #'char-code (format nil "P6~%")) str)
250 (write-sequence (map 'vector #'char-code (format nil "143 143~%")) str)
251 (write-sequence (map 'vector #'char-code (format nil "255~%")) str)
253 ((image-data (clnl-interface:export-view)))
256 (write-byte (aref image-data (+ 0 (* 4 (+ (* (- (1- height) i) width) j)))) str)
257 (write-byte (aref image-data (+ 1 (* 4 (+ (* (- (1- height) i) width) j)))) str)
258 (write-byte (aref image-data (+ 2 (* 4 (+ (* (- (1- height) i) width) j)))) str)))))))
262 :for str := (progn (format t "> ") (force-output) (read-line))
264 :do (progn (asdf:load-system :clnl-test) (run-tests-matching str))))