X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests.lisp;h=b68cecfe2dba87599ad5c1f106eb7c66982562a6;hb=50db84ba1704d03eda2f084d706cfc4b220447ab;hp=a84404ca1c2fa57768047770931244aec25cb175;hpb=fff759278b0089e16c650fe7023b41eeafee30e2;p=kmrcl.git diff --git a/tests.lisp b/tests.lisp index a84404c..b68cecf 100644 --- a/tests.lisp +++ b/tests.lisp @@ -7,7 +7,7 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Date Started: Apr 2003 ;;;; -;;;; $Id: tests.lisp,v 1.5 2003/04/29 01:55:26 kevin Exp $ +;;;; $Id: tests.lisp,v 1.13 2003/05/08 19:19:08 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg ;;;; @@ -45,6 +45,55 @@ (deftest str.16 (nstring-trim-last-character "a") "") (deftest str.17 (nstring-trim-last-character "ab") "a") +(deftest str.18 (delimited-string-to-list "ab|cd|ef" #\|) + ("ab" "cd" "ef")) +(deftest str.19 (delimited-string-to-list "ab|cd|ef" #\| t) + ("ab" "cd" "ef")) +(deftest str.20 (delimited-string-to-list "") ("")) +(deftest str.21 (delimited-string-to-list "" #\space t) ("")) +(deftest str.22 (delimited-string-to-list "ab") ("ab")) +(deftest str.23 (delimited-string-to-list "ab" #\space t) ("ab")) +(deftest str.24 (delimited-string-to-list "ab|" #\|) ("ab" "")) +(deftest str.25 (delimited-string-to-list "ab|" #\| t) ("ab")) + +(deftest apsl.1 (append-sublists '((a b) (c d))) (a b c d)) +(deftest apsl.2 (append-sublists nil) nil) +(deftest apsl.3 (append-sublists '((a b))) (a b)) +(deftest apsl.4 (append-sublists '((a))) (a)) +(deftest apsl.5 (append-sublists '((a) (b) (c d (e f g)))) (a b c d (e f g))) + +(deftest pss.0 (with-output-to-string (s) (print-separated-strings s "|" nil)) + "") + +(deftest pss.1 + (with-output-to-string (s) (print-separated-strings s "|" '("ab")) ) + "ab") + +(deftest pss.2 + (with-output-to-string (s) (print-separated-strings s "|" '("ab" "cd"))) + "ab|cd") + +(deftest pss.3 + (with-output-to-string (s) (print-separated-strings s "|" '("ab" "cd") nil)) + "ab|cd") + +(deftest pss.4 + (with-output-to-string (s) + (print-separated-strings s "|" '("ab" "cd") nil nil)) + "ab|cd") + +(deftest pss.5 + (with-output-to-string (s) + (print-separated-strings s "|" '("ab" "cd") nil '("ef") nil)) + "ab|cd|ef") + +(deftest css.0 (concat-separated-strings "|" nil) "") +(deftest css.1 (concat-separated-strings "|" nil nil) "") +(deftest css.2 (concat-separated-strings "|" '("ab")) "ab") +(deftest css.3 (concat-separated-strings "|" '("ab" "cd")) "ab|cd") +(deftest css.4 (concat-separated-strings "|" '("ab" "cd") nil) "ab|cd") +(deftest css.5 (concat-separated-strings "|" '("ab" "cd") nil '("ef")) "ab|cd|ef") + (eval-when (:compile-toplevel :load-toplevel :execute) (when (find-package '#:kmr-mop) (pushnew :kmrtest-mop cl:*features*)))