;;;; srfi-1.test --- Test suite for Guile's SRFI-1 functions. -*- scheme -*- ;;;; ;;;; Copyright 2003, 2004 Free Software Foundation, Inc. ;;;; ;;;; This program is free software; you can redistribute it and/or modify ;;;; it under the terms of the GNU General Public License as published by ;;;; the Free Software Foundation; either version 2, or (at your option) ;;;; any later version. ;;;; ;;;; This program is distributed in the hope that it will be useful, ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;;; GNU General Public License for more details. ;;;; ;;;; You should have received a copy of the GNU General Public License ;;;; along with this software; see the file COPYING. If not, write to ;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330, ;;;; Boston, MA 02111-1307 USA ;;;; ;;;; As a special exception, the Free Software Foundation gives permission ;;;; for additional uses of the text contained in its release of GUILE. ;;;; ;;;; The exception is that, if you link the GUILE library with other files ;;;; to produce an executable, this does not by itself cause the ;;;; resulting executable to be covered by the GNU General Public License. ;;;; Your use of that executable is in no way restricted on account of ;;;; linking the GUILE library code into it. ;;;; ;;;; This exception does not however invalidate any other reasons why ;;;; the executable file might be covered by the GNU General Public License. ;;;; ;;;; This exception applies only to the code released by the ;;;; Free Software Foundation under the name GUILE. If you copy ;;;; code from other Free Software Foundation releases into a copy of ;;;; GUILE, as the General Public License permits, the exception does ;;;; not apply to the code that you add in this way. To avoid misleading ;;;; anyone as to the status of such modified files, you must delete ;;;; this exception notice from them. ;;;; ;;;; If you write modifications of your own for GUILE, it is your choice ;;;; whether to permit this exception to apply to your modifications. ;;;; If you do not wish that, delete this exception notice. (use-modules (srfi srfi-1) (test-suite lib)) ;; ;; append-map ;; (with-test-prefix "append-map" (with-test-prefix "one list" (pass-if "()" (equal? '() (append-map noop '(())))) (pass-if "(1)" (equal? '(1) (append-map noop '((1))))) (pass-if "(1 2)" (equal? '(1 2) (append-map noop '((1 2))))) (pass-if "() ()" (equal? '() (append-map noop '(() ())))) (pass-if "() (1)" (equal? '(1) (append-map noop '(() (1))))) (pass-if "() (1 2)" (equal? '(1 2) (append-map noop '(() (1 2))))) (pass-if "(1) (2)" (equal? '(1 2) (append-map noop '((1) (2))))) (pass-if "(1 2) ()" (equal? '(1 2) (append-map noop '(() (1 2)))))) (with-test-prefix "two lists" (pass-if "() / 9" (equal? '() (append-map noop '(()) '(9)))) (pass-if "(1) / 9" (equal? '(1) (append-map noop '((1)) '(9)))) (pass-if "() () / 9 9" (equal? '() (append-map noop '(() ()) '(9 9)))) (pass-if "(1) (2) / 9" (equal? '(1) (append-map noop '((1) (2)) '(9)))) (pass-if "(1) (2) / 9 9" (equal? '(1 2) (append-map noop '((1) (2)) '(9 9)))))) ;; ;; count ;; (with-test-prefix "count" (pass-if-exception "no args" exception:wrong-num-args (count)) (pass-if-exception "one arg" exception:wrong-num-args (count noop)) (with-test-prefix "one list" (define (or1 x) x) (pass-if "empty list" (= 0 (count or1 '()))) (pass-if-exception "pred arg count 0" exception:wrong-num-args (count (lambda () x) '(1 2 3))) (pass-if-exception "pred arg count 2" exception:wrong-num-args (count (lambda (x y) x) '(1 2 3))) (pass-if-exception "improper 1" exception:wrong-type-arg (count or1 1)) (pass-if-exception "improper 2" exception:wrong-type-arg (count or1 '(1 . 2))) (pass-if-exception "improper 3" exception:wrong-type-arg (count or1 '(1 2 . 3))) (pass-if "" (= 0 (count or1 '(#f)))) (pass-if "" (= 1 (count or1 '(#t)))) (pass-if "" (= 0 (count or1 '(#f #f)))) (pass-if "" (= 1 (count or1 '(#f #t)))) (pass-if "" (= 1 (count or1 '(#t #f)))) (pass-if "" (= 2 (count or1 '(#t #t)))) (pass-if "" (= 0 (count or1 '(#f #f #f)))) (pass-if "" (= 1 (count or1 '(#f #f #t)))) (pass-if "" (= 1 (count or1 '(#t #f #f)))) (pass-if "" (= 2 (count or1 '(#t #f #t)))) (pass-if "" (= 3 (count or1 '(#t #t #t))))) (with-test-prefix "two lists" (define (or2 x y) (or x y)) (pass-if "arg order" (= 1 (count (lambda (x y) (and (= 1 x) (= 2 y))) '(1) '(2)))) (pass-if "empty lists" (= 0 (count or2 '() '()))) (pass-if-exception "pred arg count 0" exception:wrong-num-args (count (lambda () #t) '(1 2 3) '(1 2 3))) (pass-if-exception "pred arg count 1" exception:wrong-num-args (count (lambda (x) x) '(1 2 3) '(1 2 3))) (pass-if-exception "pred arg count 3" exception:wrong-num-args (count (lambda (x y z) x) '(1 2 3) '(1 2 3))) (pass-if-exception "improper first 1" exception:wrong-type-arg (count or2 1 '(1 2 3))) (pass-if-exception "improper first 2" exception:wrong-type-arg (count or2 '(1 . 2) '(1 2 3))) (pass-if-exception "improper first 3" exception:wrong-type-arg (count or2 '(1 2 . 3) '(1 2 3))) (pass-if-exception "improper second 1" exception:wrong-type-arg (count or2 '(1 2 3) 1)) (pass-if-exception "improper second 2" exception:wrong-type-arg (count or2 '(1 2 3) '(1 . 2))) (pass-if-exception "improper second 3" exception:wrong-type-arg (count or2 '(1 2 3) '(1 2 . 3))) (pass-if "" (= 0 (count or2 '(#f) '(#f)))) (pass-if "" (= 1 (count or2 '(#t) '(#f)))) (pass-if "" (= 1 (count or2 '(#f) '(#t)))) (pass-if "" (= 0 (count or2 '(#f #f) '(#f #f)))) (pass-if "" (= 1 (count or2 '(#t #f) '(#t #f)))) (pass-if "" (= 2 (count or2 '(#t #t) '(#f #f)))) (pass-if "" (= 2 (count or2 '(#t #f) '(#f #t)))) (with-test-prefix "stop shortest" (pass-if "" (= 2 (count or2 '(#t #f #t) '(#f #t)))) (pass-if "" (= 2 (count or2 '(#t #f #t #t) '(#f #t)))) (pass-if "" (= 2 (count or2 '(#t #f) '(#f #t #t)))) (pass-if "" (= 2 (count or2 '(#t #f) '(#f #t #t #t)))))) (with-test-prefix "three lists" (define (or3 x y z) (or x y z)) (pass-if "arg order" (= 1 (count (lambda (x y z) (and (= 1 x) (= 2 y) (= 3 z))) '(1) '(2) '(3)))) (pass-if "empty lists" (= 0 (count or3 '() '() '()))) ;; currently bad pred argument gives wrong-num-args when 3 or more ;; lists, as opposed to wrong-type-arg for 1 or 2 lists (pass-if-exception "pred arg count 0" exception:wrong-num-args (count (lambda () #t) '(1 2 3) '(1 2 3) '(1 2 3))) (pass-if-exception "pred arg count 2" exception:wrong-num-args (count (lambda (x y) x) '(1 2 3) '(1 2 3)'(1 2 3) )) (pass-if-exception "pred arg count 4" exception:wrong-num-args (count (lambda (w x y z) x) '(1 2 3) '(1 2 3) '(1 2 3))) (pass-if-exception "improper first 1" exception:wrong-type-arg (count or3 1 '(1 2 3) '(1 2 3))) (pass-if-exception "improper first 2" exception:wrong-type-arg (count or3 '(1 . 2) '(1 2 3) '(1 2 3))) (pass-if-exception "improper first 3" exception:wrong-type-arg (count or3 '(1 2 . 3) '(1 2 3) '(1 2 3))) (pass-if-exception "improper second 1" exception:wrong-type-arg (count or3 '(1 2 3) 1 '(1 2 3))) (pass-if-exception "improper second 2" exception:wrong-type-arg (count or3 '(1 2 3) '(1 . 2) '(1 2 3))) (pass-if-exception "improper second 3" exception:wrong-type-arg (count or3 '(1 2 3) '(1 2 . 3) '(1 2 3))) (pass-if-exception "improper third 1" exception:wrong-type-arg (count or3 '(1 2 3) '(1 2 3) 1)) (pass-if-exception "improper third 2" exception:wrong-type-arg (count or3 '(1 2 3) '(1 2 3) '(1 . 2))) (pass-if-exception "improper third 3" exception:wrong-type-arg (count or3 '(1 2 3) '(1 2 3) '(1 2 . 3))) (pass-if "" (= 0 (count or3 '(#f) '(#f) '(#f)))) (pass-if "" (= 1 (count or3 '(#t) '(#f) '(#f)))) (pass-if "" (= 1 (count or3 '(#f) '(#t) '(#f)))) (pass-if "" (= 1 (count or3 '(#f) '(#f) '(#t)))) (pass-if "" (= 0 (count or3 '(#f #f) '(#f #f) '(#f #f)))) (pass-if "" (= 1 (count or3 '(#t #f) '(#f #f) '(#f #f)))) (pass-if "" (= 1 (count or3 '(#f #t) '(#f #f) '(#f #f)))) (pass-if "" (= 1 (count or3 '(#f #f) '(#t #f) '(#f #f)))) (pass-if "" (= 1 (count or3 '(#f #f) '(#f #t) '(#f #f)))) (pass-if "" (= 1 (count or3 '(#f #f) '(#f #f) '(#t #f)))) (pass-if "" (= 1 (count or3 '(#f #f) '(#f #f) '(#f #t)))) (pass-if "" (= 2 (count or3 '(#t #t) '(#f #f) '(#f #f)))) (pass-if "" (= 2 (count or3 '(#f #f) '(#t #t) '(#f #f)))) (pass-if "" (= 2 (count or3 '(#f #f) '(#f #f) '(#t #t)))) (pass-if "" (= 2 (count or3 '(#f #f) '(#t #f) '(#f #t)))) (with-test-prefix "stop shortest" (pass-if "" (= 0 (count or3 '() '(#t #t #t) '(#t #t)))) (pass-if "" (= 0 (count or3 '(#t #t #t) '() '(#t #t)))) (pass-if "" (= 0 (count or3 '(#t #t #t) '(#t #t) '()))) (pass-if "" (= 1 (count or3 '(#t) '(#t #t #t) '(#t #t)))) (pass-if "" (= 1 (count or3 '(#t #t #t) '(#t) '(#t #t)))) (pass-if "" (= 1 (count or3 '(#t #t #t) '(#t #t) '(#t))))))) ;; ;; filter-map ;; (with-test-prefix "filter-map" (with-test-prefix "one list" (pass-if "(1)" (equal? '(1) (filter-map noop '(1)))) (pass-if "(#f)" (equal? '() (filter-map noop '(#f)))) (pass-if "(1 2)" (equal? '(1 2) (filter-map noop '(1 2)))) (pass-if "(#f 2)" (equal? '(2) (filter-map noop '(#f 2)))) (pass-if "(#f #f)" (equal? '() (filter-map noop '(#f #f)))) (pass-if "(1 2 3)" (equal? '(1 2 3) (filter-map noop '(1 2 3)))) (pass-if "(#f 2 3)" (equal? '(2 3) (filter-map noop '(#f 2 3)))) (pass-if "(1 #f 3)" (equal? '(1 3) (filter-map noop '(1 #f 3)))) (pass-if "(1 2 #f)" (equal? '(1 2) (filter-map noop '(1 2 #f))))) (with-test-prefix "two lists" (pass-if "(1 2 3) (4 5 6)" (equal? '(1 2 3) (filter-map noop '(1 2 3) '(4 5 6)))) (pass-if "(#f 2 3) (4 5)" (equal? '(2) (filter-map noop '(#f 2 3) '(4 5)))) (pass-if "(4 #f) (1 2 3)" (equal? '(4) (filter-map noop '(4 #f) '(1 2 3)))))) ;; ;; list-copy ;; (with-test-prefix "list-copy" ;; improper lists can be copied (pass-if "empty" (equal? '() (list-copy '()))) (pass-if "one" (equal? '(1) (list-copy '(1)))) (pass-if "two" (equal? '(1 2) (list-copy '(1 2)))) (pass-if "three" (equal? '(1 2 3) (list-copy '(1 2 3)))) (pass-if "four" (equal? '(1 2 3 4) (list-copy '(1 2 3 4)))) (pass-if "five" (equal? '(1 2 3 4 5) (list-copy '(1 2 3 4 5)))) ;; improper lists can be copied (pass-if "one improper" (equal? 1 (list-copy 1))) (pass-if "two improper" (equal? '(1 . 2) (list-copy '(1 . 2)))) (pass-if "three improper" (equal? '(1 2 . 3) (list-copy '(1 2 . 3)))) (pass-if "four improper" (equal? '(1 2 3 . 4) (list-copy '(1 2 3 . 4)))) (pass-if "five improper" (equal? '(1 2 3 4 . 5) (list-copy '(1 2 3 4 . 5)))))