r5062: return from san diego
[kmrcl.git] / tests.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          kmrcl-tests.lisp
6 ;;;; Purpose:       kmrcl tests file
7 ;;;; Author:        Kevin M. Rosenberg
8 ;;;; Date Started:  Apr 2003
9 ;;;;
10 ;;;; $Id: tests.lisp,v 1.15 2003/06/06 21:59:30 kevin Exp $
11 ;;;;
12 ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; *************************************************************************
15
16 (in-package #:cl)
17 (defpackage #:kmrcl-tests
18   (:use #:kmrcl #:cl #:rtest))
19 (in-package #:kmrcl-tests)
20
21 (rem-all-tests)
22
23
24 (deftest str.0 (substitute-chars-strings "" nil) "")
25 (deftest str.1 (substitute-chars-strings "abcd" nil) "abcd")
26 (deftest str.2 (substitute-chars-strings "abcd" nil) "abcd")
27 (deftest str.3 (substitute-chars-strings "abcd" '((#\j . "ef"))) "abcd")
28 (deftest str.4 (substitute-chars-strings "abcd" '((#\a . "ef"))) "efbcd")
29 (deftest str.5
30     (substitute-chars-strings "abcd" '((#\a . "ef") (#\j . "ghi")))
31   "efbcd")
32 (deftest str.6
33     (substitute-chars-strings "abcd" '((#\a . "ef") (#\d . "ghi")))
34   "efbcghi")
35
36 (deftest str.7 (escape-xml-string "") "")
37 (deftest str.8 (escape-xml-string "abcd") "abcd")
38 (deftest str.9 (escape-xml-string "ab&cd") "ab&cd")
39 (deftest str.10 (escape-xml-string "ab&cd<") "ab&amp;cd&lt;")
40 (deftest str.12 (string-trim-last-character "") "")
41 (deftest str.13 (string-trim-last-character "a") "")
42 (deftest str.14 (string-trim-last-character "ab") "a")
43 (deftest str.15 (nstring-trim-last-character "") "")
44 (deftest str.16 (nstring-trim-last-character "a") "")
45 (deftest str.17 (nstring-trim-last-character "ab") "a")
46
47 (deftest str.18 (delimited-string-to-list "ab|cd|ef" #\|)
48                                           ("ab" "cd" "ef"))
49 (deftest str.19 (delimited-string-to-list "ab|cd|ef" #\| t)
50                                           ("ab" "cd" "ef"))
51 (deftest str.20 (delimited-string-to-list "") (""))
52 (deftest str.21 (delimited-string-to-list "" #\space t) (""))
53 (deftest str.22 (delimited-string-to-list "ab") ("ab"))
54 (deftest str.23 (delimited-string-to-list "ab" #\space t) ("ab"))
55 (deftest str.24 (delimited-string-to-list "ab|" #\|) ("ab" ""))
56 (deftest str.25 (delimited-string-to-list "ab|" #\| t) ("ab"))
57
58 (deftest apsl.1 (append-sublists '((a b) (c d))) (a b c d))
59 (deftest apsl.2 (append-sublists nil) nil)
60 (deftest apsl.3 (append-sublists '((a b))) (a b))
61 (deftest apsl.4 (append-sublists '((a))) (a))
62 (deftest apsl.5 (append-sublists '((a) (b) (c d (e f g)))) (a b c d (e f g)))
63
64 (deftest pss.0 (with-output-to-string (s) (print-separated-strings s "|" nil)) 
65   "")
66
67 (deftest pss.1
68     (with-output-to-string (s) (print-separated-strings s "|" '("ab")) )
69   "ab")
70
71 (deftest pss.2
72     (with-output-to-string (s) (print-separated-strings s "|" '("ab" "cd")))
73     "ab|cd")
74
75 (deftest pss.3
76     (with-output-to-string (s) (print-separated-strings s "|" '("ab" "cd") nil))
77     "ab|cd")
78
79 (deftest pss.4
80     (with-output-to-string (s)
81       (print-separated-strings s "|" '("ab" "cd") nil nil))
82     "ab|cd")
83
84 (deftest pss.5
85     (with-output-to-string (s)
86       (print-separated-strings s "|" '("ab" "cd") nil '("ef") nil))
87     "ab|cd|ef")
88
89 (deftest css.0 (concat-separated-strings "|" nil) "")
90 (deftest css.1 (concat-separated-strings "|" nil nil) "")
91 (deftest css.2 (concat-separated-strings "|" '("ab")) "ab")
92 (deftest css.3 (concat-separated-strings "|" '("ab" "cd")) "ab|cd")
93 (deftest css.4 (concat-separated-strings "|" '("ab" "cd") nil) "ab|cd")
94 (deftest css.5 (concat-separated-strings "|" '("ab" "cd") nil '("ef")) "ab|cd|ef")
95
96 (deftest f.1 (filter #'(lambda (x) (when (oddp x) (* x x)))
97                      '(0 1 2 3 4 5 6 7 8 9)) (1 9 25 49 81))
98 (deftest an.1 (appendnew '(a b c d) '(c c e f)) (a b c d e f))
99
100
101 (deftest pxml.1
102   (xml-tag-contents "tag1" "<tag>Test</tag>")
103   nil nil)
104
105 (deftest pxml.1o
106   (kmrcl::xml-tag-contents-old "tag1" "<tag>Test</tag>")
107   nil nil)
108
109 ;;; MOP Testing
110
111 (eval-when (:compile-toplevel :load-toplevel :execute)
112   (when (find-package '#:kmr-mop)
113     (pushnew :kmrtest-mop cl:*features*)))
114
115 #+kmrtest-mop
116 (progn
117   (defclass credit-rating ()
118     ((level :attributes (date-set time-set))
119      (id :attributes (person-setting)))
120     (:metaclass attributes-class))
121   (defparameter cr nil)
122   
123   (defclass monitored-credit-rating (credit-rating)
124     ((level :attributes (last-checked interval date-set))
125      (cc :initarg :cc)
126      (id :attributes (verified)))
127     (:metaclass attributes-class))
128   (defparameter mcr (make-instance 'monitored-credit-rating))
129
130   (deftest attrib.mop.1
131       (progn
132         (setq cr (make-instance 'credit-rating))
133         (slot-attribute cr 'level 'date-set))
134       nil)
135
136   (deftest attrib.mop.2
137       (progn
138         (setq cr (make-instance 'credit-rating))
139         (setf (slot-attribute cr 'level 'date-set) "12/15/1990")
140         (slot-attribute cr 'level 'date-set))
141     "12/15/1990")
142
143   (deftest attrib.mop.3
144       (progn
145         (setq mcr (make-instance 'monitored-credit-rating))
146         (setf (slot-attribute mcr 'level 'date-set) "01/05/2002")
147         (slot-attribute mcr 'level 'date-set))
148     "01/05/2002")
149   
150   )   ;; kmrcl-mop
151
152 #+kmrtest-mop
153 (eval-when (:compile-toplevel :load-toplevel :execute)
154   (setq cl:*features* (delete :kmrtest-mop cl:*features*)))