; Author: Juergen Lorenz ; ju (at) jugilo (dot) de ; ; Last update: Jun 25, 2013 ; ; Copyright (c) 2011-2013, Juergen Lorenz ; All rights reserved. ; ; Redistribution and use in source and binary forms, with or without ; modification, are permitted provided that the following conditions are ; met: ; ; Redistributions of source code must retain the above copyright ; notice, this list of conditions and the following disclaimer. ; ; Redistributions in binary form must reproduce the above copyright ; notice, this list of conditions and the following disclaimer in the ; documentation and/or other materials provided with the distribution. ; ; Neither the name of the author nor the names of its contributors may be ; used to endorse or promote products derived from this software without ; specific prior written permission. ; ; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS ; IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED ; TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A ; PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT ; HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, ; SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED ; TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR ; PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF ; LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING ; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS ; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ; ;In this module we implement two macros and two commands to be used for ;testing and debugging. (require-library dbc expand-full data-structures) (module simple-tests (simple-tests simple-tests-run xpr:val run-tests pe pe*) (import scheme (only chicken eval-when expand unless) expand-full dbc (only extras pp)) (import-for-syntax (only chicken unless)) (init-dbc) ;The following macro, xpr:val, pretty-prints the literal representation ;of each of its arguments as well as their respective values. The call ;to eval-when guarantees, that the whole expression does nothing in ;compiled code. ;;; (xpr:val xpr0 xpr1 ...) ;;; ----------------------- (define-syntax xpr:val (syntax-rules () ((_ xpr0 xpr1 ...) (eval-when (eval) (begin (pp 'xpr0) (display "evaluates to:\n") (pp xpr0) (newline)) (begin (pp 'xpr1) (display "evaluates to:\n") (pp xpr1) (newline)) ... )))) (push-contract! '(xpr:val (macro () ((_ xpr . xprs) #t "prints each xpr and its value in interpreted code")))) ;;; (run-tests xpr0 xpr1 ...) ;;; ------------------------- ;;; evaluates each expression xpr0 xpr1 ... and reports it as failed, if ;;; it evaluates to #f, and as passed otherwise (define-syntax run-tests (syntax-rules () ((_ xpr ...) (begin (display "\nTesting ...\n") (display "-----------\n") (let ((n (simple-tests-run (list 'xpr ...)))) (display "-----------\n") (if (zero? n) (display "All tests passed\n\n") (begin (display n) (display " test(s) failed!!!\n\n")))))))) (push-contract! '(run-tests (macro () ((_ xpr . xprs) #t "runs each test expression, xpr, and prints success or failure")))) ;;; The following commands compose pretty-print and expand or expand* ;;; (pe macro-code) ;;; --------------- (define-with-contract pe (command-contract ((old new (lambda (x) #t))) ((_ macro-code) #t "pretty-prints expanded macro-code")) (lambda (macro-code) (pp (expand macro-code)))) ;;; (pe* macro-code) ;;; ---------------- (define-with-contract pe* (command-contract ((old new (lambda (x) #t))) ((_ macro-code) #t "pretty-prints fully expanded macro-code")) pretty-print-expand*) (define (simple-tests-run lst) (let loop ((lst lst) (n 0)) (if (null? lst) n (if (eval (car lst)) (begin (display "passed ... ") (write (car lst)) (newline) (loop (cdr lst) n)) (begin (display "FAILED !!! ") (write (car lst)) (newline) (loop (cdr lst) (+ n 1))))))) ;;; save documentation in dispatcher (exit-dbc-with simple-tests) ) ; module simple-tests