API CHANGE: Removed the OBJECT arg from attribute-value
[clinton/lisp-on-lines.git] / src / attribute-test.lisp
CommitLineData
e7c5f95a 1(in-package :lol-test)
2
3(in-suite lisp-on-lines)
4
5(deftest test-attribute-value ()
6 (eval
7 '(progn
4358148e 8 (define-description attribute-test-description ()
e7c5f95a 9 ((attribute-1 :value "VALUE")
10 (attribute-2 :function (constantly "VALUE"))))
11
12 (deflayer attribute-test)
13
4358148e 14 (define-description attribute-test-description ()
e7c5f95a 15 ((attribute-1 :value "VALUE2")
16 (attribute-2 :function (constantly "VALUE2")))
17 (:in-layer . attribute-test))))
18
4358148e 19 (let ((d (find-description 'attribute-test-description)))
e8d4fa45 20 (dletf (((described-object d) nil))
e7c5f95a 21 (is (equalp "VALUE" (slot-value (find-attribute d 'attribute-1) 'lol::value)))
22
e7c5f95a 23 (with-active-layers (attribute-test)
e8d4fa45 24 (is (equalp (attribute-value (find-attribute d 'attribute-1))
25 (attribute-value (find-attribute d 'attribute-2))))
26 (is (equalp "VALUE2" (attribute-value (find-attribute d 'attribute-1))))))))
e7c5f95a 27
28(deftest test-attribute-property-inheriting ()
29 (test-attribute-value)
30 (eval '(progn
31 (deflayer attribute-property-test)
4358148e 32 (define-description attribute-test-description ()
e7c5f95a 33 ((attribute-1 :label "attribute1")
34 (attribute-2 :label "attribute2"))
35 (:in-layer . attribute-property-test))))
e7c5f95a 36 (with-active-layers (attribute-property-test)
4358148e 37 (let ((d (find-description 'attribute-test-description)))
e8d4fa45 38 (dletf (((described-object d) nil))
e7c5f95a 39
e8d4fa45 40 (is (equalp "VALUE" (slot-value (find-attribute d 'attribute-1) 'lol::value)))
e7c5f95a 41
e8d4fa45 42 (is (equalp "attribute1" (attribute-label (find-attribute d 'attribute-1))))
43 (is (equalp "attribute2" (attribute-label (find-attribute d 'attribute-2))))
e7c5f95a 44
45
e8d4fa45 46 (with-active-layers (attribute-test)
47 (is (equalp (attribute-value (find-attribute d 'attribute-1))
48 (attribute-value (find-attribute d 'attribute-2))))
49 (is (equalp "VALUE2" (attribute-value (find-attribute d 'attribute-1)))))))))
4358148e 50
81d70610 51(deftest (test-attribute-with-different-class :compile-before-run t) ()
4358148e 52 (eval '(progn
53;;;; We cannot ever redefine this class ic think...
54;;; as attributes are also slot meta-objects.
4358148e 55
81d70610 56
57 (define-layered-class
58 test-attribute-class (lol::standard-attribute)
59 ((some-slot :initarg :some-slot
60 :layered t
61 :layered-accessor some-slot)))
62
4358148e 63 (define-description test-attribute-with-different-class-description ()
64 ((attribute-with-different-class :attribute-class test-attribute-class :some-slot "BRILLANT!")))))
65
66 (let* ((d (find-description 'test-attribute-with-different-class-description))
67
68 (a (find-attribute d 'attribute-with-different-class)))
69 (is (eq (class-of a)
70 (find-class 'test-attribute-class)))
71 (is (equalp "BRILLANT!" (some-slot a)))))
72
73
74
e7c5f95a 75
76
77
78