r4982: Auto commit for Debian build
[kmrcl.git] / tests.lisp
index eebaf13efaf1910aaab907ce3d37dc56b4f02d60..bdeaa27885a29e1e64864c8edfd655bc231955c5 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Author:        Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2003
 ;;;;
-;;;; $Id: tests.lisp,v 1.1 2003/04/28 21:12:27 kevin Exp $
+;;;; $Id: tests.lisp,v 1.14 2003/05/11 21:51:44 kevin Exp $
 ;;;;
 ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg
 ;;;;
   (:use #:kmrcl #:cl #:rtest))
 (in-package #:kmrcl-tests)
 
-(deftest p1 t t)
+(rem-all-tests)
 
-#+kmrcl-mop
+
+
+(deftest str.0 (substitute-chars-strings "" nil) "")
+(deftest str.1 (substitute-chars-strings "abcd" nil) "abcd")
+(deftest str.2 (substitute-chars-strings "abcd" nil) "abcd")
+(deftest str.3 (substitute-chars-strings "abcd" '((#\j . "ef"))) "abcd")
+(deftest str.4 (substitute-chars-strings "abcd" '((#\a . "ef"))) "efbcd")
+(deftest str.5
+    (substitute-chars-strings "abcd" '((#\a . "ef") (#\j . "ghi")))
+  "efbcd")
+(deftest str.6
+    (substitute-chars-strings "abcd" '((#\a . "ef") (#\d . "ghi")))
+  "efbcghi")
+
+(deftest str.7 (escape-xml-string "") "")
+(deftest str.8 (escape-xml-string "abcd") "abcd")
+(deftest str.9 (escape-xml-string "ab&cd") "ab&cd")
+(deftest str.10 (escape-xml-string "ab&cd<") "ab&amp;cd&lt;")
+(deftest str.11 (escape-xml-string "ab&c><") "ab&amp;c&gt;&lt;")
+(deftest str.12 (string-trim-last-character "") "")
+(deftest str.13 (string-trim-last-character "a") "")
+(deftest str.14 (string-trim-last-character "ab") "a")
+(deftest str.15 (nstring-trim-last-character "") "")
+(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")
+
+(deftest f.1 (filter #'(lambda (x) (when (oddp x) x))
+                    '(0 1 2 3 4 5 6 7 8 9)) (1 3 5 7 9))
+(deftest an.1 (appendnew '(a b c d) '(c c e f)) (a b c d e f))
+
+(eval-when (:compile-toplevel :load-toplevel :execute)
+  (when (find-package '#:kmr-mop)
+    (pushnew :kmrtest-mop cl:*features*)))
+
+#+kmrtest-mop
 (progn
   (defclass credit-rating ()
     ((level :attributes (date-set time-set))
      (id :attributes (person-setting)))
-    (:metaclass kmrcl:attributes-class))
-  (defparameter cr (make-instance 'credit-rating))
+    (:metaclass attributes-class))
+  (defparameter cr nil)
+  
+  (defclass monitored-credit-rating (credit-rating)
+    ((level :attributes (last-checked interval date-set))
+     (cc :initarg :cc)
+     (id :attributes (verified)))
+    (:metaclass attributes-class))
+  (defparameter mcr (make-instance 'monitored-credit-rating))
+
+  (deftest attrib.mop.1
+      (progn
+       (setq cr (make-instance 'credit-rating))
+       (slot-attribute cr 'level 'date-set))
+      nil)
+
+  (deftest attrib.mop.2
+      (progn
+       (setq cr (make-instance 'credit-rating))
+       (setf (slot-attribute cr 'level 'date-set) "12/15/1990")
+       (slot-attribute cr 'level 'date-set))
+    "12/15/1990")
+
+  (deftest attrib.mop.3
+      (progn
+       (setq mcr (make-instance 'monitored-credit-rating))
+       (setf (slot-attribute mcr 'level 'date-set) "01/05/2002")
+       (slot-attribute mcr 'level 'date-set))
+    "01/05/2002")
   
-  (format t "~&date-set: ~a" (slot-attribute cr 'level 'date-set))
-  (setf (slot-attribute cr 'level 'date-set) "12/15/1990")
-(format t "~&date-set: ~a" (slot-attribute cr 'level 'date-set))
-
-(defclass monitored-credit-rating (credit-rating)
-  ((level :attributes (last-checked interval date-set))
-   (cc :initarg :cc)
-   (id :attributes (verified))
-   )
-  (:metaclass attributes-class))
-(defparameter mcr (make-instance 'monitored-credit-rating))
-
-(setf (slot-attribute mcr 'level 'date-set) "01/05/2002")
-(format t "~&date-set for mcr: ~a" (slot-attribute mcr 'level 'date-set))
-)   ;; kmrcl-mop
+  )   ;; kmrcl-mop
 
+#+kmrtest-mop
+(eval-when (:compile-toplevel :load-toplevel :execute)
+  (setq cl:*features* (delete :kmrtest-mop cl:*features*)))