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 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445
|
;;;; -*- Mode: Lisp; indent-tabs-mode: nil -*-
(defpackage :split-sequence/tests
(:use :common-lisp :split-sequence :fiveam))
(in-package :split-sequence/tests)
#+sbcl
(progn
(defclass eseq (standard-object sequence)
((actual-seq :type list :initarg :actual-seq :initform nil
:accessor actual-seq))
(:documentation "Extended sequence type in SBCL"))
(defmethod sb-sequence:length ((s eseq))
(length (actual-seq s)))
(defmethod sb-sequence:elt ((s eseq) index)
(elt (actual-seq s) index))
(defmethod (setf sb-sequence:elt) (v (s eseq) index)
(setf (elt (actual-seq s) index) v))
(defmethod sb-sequence:adjust-sequence ((s eseq) len &rest args)
(setf (actual-seq s)
(apply #'sb-sequence:adjust-sequence (actual-seq s) len args)))
(defmethod sb-sequence:make-sequence-like ((s eseq) len &rest args)
(make-instance 'eseq :actual-seq (apply #'sb-sequence:make-sequence-like
(actual-seq s) len args))))
#-sbcl
(defun equalp-seq (x y) (equalp x y))
#+sbcl
(defgeneric equalp-seq (x y)
(:documentation "EQUALP extended to extended sequence types")
(:method (x y) (equalp x y))
(:method ((x cons) (y cons))
(and (loop while (and (consp x) (consp y))
always (equalp-seq (pop x) (pop y)))
(equalp-seq x y)))
(:method ((x vector) (y vector))
(and (= (length x) (length y))
(every #'equalp-seq x y)))
(:method ((x eseq) y)
(equalp-seq (actual-seq x) y))
(:method (x (y eseq))
(equalp-seq x (actual-seq y))))
(defmacro epmv (form1 form2)
`(equalp-seq (multiple-value-list ,form1)
(multiple-value-list ,form2)))
(in-suite* :split-sequence)
;;; UNIT TESTS
(defmacro define-test (name (&key input output index) &body forms)
;; This macro automatically generates test code for testing vector and list input.
;; Vector input and output is automatically coerced into list form for the list tests.
;; (DEFINE-TEST FOO ...) generates FIVEAM tests FOO.VECTOR and FOO.LIST.
(check-type name symbol)
(check-type input (cons symbol (cons vector null)))
(check-type output (cons symbol (cons list null)))
(check-type index (cons symbol (cons unsigned-byte null)))
(let* ((input-symbol (first input)) (vector-input (second input))
(output-symbol (first output)) (vector-output (second output))
(index-symbol (first index)) (index-value (second index))
(list-input (coerce vector-input 'list))
(list-output (mapcar (lambda (x) (coerce x 'list)) vector-output))
(vector-name (intern (concatenate 'string (symbol-name name) ".VECTOR")))
(list-name (intern (concatenate 'string (symbol-name name) ".LIST")))
#+sbcl
(eseq-name (intern (concatenate 'string (symbol-name name) ".ESEQ")))
#+sbcl
(eseq-input-form `(make-instance 'eseq :actual-seq (copy-list ',list-input)))
#+sbcl
(eseq-output-form `(mapcar (lambda (x) (make-instance 'eseq :actual-seq (copy-list x)))
',list-output)))
`(progn
(test (,vector-name :compile-at :definition-time)
(let ((,input-symbol ',vector-input)
(,output-symbol ',vector-output)
(,index-symbol ,index-value))
,@forms))
(test (,list-name :compile-at :definition-time)
(let ((,input-symbol ',list-input)
(,output-symbol ',list-output)
(,index-symbol ,index-value))
,@forms))
#+sbcl
(test (,eseq-name :compile-at :definition-time)
(let ((,input-symbol ,eseq-input-form)
(,output-symbol ,eseq-output-form)
(,index-symbol ,index-value))
,@forms)))))
(define-test split-sequence.0 (:input (input "")
:output (output (""))
:index (index 0))
(is (epmv (split-sequence #\; input)
(values output index))))
(define-test split-sequence.1 (:input (input "a;;b;c")
:output (output ("a" "" "b" "c"))
:index (index 6))
(is (epmv (split-sequence #\; input)
(values output index))))
(define-test split-sequence.2 (:input (input "a;;b;c")
:output (output ("a" "" "b" "c"))
:index (index 0))
(is (epmv (split-sequence #\; input :from-end t)
(values output index))))
(define-test split-sequence.3 (:input (input "a;;b;c")
:output (output ("c"))
:index (index 4))
(is (epmv (split-sequence #\; input :from-end t :count 1)
(values output index))))
(define-test split-sequence.4 (:input (input "a;;b;c")
:output (output ("a" "b" "c"))
:index (index 6))
(is (epmv (split-sequence #\; input :remove-empty-subseqs t)
(values output index))))
(define-test split-sequence.5 (:input (input ";oo;bar;ba;")
:output (output ("oo" "bar" "b"))
:index (index 9))
(is (epmv (split-sequence #\; input :start 1 :end 9)
(values output index))))
(define-test split-sequence.6 (:input (input "abracadabra")
:output (output ("" "br" "c" "d" "br" ""))
:index (index 11))
(is (epmv (split-sequence #\A input :key #'char-upcase)
(values output index))))
(define-test split-sequence.7 (:input (input "abracadabra")
:output (output ("r" "c" "d"))
:index (index 7))
(is (epmv (split-sequence #\A input :key #'char-upcase :start 2 :end 7)
(values output index))))
(define-test split-sequence.8 (:input (input "abracadabra")
:output (output ("r" "c" "d"))
:index (index 2))
(is (epmv (split-sequence #\A input :key #'char-upcase :start 2 :end 7 :from-end t)
(values output index))))
(define-test split-sequence.9 (:input (input #(1 2 0))
:output (output (#(1 2) #()))
:index (index 0))
(is (epmv (split-sequence 0 input :from-end t)
(values output index))))
(define-test split-sequence.10 (:input (input #(2 0 0 2 3 2 0 1 0 3))
:output (output ())
:index (index 8))
(is (epmv (split-sequence 0 input :start 8 :end 9 :from-end t :count 0 :remove-empty-subseqs t)
(values output index))))
(define-test split-sequence.11 (:input (input #(0 1 3 0 3 1 2 2 1 0))
:output (output ())
:index (index 0))
(is (epmv (split-sequence 0 input :start 0 :end 0 :remove-empty-subseqs t)
(values output index))))
(define-test split-sequence.12 (:input (input #(3 0 0 0 3 3 0 3 1 0))
:output (output ())
:index (index 10))
(is (epmv (split-sequence 0 input :start 9 :end 10 :from-end t :count 0)
(values output index))))
(define-test split-sequence.13 (:input (input #(3 3 3 3 0 2 0 0 1 2))
:output (output (#(1)))
:index (index 6))
(is (epmv (split-sequence 0 input :start 6 :end 9 :from-end t :count 1 :remove-empty-subseqs t)
(values output index))))
(define-test split-sequence.14 (:input (input #(1 0))
:output (output (#(1)))
:index (index 0))
(is (epmv (split-sequence 0 input :from-end t :count 1 :remove-empty-subseqs t)
(values output index))))
(define-test split-sequence.15 (:input (input #(0 0))
:output (output ())
:index (index 1))
(is (epmv (split-sequence 0 input :start 0 :end 1 :count 0 :remove-empty-subseqs t)
(values output index))))
(define-test split-sequence.16 (:input (input "a;;b;c")
:output (output ("" ";;" ";" ""))
:index (index 6))
(is (epmv (split-sequence #\; input :test-not #'eql)
(values output index))))
(define-test split-sequence.17 (:input (input "a;;b;c")
:output (output ("" ";;" ";" ""))
:index (index 0))
(is (epmv (split-sequence #\; input :from-end t :test-not #'eql)
(values output index))))
(define-test split-sequence.18 (:input (input #(1 0 2 0 3 0 4))
:output (output (#(1) #(2) #(3)))
:index (index 6))
(is (epmv (split-sequence 0 input :count 3)
(values output index))))
(define-test split-sequence.19 (:input (input #(1 0 3 0 4 0 5))
:output (output (#() #(0) #(0) #(0) #()))
:index (index 7))
(is (epmv (split-sequence 0 input :test (lambda (x y) (not (eql x y))))
(values output index))))
(define-test split-sequence.20 (:input (input #(1 0 3 0 4 0 5))
:output (output (#() #(0) #(0) #(0) #()))
:index (index 7))
(is (epmv (split-sequence 0 input :test-not #'eql)
(values output index))))
(define-test split-sequence-if.1 (:input (input "abracadabra")
:output (output ("" "" "r" "c" "d" "" "r" ""))
:index (index 11))
(is (epmv (split-sequence-if (lambda (x) (member x '(#\a #\b))) input)
(values output index))))
(define-test split-sequence-if.2 (:input (input "123456")
:output (output ("1" "3" "5"))
:index (index 6))
(is (epmv (split-sequence-if (lambda (x) (evenp (parse-integer (string x)))) input
:remove-empty-subseqs t)
(values output index))))
(define-test split-sequence-if.3 (:input (input "123456")
:output (output ("1" "3" "5" ""))
:index (index 6))
(is (epmv (split-sequence-if (lambda (x) (evenp (parse-integer (string x)))) input)
(values output index))))
(define-test split-sequence-if.4 (:input (input "1212121")
:output (output ("1" "1" "1" "1"))
:index (index 0))
(is (epmv (split-sequence-if (lambda (c) (eql c #\2))
input
:from-end t)
(values output index))))
(define-test split-sequence-if.5 (:input (input "abracadabra")
:output (output ("r"))
:index (index 4))
(is (epmv (split-sequence-if (lambda (x) (member x '(#\a #\b))) input :remove-empty-subseqs t
:end 11 :count 1)
(values output index))))
(define-test split-sequence-if.6 (:input (input #(0 1 2 3 4 5 6))
:output (output (#(0) #(2) #(4) #(6)))
:index (index 7))
(is (epmv (split-sequence-if #'evenp input :key #'1+)
(values output index))))
(define-test split-sequence-if.7 (:input (input #(0 1 2 3 4 5 6))
:output (output (#(0) #(2) #()))
:index (index 4))
(is (epmv (split-sequence-if #'oddp input :end 4)
(values output index))))
(define-test split-sequence-if.8 (:input (input #(0 1 2 3 4 5 6))
:output (output (#(2) #(4) #(6)))
:index (index 7))
(is (epmv (split-sequence-if #'oddp input :start 2)
(values output index))))
(define-test split-sequence-if.9 (:input (input #(0 1 2 3 4 5 6))
:output (output (#()))
:index (index 0))
(is (epmv (split-sequence-if #'oddp input :start 0 :end 0)
(values output index))))
(define-test split-sequence-if-not.1 (:input (input "abracadabra")
:output (output ("ab" "a" "a" "ab" "a"))
:index (index 11))
(is (epmv (split-sequence-if-not (lambda (x) (member x '(#\a #\b))) input)
(values output index))))
(define-test split-sequence-if-not.2 (:input (input "1212121")
:output (output ("1" "1" "1" "1"))
:index (index 0))
(is (epmv (split-sequence-if-not (lambda (c) (not (eql c #\2)))
input
:from-end t)
(values output index))))
(define-test split-sequence-if-not.3 (:input (input #(0 1 2 3 4 5 6))
:output (output (#(0) #(2) #(4) #(6)))
:index (index 7))
(is (epmv (split-sequence-if-not #'oddp input :key '1+)
(values output index))))
(define-test split-sequence-if-not.4 (:input (input #(0 1 2 3 4 5 6))
:output (output (#(1) #(3) #(5)))
:index (index 7))
(is (epmv (split-sequence-if-not #'oddp input :remove-empty-subseqs t)
(values output index))))
(define-test split-sequence-if-not.5 (:input (input #(0 1 0 3 0 5))
:output (output (#() #(1)))
:index (index 3))
(is (epmv (split-sequence-if-not #'oddp input :count 2)
(values output index))))
(define-test split-sequence-if-not.6 (:input (input #(0 1 0 3 0 5))
:output (output (#() #(1) #()))
:index (index 3))
(is (epmv (split-sequence-if-not #'oddp input :end 3)
(values output index))))
(define-test split-sequence-if-not.7 (:input (input #(0 1 0 3 0 5))
:output (output (#(1) #()))
:index (index 3))
(is (epmv (split-sequence-if-not #'oddp input :start 1 :end 3)
(values output index))))
(define-test split-sequence-if-not.8 (:input (input #(0 1 0 3 0 5))
:output (output (#() #()))
:index (index 3))
(is (epmv (split-sequence-if-not #'oddp input :start 2 :end 3)
(values output index))))
(define-test split-sequence-if-not.9 (:input (input #(0 1 0 3 0 5))
:output (output (#()))
:index (index 0))
(is (epmv (split-sequence-if-not #'oddp input :start 0 :end 0)
(values output index))))
(test split-sequence.start-end-error
(signals error (split-sequence 0 #(0 1 2 3) :start nil))
(signals error (split-sequence 0 #(0 1 2 3) :end '#:end))
(signals error (split-sequence 0 #(0 1 2 3) :start 0 :end 8))
(signals error (split-sequence 0 #(0 1 2 3) :start 2 :end 0))
(signals error (split-sequence-if #'evenp #(1 2 3 4 5) :start 2 :end 0))
(signals error (split-sequence-if #'evenp '(1 2 3 4 5) :start 2 :end 0))
(signals error (split-sequence-if-not #'evenp #(1 2 3 4 5) :start 2 :end 0))
(signals error (split-sequence-if-not #'evenp '(1 2 3 4 5) :start 2 :end 0)))
(test split-sequence.test-provided
;; Neither provided
(is (equal '((1) (3)) (split-sequence 2 '(1 2 3))))
;; Either provided
(is (equal '((1) (3)) (split-sequence 2 '(1 2 3) :test #'eql)))
(is (equal '(() (2) ()) (split-sequence 2 '(1 2 3) :test-not #'eql)))
(signals type-error (split-sequence 2 '(1 2 3) :test nil))
(signals type-error (split-sequence 2 '(1 2 3) :test-not nil))
(signals type-error (split-sequence 2 '(1 2 3) :test 1))
(signals type-error (split-sequence 2 '(1 2 3) :test-not 1))
;; Both provided
(signals program-error (split-sequence 2 '(1 2 3) :test #'eql :test-not nil))
(signals program-error (split-sequence 2 '(1 2 3) :test nil :test-not #'eql))
(signals program-error (split-sequence 2 '(1 2 3) :test #'eql :test-not #'eql))
(signals program-error (split-sequence 2 '(1 2 3) :test nil :test-not nil)))
(test split-sequence.cover
;; Tests for covering branches missed by the other tests
(is (equal (multiple-value-list
(split-sequence nil '(nil nil 1 nil 2 3)
:count 1 :remove-empty-subseqs t))
'(((1)) 4)))
(is (equal (multiple-value-list
(split-sequence nil '(nil nil 1 nil 2 3)
:count 0 :remove-empty-subseqs t))
'(nil 2))))
(test split-sequence.check-bounds
(signals error (split-sequence 2 '(1 2 3 4 5) :start 3 :end 2))
(signals error (split-sequence 2 '(1 2 3 4) :end 5)))
;;; FUZZ TEST
(test split-sequence.fuzz
(fuzz :verbose nil :fiveamp t))
(defun fuzz (&key (max-length 100) (repetitions 1000000) (verbose t) (print-every 10000) (fiveamp nil))
(flet ((random-vector (n)
(let ((vector (make-array n :element-type '(unsigned-byte 2))))
(dotimes (i n) (setf (aref vector i) (random 4)))
vector))
(random-boolean () (if (= 0 (random 2)) t nil))
(fuzz-failure (vector start end from-end count remove-empty-subseqs
expected-splits expected-index actual-splits actual-index)
(format nil "Fuzz failure:
\(MULTIPLE-VALUE-CALL #'VALUES
(SPLIT-SEQUENCE 0 ~S
:START ~S :END ~S :FROM-END ~S :COUNT ~S :REMOVE-EMPTY-SUBSEQS ~S)
(SPLIT-SEQUENCE 0 (COERCE ~S 'LIST)
:START ~S :END ~S :FROM-END ~S :COUNT ~S :REMOVE-EMPTY-SUBSEQS ~S))
~S~%~S~%~S~%~S"
vector start end from-end count remove-empty-subseqs
vector start end from-end count remove-empty-subseqs
expected-splits expected-index actual-splits actual-index)))
(let ((failure-string nil)
(predicate (lambda (x) (= x 0)))
(predicate-not (lambda (x) (/= x 0))))
(dotimes (i repetitions)
(when (and verbose (= 0 (mod (1+ i) print-every)))
(format t "Fuzz: Pass ~D passed.~%" (1+ i)))
(let* ((length (1+ (random max-length)))
(vector (random-vector length))
(list (coerce vector 'list))
(remove-empty-subseqs (random-boolean))
(start 0) end from-end count)
(case (random 5)
(0)
(1 (setf start (random length)))
(2 (setf start (random length)
end (+ start (random (1+ (- length start))))))
(3 (setf start (random length)
end (+ start (random (1+ (- length start))))
from-end t))
(4 (setf start (random length)
end (+ start (random (1+ (- length start))))
from-end t
count (random (1+ (- end start))))))
(let ((args (list :start start :end end :from-end from-end :count count
:remove-empty-subseqs remove-empty-subseqs)))
(multiple-value-bind (expected-splits expected-index)
(case (random 3)
(0 (apply #'split-sequence 0 vector args))
(1 (apply #'split-sequence-if predicate vector args))
(2 (apply #'split-sequence-if-not predicate-not vector args)))
(multiple-value-bind (actual-splits actual-index)
(case (random 3)
(0 (apply #'split-sequence 0 list args))
(1 (apply #'split-sequence-if predicate list args))
(2 (apply #'split-sequence-if-not predicate-not list args)))
(let* ((expected-splits (mapcar (lambda (x) (coerce x 'list)) expected-splits))
(result (and (equal actual-splits expected-splits)
(= expected-index actual-index))))
(unless result
(let ((string (fuzz-failure
vector start end from-end count remove-empty-subseqs
expected-splits expected-index actual-splits actual-index)))
(cond (fiveamp
(setf failure-string string)
(return))
(t (assert result () string)))))))))))
(when fiveamp
(is (not failure-string) failure-string)))))
|