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 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507
|
;;; eieio-tests.el -- eieio tests routines
;;;
;; Copyright (C) 1999, 2000, 2001 Eric M. Ludlam
;;
;; Author: <zappo@gnu.org>
;; RCS: $Id: eieio-tests.el,v 1.11 2001/02/19 17:38:36 zappo Exp $
;; Keywords: oop, lisp, tools
;;
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program; if not, you can either send email to this
;; program's author (see below) or write to:
;;
;; The Free Software Foundation, Inc.
;; 675 Mass Ave.
;; Cambridge, MA 02139, USA.
;;
;; Please send bug reports, etc. to zappo@gnu.org
;;
;;; Commentary:
;;
;; Test the various features of EIEIO. To run the tests, evaluate the
;; entire buffer.
(require 'eieio-base)
;;; Code:
;;; Multiple Inheritance, and method signal testing
;;
(defclass class-a ()
((water :initarg :water
:initform h20
:type symbol
:documentation "Detail about water.")
(classslot :initform penguin
:type symbol
:documentation "A class allocated slot."
:allocation class)
(test-tag :initform nil
:documentation "Used to make sure methods are called.")
(self :initform nil
:type (or null class-a)
:documentation "Test self referencing types.")
)
"Class A")
(defclass class-b ()
((land :initform "Sc"
:type string
:documentation "Detail about land."))
"Class b")
(defclass class-ab (class-a class-b)
((amphibian :initform "frog"
:documentation "Detail about amphibian on land and water."))
"Class A and B combined.")
;;; Defining a class with a slot tag error
;;
(let ((eieio-error-unsupported-class-tags t))
(condition-case nil
(progn
(defclass class-error ()
((error-slot :initarg :error-slot
:badslottag 1))
"A class with a bad slot tag.")
(error "No error was thrown for badslottag"))
(invalid-slot-type nil)))
(let ((eieio-error-unsupported-class-tags nil))
(condition-case nil
(progn
(defclass class-error ()
((error-slot :initarg :error-slot
:badslottag 1))
"A class with a bad slot tag."))
(invalid-slot-type
(error "invalid-slot-type thrown when eieio-error-unsupported-class-tags is nil")
)))
;;; Perform method testing
;;
;; allocate an object to use
(defvar ab (class-ab "abby"))
(defvar a (class-a "aye"))
(defvar b (class-b "fooby"))
(condition-case nil
(progn
;; Try make-instance on these guys...
(make-instance 'class-ab)
(make-instance 'class-a :water 'cho)
(make-instance 'class-b "a name")
)
(error "make-instance error."))
;; Play with call-next-method
(defmethod class-cn ((a class-a))
"Try calling `call-next-method' when there isn't one.
Argument A is object of type symbol `class-a'."
(call-next-method)
)
(defmethod no-next-method ((a class-a))
"Override signal throwing for variable `class-a'.
Argument A is the object of class variable `class-a'."
'moose)
(if (eq (class-cn ab) 'moose)
nil
(error "no-next-method return value failure."))
;; Non-existing methods.
(defmethod no-applicable-method ((b class-b) method)
"No need.
Argument B is for booger.
METHOD is the method that was attempting to be called."
'moose)
(if (eq (class-cn b) 'moose)
nil
(error "no-applicable-method return value failure."))
;;; play with methods and mi
(defmethod class-fun ((a class-a))
"Fun with class A."
'moose)
(defmethod class-fun ((b class-b))
"Fun with class B."
(error "Class B fun should not be called")
)
(if (eq (class-fun ab) 'moose)
nil
(error "Inheritance method check."))
(defmethod class-fun-foo ((b class-b))
"Foo Fun with class B."
'moose)
(if (eq (class-fun-foo ab) 'moose)
nil
(error "Multiple inheritance method check."))
;; Play with next-method and mi
(defmethod class-fun2 ((a class-a))
"More fun with class A."
'moose)
(defmethod class-fun2 ((b class-b))
"More fun with class B."
(error "Class B fun2 should not be called"))
(defmethod class-fun2 ((ab class-ab))
"More fun with class AB."
(call-next-method))
(if (eq (class-fun2 ab) 'moose)
nil
(error "Call next method inheritance check failed."))
;; How about if B is the only slot?
(defmethod class-fun3 ((b class-b))
"Even More fun with class B."
'moose)
(defmethod class-fun3 ((ab class-ab))
"Even More fun with class AB."
(call-next-method))
(if (eq (class-fun3 ab) 'moose)
nil
(error "Call next method MI check failed."))
;; Try the self referencing test
(oset a self a)
;;; Test the BEFORE, PRIMARY, and AFTER method tags.
;;
(defvar class-fun-tag-state nil)
(defmethod class-fun-tag :PRIMARY ((a class-a))
"Tagging fun primary A."
(unless (eq class-fun-tag-state 'before-generic)
(error "BEFORE generic not called before PRIMARY"))
(setq class-fun-tag-state 'primary-method))
(defmethod class-fun-tag :BEFORE ((a class-a))
"Tagging fun before A."
(unless (eq class-fun-tag-state nil)
(error "BEFORE method not called first"))
(setq class-fun-tag-state 'before-method))
(defmethod class-fun-tag :AFTER ((a class-a))
"Tagging fun after A."
(unless (eq class-fun-tag-state 'primary-generic)
(error "AFTER not called after PRIMARY generic"))
(setq class-fun-tag-state 'after-method))
(defmethod class-fun-tag :PRIMARY (a)
"Generic untyped primary for A."
(unless (eq class-fun-tag-state 'primary-method)
(error "PRIMARY generic not called after BEFORE method"))
(setq class-fun-tag-state 'primary-generic))
(defmethod class-fun-tag :BEFORE (a)
"Generic untyped before for A."
(unless (eq class-fun-tag-state 'before-method)
(error "BEFORE generic not called first"))
(setq class-fun-tag-state 'before-generic))
(defmethod class-fun-tag :AFTER (a)
"Generic untyped after for A."
(unless (eq class-fun-tag-state 'after-method)
(error "AFTER generic not called after PRIMARY method"))
(setq class-fun-tag-state 'after-generic))
(let ((class-fun-tag-state nil))
(condition-case er
(progn
(class-fun-tag a)
(unless (eq class-fun-tag-state 'after-generic)
(error "AFTER generic not called last."))
)
(error
(if (eq (car er) 'error)
(error (car (cdr er)))
(error "%S" er)))))
;;; Test initialization methods
;;
(defmethod initialize-instance ((a class-a) &rest slots)
"Initialize the slots of class-a."
(call-next-method)
(if (/= (oref a test-tag) 1)
(error "shared-initialize test failed."))
(oset a test-tag 2))
(defmethod shared-initialize ((a class-a) &rest slots)
"Shared initialize method for class-a."
(call-next-method)
(oset a test-tag 1))
(let ((ca (class-a "class act")))
(if (/= (oref ca test-tag) 2)
(error "initialize-instance test failed."))
)
;;; Perform slot testing
;;
(if (and (oref ab water)
(oref ab land)
(oref ab amphibian))
nil
(error "Slot checks failed"))
(defmethod slot-missing ((ab class-ab) &rest foo)
"If a slot in AB is unbound, return something cool. FOO."
'moose)
(if (eq (oref ab ooga-booga) 'moose)
nil
(error "Missing slot override failed."))
(condition-case nil
(progn
(oref a ooga-booga)
(error "No invalid slot error thrown."))
(invalid-slot-name nil))
(slot-makeunbound a 'water)
(if (slot-boundp a 'water)
(error "Slot makeunbound failed slot-bound-p test"))
(if (and (slot-exists-p a 'water)
(not (slot-exists-p a 'moose)))
nil
(error "Slot exists-p failed"))
(condition-case nil
(progn
(oref a water)
(error ""))
(unbound-slot nil)
(error (error "Oref of unbound slot succeeded.")))
(defmethod slot-unbound ((a class-a) &rest foo)
"If a slot in A is unbound, ignore FOO."
'moose)
(if (eq (oref a water) 'moose)
nil
(error "Unbound slot reference failed."))
(oset a water 'moose)
(if (eq (oref a water) 'moose)
nil
(error "Oset of unbound failed."))
(if (not (eq (oref a water) (oref-default a water)))
nil
(error "oref/oref-default comparison failed."))
(oset-default (object-class a) water 'moose)
(if (eq (oref a water) (oref-default a water))
nil
(error "oset-default -> oref/oref-default comparison failed."))
;; Slot type checking
(condition-case nil
(progn
(oset ab water "a string, not a symbol")
(error "Slot set to invalid type successfully."))
(invalid-slot-type nil))
(condition-case nil
(progn
(oset ab classslot "a string, not a symbol")
(error "Slot set to invalid type successfully."))
(invalid-slot-type nil))
(condition-case nil
(progn
(class-a "broken-type-a" :water "a string not a symbol")
(error "Slot set to invalid type at creation successfully."))
(invalid-slot-type nil))
;; Test out class allocated slots
(defvar aa (class-a "another"))
(oset aa classslot 'moose)
(if (eq (oref a classslot) (oref aa classslot))
nil
(error "Class slots are tracking between objects"))
;;; Test function type in a class
;;
(defclass class-typep ()
((slot1 :type function
:initform <
)
(slot2 :type integer
:initform (lambda () 1)
)
(slot4 :type function
:initform (lambda-default () 2)
)
)
"Test different types in a class.")
(defvar ct (class-typep "foo"))
;;; Inheritance status
;;
(if (and
(child-of-class-p class-ab class-a)
(child-of-class-p class-ab class-b)
(obj-of-class-p a class-a)
(obj-of-class-p ab class-a)
(obj-of-class-p ab class-b)
(obj-of-class-p ab class-ab)
(eq (class-parents class-a) nil)
(equal (class-parents class-ab) '(class-a class-b))
(same-class-p a class-a)
(class-a-p a)
(not (class-a-p ab))
(class-a-child-p a)
(class-a-child-p ab)
(not (class-a-p "foo"))
(not (class-a-child-p "foo"))
)
nil
(error "Inheritance tests: failed"))
;;; Slot parameter testing
;;
(defclass class-c ()
((slot-1 :initarg :moose
:initform moose
:type symbol
:allocation :instance
:documentation "Fisrt slot testing slot arguments."
:custom symbol
:label "Wild Animal"
:group borg
:protection public)
(slot-2 :initarg :penguin
:initform "penguin"
:type string
:allocation :instance
:documentation "Second slot testing slot arguments."
:custom string
:label "Wild bird"
:group vorlon
:accessor get-slot-2
:protection private)
)
(:custom-groups (foo))
"A class for testing slot arguments."
)
(defvar t1 (class-c "C1"))
(if (not (and (eq (oref t1 slot-1) 'moose)
(eq (oref t1 :moose) 'moose)))
(error "Initialization of slot failed."))
(condition-case nil
(progn
(oref t1 slot-2)
(error "Reference of private slot passed."))
(invalid-slot-name nil))
(if (not (string= (get-slot-2 t1) "penguin"))
(error "Accessor to private slot returned bad value."))
(condition-case nil
(progn
(class-c "C2" :moose "not a symbol")
(error "A string was set on a symbol slot during init."))
(invalid-slot-type nil))
;;; eieio-instance-inheritor
;; Test to make sure this works.
(defclass II (eieio-instance-inheritor)
((slot1 :initform 1)
(slot2)
(slot3))
"Instance Inheritor test class.")
(defvar II1 (II "II Test."))
(oset II1 slot2 'cat)
(defvar II2 (clone II1 "II2 Test."))
(oset II2 slot1 'moose)
(defvar II3 (clone II2 "II3 Test."))
(oset II3 slot3 'penguin)
(cond ((not (eq (oref II3 slot1) 'moose))
(error "Instance inheritor: Level one inheritance failed."))
((not (eq (oref II3 slot2) 'cat))
(error "Instance inheritor: Level two inheritance failed."))
((not (eq (oref II3 slot3) 'penguin))
(error "Instance inheritor: Level zero inheritance failed."))
(t t))
;;; Test the persistent object, and object-write by side-effect.
;;
(defclass PO (eieio-persistent)
((slot1 :initarg :slot1
:initform 2)
(slot2 :initarg :slot2
:initform "foo"))
"A Persistent object with two initializable slots.")
(defvar PO1 (PO "persist" :slot1 4 :slot2 "testing"
:file (concat default-directory "test-p.el")))
(eieio-persistent-save PO1)
(eieio-persistent-read "test-p.el")
;;; Test the instance tracker
;;
(defclass IT (eieio-instance-tracker)
((tracking-symbol :initform IT-list)
(slot1 :initform 'die))
"Instance Tracker test object.")
(defvar IT-list nil)
(defvar IT1 (IT "trackme"))
(if (not (eieio-instance-tracker-find 'die 'slot1 'IT-list))
(error "Instance tracker lost an instance."))
(delete-instance IT1)
(if (eieio-instance-tracker-find 'die 'slot1 'IT-list)
(error "Instance tracker delete failed."))
(message "All tests passed.")
(provide 'eieio-tests)
;;; eieio-tests.el ends here
|