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 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
|
;; Filename : test-obsolete.scm
;; About : unit tests for obsolete miscellaneous R5RS things
;;
;; Copyright (C) 2005-2006 Kazuki Ohta <mover AT hct.zaq.ne.jp>
;; Copyright (c) 2007-2008 SigScheme Project <uim-en AT googlegroups.com>
;;
;; All rights reserved.
;;
;; Redistribution and use in source and binary forms, with or without
;; modification, are permitted provided that the following conditions
;; are met:
;;
;; 1. Redistributions of source code must retain the above copyright
;; notice, this list of conditions and the following disclaimer.
;; 2. 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.
;; 3. Neither the name of authors 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.
(require-extension (unittest))
(define *test-track-progress* #f)
(define tn test-name)
(define cp string-copy)
(assert-equal? "basic case check1" 'case1 (case 1
((1) 'case1)
((2) 'case2)))
(assert-equal? "basic case check2" 'case2 (case 2
((1) 'case1)
((2) 'case2)))
(assert-equal? "basic case check3" #t (case (* 2 3)
((2 3 4 7) #f)
((1 4 6 8 9) #t)))
(assert-equal? "basic case else" 'caseelse (case 3
((1) 'case1)
((2) 'case2)
(else
'caseelse)))
(define mularg-apply
(letrec ((apply-2 apply)
(append-to-last
(lambda (lst)
(if (null? (cdr lst))
(car lst)
(cons (car lst) (append-to-last (cdr lst)))))))
(lambda args
(apply-2 (car args) (append-to-last (cdr args))))))
(assert-equal? "basic letrec test3" '((1) . 2) (mularg-apply cons '(1) '(2)))
(assert-equal? "basic letrec test4" '(1 2) (mularg-apply cons 1 '((2))))
;; SigScheme dependent behavior
(assert-error "basic letrec test5" (lambda ()
(letrec ((letrec-a 1)
(letrec-b letrec-a))
letrec-b)))
(assert-equal? "basic map test1" '(2 2 2) (map cadr '((1 2) (1 2) (1 2))))
(assert-equal? "basic map test2" '(2 4 6) (map + '(1 2 3) '(1 2 3)))
(assert-equal? "basic map test3" '(2 4 6) (map (lambda (x y) (+ x y))
'(1 2 3) '(1 2 3)))
(define (callee a)
(assert-equal? "basic map test4" '(1 2) a))
(map callee '((1 2)))
; numbers in various radices
(assert-true "binary number test1" (= #b1111 15))
(assert-true "binary number test2" (= #b010 2))
(assert-true "binary number test3" (= #b0 0))
(assert-true "binary number test4" (= #b-1 -1))
(assert-true "binary number test5" (= #b-10 -2))
(assert-true "binary number test6" (= #b-010 -2))
(assert-true "octal number test1" (= #o077 63))
(assert-true "octal number test2" (= #o361 241))
(assert-true "decimal number test1" (= #d3900 3900))
(assert-true "decimal number test2" (= #d18782 18782))
(assert-true "hexadecimal test1" (= #xffff 65535))
(assert-true "hexadecimal test2" (= #x0A7b 2683))
(tn "pair?")
(assert-true (tn) (pair? '(a . b)))
(assert-true (tn) (pair? '(a b c)))
(assert-equal? (tn) #f (pair? '()))
(assert-equal? (tn) #f (pair? '#(a b)))
;;
;; All procedures that take a string as argument are tested with
;; both immutable and mutable string.
;;
;; See "3.4 Storage model" of R5RS
;;
(tn "string->list immutable")
(assert-equal? (tn) '() (string->list ""))
(assert-equal? (tn) '(#\\) (string->list "\\"))
(assert-equal? (tn) '(#\\ #\\) (string->list "\\\\"))
(assert-equal? (tn) '(#\\ #\\ #\\) (string->list "\\\\\\"))
;;(assert-equal? (tn) '(#\tab) (string->list "\t"))
(assert-equal? (tn) '(#\ ) (string->list "\t"))
;;(assert-equal? (tn) '(#\return) (string->list "\r"))
(assert-equal? (tn) '(#\
) (string->list "\r"))
(assert-equal? (tn) '(#\
#\
) (string->list "\r\r"))
(assert-equal? (tn) '(#\newline) (string->list "\n"))
(assert-equal? (tn) '(#\newline #\newline) (string->list "\n\n"))
(assert-equal? (tn) '(#\space) (string->list " "))
(assert-equal? (tn) '(#\space #\space) (string->list " "))
(assert-equal? (tn) '(#\") (string->list "\""))
(assert-equal? (tn) '(#\" #\") (string->list "\"\""))
(tn "string->list mutable")
(assert-equal? (tn) '() (string->list (cp "")))
(assert-equal? (tn) '(#\\) (string->list (cp "\\")))
(assert-equal? (tn) '(#\\ #\\) (string->list (cp "\\\\")))
(assert-equal? (tn) '(#\\ #\\ #\\) (string->list (cp "\\\\\\")))
;;(assert-equal? (tn) '(#\tab) (string->list (cp "\t")))
(assert-equal? (tn) '(#\ ) (string->list (cp "\t")))
;;(assert-equal? (tn) '(#\return) (string->list (cp "\r")))
(assert-equal? (tn) '(#\
) (string->list (cp "\r")))
(assert-equal? (tn) '(#\
#\
) (string->list (cp "\r\r")))
(assert-equal? (tn) '(#\newline) (string->list (cp "\n")))
(assert-equal? (tn) '(#\newline #\newline) (string->list (cp "\n\n")))
(assert-equal? (tn) '(#\space) (string->list (cp " ")))
(assert-equal? (tn) '(#\space #\space) (string->list (cp " ")))
(assert-equal? (tn) '(#\") (string->list (cp "\"")))
(assert-equal? (tn) '(#\" #\") (string->list (cp "\"\"")))
(tn "list->string")
(assert-equal? (tn) "" (list->string '()))
(assert-equal? (tn) "\\" (list->string '(#\\)))
(assert-equal? (tn) "\\\\" (list->string '(#\\ #\\)))
(assert-equal? (tn) "\\\\\\" (list->string '(#\\ #\\ #\\)))
(assert-equal? (tn) "\t" (list->string '(#\ )))
;;(assert-equal? (tn) "\t" (list->string '(#\tab)))
(assert-equal? (tn) "\r" (list->string '(#\
)))
;;(assert-equal? (tn) "\r" (list->string '(#\return)))
(assert-equal? (tn) "\n" (list->string '(#\
)))
(assert-equal? (tn) "\n" (list->string '(#\newline)))
(assert-equal? (tn) " " (list->string '(#\ )))
(assert-equal? (tn) " " (list->string '(#\space)))
(assert-equal? (tn) " " (list->string '(#\ )))
(assert-equal? (tn) "\"" (list->string '(#\")))
(assert-equal? (tn) "\"a\"" (list->string '(#\" #\a #\")))
(total-report)
|