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
|
;-*- Mode: Lisp -*-
;;;; Author: Paul Dietz
;;;; Created: Thu Oct 3 21:33:16 2002
;;;; Contains: Tests for NSTRING-DOWNCASE
(in-package :cl-test)
(deftest nstring-downcase.1
(let* ((s (copy-seq "A"))
(s2 (nstring-downcase s)))
(values (eqt s s2) s))
t "a")
(deftest nstring-downcase.2
(let* ((s (copy-seq "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"))
(s2 (nstring-downcase s)))
(values (eqt s s2) s))
t
"abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz")
(deftest nstring-downcase.3
(let* ((s (copy-seq "0123456789!@#$%^&*()_-+=|\\{}[]:\";'<>?,./ "))
(s2 (nstring-downcase s)))
(values (eqt s s2) s))
t
"0123456789!@#$%^&*()_-+=|\\{}[]:\";'<>?,./ ")
(deftest nstring-downcase.6
(let* ((s (make-array 6 :element-type 'character
:initial-contents '(#\A #\B #\C #\D #\E #\F)))
(s2 (nstring-downcase s)))
(values (eqt s s2) s))
t "abcdef")
(deftest nstring-downcase.7
(let* ((s (make-array 6 :element-type 'standard-char
:initial-contents '(#\A #\B #\7 #\D #\E #\F)))
(s2 (nstring-downcase s)))
(values (eqt s s2) s))
t
"ab7def")
;; Tests with :start, :end
(deftest nstring-downcase.8
(let ((s "ABCDEF"))
(loop for i from 0 to 6
collect (nstring-downcase (copy-seq s) :start i)))
("abcdef" "Abcdef" "ABcdef" "ABCdef" "ABCDef" "ABCDEf" "ABCDEF"))
(deftest nstring-downcase.9
(let ((s "ABCDEF"))
(loop for i from 0 to 6
collect (nstring-downcase (copy-seq s) :start i :end nil)))
("abcdef" "Abcdef" "ABcdef" "ABCdef" "ABCDef" "ABCDEf" "ABCDEF"))
(deftest nstring-downcase.10
(let ((s "ABCDE"))
(loop for i from 0 to 4
collect (loop for j from i to 5
collect (string-invertcase
(nstring-downcase (copy-seq s)
:start i :end j)))))
(("abcde" "Abcde" "ABcde" "ABCde" "ABCDe" "ABCDE")
("abcde" "aBcde" "aBCde" "aBCDe" "aBCDE")
("abcde" "abCde" "abCDe" "abCDE")
("abcde" "abcDe" "abcDE")
("abcde" "abcdE")))
(deftest nstring-downcase.11
:notes (:nil-vectors-are-strings)
(nstring-downcase (make-array '(0) :element-type nil))
"")
(deftest nstring-downcase.12
(loop for type in '(standard-char base-char character)
for s = (make-array '(10) :element-type type
:fill-pointer 5
:initial-contents "aB0cDefGHi")
collect (list (copy-seq s)
(copy-seq (nstring-downcase s))
(copy-seq s)
(progn (setf (fill-pointer s) 10) (copy-seq s))
))
(("aB0cD" "ab0cd" "ab0cd" "ab0cdefGHi")
("aB0cD" "ab0cd" "ab0cd" "ab0cdefGHi")
("aB0cD" "ab0cd" "ab0cd" "ab0cdefGHi")))
(deftest nstring-downcase.13
(loop for type in '(standard-char base-char character)
for s0 = (make-array '(10) :element-type type
:initial-contents "zZaB0cDefG")
for s = (make-array '(5) :element-type type
:displaced-to s0
:displaced-index-offset 2)
collect (list (copy-seq s)
(nstring-downcase s)
(copy-seq s)
s0))
(("aB0cD" "ab0cd" "ab0cd" "zZab0cdefG")
("aB0cD" "ab0cd" "ab0cd" "zZab0cdefG")
("aB0cD" "ab0cd" "ab0cd" "zZab0cdefG")))
(deftest nstring-downcase.14
(loop for type in '(standard-char base-char character)
for s = (make-array '(5) :element-type type
:adjustable t
:initial-contents "aB0cD")
collect (list (copy-seq s)
(nstring-downcase s)
(copy-seq s)))
(("aB0cD" "ab0cd" "ab0cd")
("aB0cD" "ab0cd" "ab0cd")
("aB0cD" "ab0cd" "ab0cd")))
;;; Order of evaluation tests
(deftest nstring-downcase.order.1
(let ((i 0) a b c (s (copy-seq "ABCDEF")))
(values
(nstring-downcase
(progn (setf a (incf i)) s)
:start (progn (setf b (incf i)) 1)
:end (progn (setf c (incf i)) 4))
i a b c))
"AbcdEF" 3 1 2 3)
(deftest nstring-downcase.order.2
(let ((i 0) a b c (s (copy-seq "ABCDEF")))
(values
(nstring-downcase
(progn (setf a (incf i)) s)
:end (progn (setf b (incf i)) 4)
:start (progn (setf c (incf i)) 1))
i a b c))
"AbcdEF" 3 1 2 3)
;;; Error cases
(deftest nstring-downcase.error.1
(signals-error (nstring-downcase) program-error)
t)
(deftest nstring-downcase.error.2
(signals-error (nstring-downcase (copy-seq "abc") :bad t) program-error)
t)
(deftest nstring-downcase.error.3
(signals-error (nstring-downcase (copy-seq "abc") :start) program-error)
t)
(deftest nstring-downcase.error.4
(signals-error (nstring-downcase (copy-seq "abc") :bad t
:allow-other-keys nil)
program-error)
t)
(deftest nstring-downcase.error.5
(signals-error (nstring-downcase (copy-seq "abc") :end) program-error)
t)
(deftest nstring-downcase.error.6
(signals-error (nstring-downcase (copy-seq "abc") 1 2) program-error)
t)
|