X-Git-Url: https://code.consxy.com/gitweb/gitweb.cgi?p=clnl;a=blobdiff_plain;f=src%2Ftest%2Fmain.lisp;h=38ec2ed5a3994cd9d5d35c4d18ba122b86911798;hp=20d404c521bab3a94e5d16b7ff68f663a5fb5763;hb=1ae8c7a0199a4955708c7f5d7a286a12782b5fd2;hpb=a0f8850031d5821c69b286d17004166f870fcd8e diff --git a/src/test/main.lisp b/src/test/main.lisp index 20d404c..38ec2ed 100644 --- a/src/test/main.lisp +++ b/src/test/main.lisp @@ -1,5 +1,71 @@ (in-package #:cl-nl-test) -(defun run-tests () - (cl-nl:run) - (format t "That's how we roll~%")) +(defparameter *tests* nil) + +(defun run-and-print-test (test) + (let + ((green (format nil "~c[1;32m" #\Esc)) + (red (format nil "~c[1;31m" #\Esc)) + (result (funcall (cadr test)))) + (format t "~A- ~S ~A~c[0m~%" (if result green red) (car test) (if result "passed" "failed") #\Esc) + result)) + +(defun run-tests (tests) + (let + ((final-result t)) + (loop for test in tests + for result = (run-and-print-test test) + do (setf final-result (and final-result result))) + final-result)) + +(defun run-all-tests () + (format t "~%Here we goooooooo~%") + (run-tests *tests*)) + +(defun run-tests-matching (match) + (run-tests (remove-if-not (lambda (test-name) (cl-ppcre:scan (format nil "^~A$" match) test-name)) *tests* :key #'car))) + +(defun find-test (name) (find name *tests* :test #'string= :key #'car)) + +(defun diagnose-test (name) + (when (not (find-test name)) (error "Couldn't find test with name: ~A" name)) + (format t "----~%~A~%" (funcall (caddr (find-test name))))) + +(defun test-commands (name) + (let + ((test (find-test name))) + (when (not test) (error "Couldn't find test with name: ~A" name)) + (format t "----~%") + (format t "~A~%" (funcall (fourth test))))) + +; To be used only with the simplest of tests, just a list of commands and a checksum of the +; world after they've been run. +(defmacro defsimpletest (name commands checksum) + `(progn + ;(when (find-test ,name) (error "Test with name ~S already exists, abort, abort" ,name)) + (push + (list + ,name + (lambda () + (cl-nl:boot) + (cl-nl:run-commands ,commands) + (string= ,checksum (checksum-world))) + (lambda () + (cl-nl:boot) + (cl-nl:run-commands ,commands) + (cl-nl.nvm:export-world) + ) + (lambda () ,commands)) + *tests*))) + +(defun checksum-world () + (format nil "~{~2,'0X~}" + (map 'list #'identity + (ironclad:digest-sequence + :sha1 + (map '(vector (unsigned-byte 8)) #'char-code (cl-nl.nvm:export-world)))))) + +(defun run () + (loop for str = (progn (format t "> ") (force-output) (read-line)) + while str + do (progn (asdf:load-system :cl-nl-test) (run-tests-matching str))))