forked from kennytilton/cells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.lisp
executable file
·228 lines (177 loc) · 6.94 KB
/
test.lisp
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
;; -*- mode: Lisp; Syntax: Common-Lisp; Package: cells; -*-
;;;
;;; Copyright (c) 1995,2003 by Kenneth William Tilton.
;;;
;;; Permission is hereby granted, free of charge, to any person obtaining a copy
;;; of this software and associated documentation files (the "Software"), to deal
;;; in the Software without restriction, including without limitation the rights
;;; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
;;; copies of the Software, and to permit persons to whom the Software is furnished
;;; to do so, subject to the following conditions:
;;;
;;; The above copyright notice and this permission notice shall be included in
;;; all copies or substantial portions of the Software.
;;;
;;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
;;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
;;; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
;;; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
;;; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
;;; FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
;;; IN THE SOFTWARE.
#| Synapse Cell Unification Notes
- start by making Cells synapse-y
- make sure outputs show right old and new values
- make sure outputs fire when they should
- wow: test the Cells II dictates: no output callback sees stale data, no rule
sees stale data, etc etc
- test a lot of different synapses
- make sure they fire when they should, and do not when they should not
- make sure they survive an evaluation by the caller which does not branch to
them (ie, does not access them)
- make sure they optimize away
- test with forms which access multiple other cells
- look at direct alteration of a caller
- does SETF honor not propagating, as well as a c-ruled after re-calcing
- do diff unchanged tests such as string-equal work
|#
#| do list
-- can we lose the special handling of the .kids slot?
-- test drifters (and can they be handled without creating a special
subclass for them?)
|#
(eval-when (compile load)
(proclaim '(optimize (speed 2) (safety 3) (space 1) (debug 3))))
(in-package :cells)
(defvar *cell-tests* nil)
#+go
(test-cells)
(defun test-cells ()
(loop for test in (reverse *cell-tests*)
do (cell-test-init test)
(funcall test)))
(defun cell-test-init (name)
(print (make-string 40 :initial-element #\!))
(print `(starting test ,name))
(print (make-string 40 :initial-element #\!))
(cell-reset))
(defmacro def-cell-test (name &rest body)
`(progn
(pushnew ',name *cell-tests*)
(defun ,name ()
(cell-reset)
,@body)))
(defmacro ct-assert (form &rest stuff)
`(progn
(print `(attempting ,',form))
(assert ,form () "Error with ~a >> ~a" ',form (list ,@stuff))))
;; test huge number of useds by one rule
(defmodel m-index (family)
()
(:default-initargs
:value (c? (bwhen (ks (^kids))
(apply '+ (mapcar 'value ks))))))
(def-cell-test many-useds
(let ((i (make-instance 'm-index)))
(loop for n below 100
do (push (make-instance 'model
:value (c-in n))
(kids i)))
(trc "index total" (value i))))
(defmodel m-null ()
((aa :initform nil :cell nil :initarg :aa :accessor aa)))
(def-cell-test m-null
(let ((m (make-be 'm-null :aa 42)))
(ct-assert (= 42 (aa m)))
(ct-assert (= 21 (decf (aa m) 21)))
:okay-m-null))
(defmodel m-solo ()
((m-solo-a :initform nil :initarg :m-solo-a :accessor m-solo-a)
(m-solo-b :initform nil :initarg :m-solo-b :accessor m-solo-b)))
(def-cell-test m-solo
(let ((m (make-be 'm-solo
:m-solo-a (c-in 42)
:m-solo-b (c? (* 2 (^m-solo-a))))))
(ct-assert (= 42 (m-solo-a m)))
(ct-assert (= 84 (m-solo-b m)))
(decf (m-solo-a m))
(ct-assert (= 41 (m-solo-a m)))
(ct-assert (= 82 (m-solo-b m)))
:okay-m-null))
(defmodel m-var ()
((m-var-a :initform nil :initarg :m-var-a :accessor m-var-a)
(m-var-b :initform nil :initarg :m-var-b :accessor m-var-b)))
(def-c-output m-var-b ()
(print `(output m-var-b ,self ,new-value ,old-value)))
(def-cell-test m-var
(let ((m (make-be 'm-var :m-var-a (c-in 42) :m-var-b 1951)))
(ct-assert (= 42 (m-var-a m)))
(ct-assert (= 21 (decf (m-var-a m) 21)))
(ct-assert (= 21 (m-var-a m)))
:okay-m-var))
(defmodel m-var-output ()
((cbb :initform nil :initarg :cbb :accessor cbb)
(aa :cell nil :initform nil :initarg :aa :accessor aa)))
(def-c-output cbb ()
(trc "output cbb" self)
(setf (aa self) (- new-value (if old-value-boundp
old-value 0))))
(def-cell-test m-var-output
(let ((m (make-be 'm-var-output :cbb (c-in 42))))
(ct-assert (eql 42 (cbb m)))
(ct-assert (eql 42 (aa m)))
(ct-assert (eql 27 (decf (cbb m) 15)))
(ct-assert (eql 27 (cbb m)))
(ct-assert (eql -15 (aa m)))
(list :okay-m-var (aa m))))
(defmodel m-var-linearize-setf ()
((ccc :initform nil :initarg :ccc :accessor ccc)
(ddd :initform nil :initarg :ddd :accessor ddd)))
(def-c-output ccc ()
(with-deference
(setf (ddd self) (- new-value (if old-value-boundp
old-value 0)))))
(def-cell-test m-var-linearize-setf
(let ((m (make-be 'm-var-linearize-setf
:ccc (c-in 42)
:ddd (c-in 1951))))
(ct-assert (= 42 (ccc m)))
(ct-assert (= 42 (ddd m)))
(ct-assert (= 27 (decf (ccc m) 15)))
(ct-assert (= 27 (ccc m)))
(ct-assert (= -15 (ddd m)))
:okay-m-var))
;;; -------------------------------------------------------
(defmodel m-ruled ()
((eee :initform nil :initarg :eee :accessor eee)
(fff :initform (c? (floor (^ccc) 2)) :initarg :fff :accessor fff)))
(def-c-output eee ()
(print `(output> eee ,new-value old ,old-value)))
(def-c-output fff ()
(print `(output> eee ,new-value old ,old-value)))
(def-cell-test m-ruled
(let ((m (make-be 'm-ruled
:eee (c-in 42)
:fff (c? (floor (^eee) 2)))))
(trc "___Initial TOBE done____________________")
(print `(pulse ,*data-pulse-id*))
(ct-assert (= 42 (eee m)))
(ct-assert (= 21 (fff m)))
(ct-assert (= 36 (decf (eee m) 6)))
(print `(pulse ,*data-pulse-id*))
(ct-assert (= 36 (eee m)))
(ct-assert (= 18 (fff m)) m)
:okay-m-ruled))
(defmodel m-worst-case ()
((wc-x :accessor wc-x :initform (c-input () 2))
(wc-a :accessor wc-a :initform (c? (when (oddp (wc-x self))
(wc-c self))))
(wc-c :accessor wc-c :initform (c? (evenp (wc-x self))))
(wc-h :accessor wc-h :initform (c? (or (wc-c self)(wc-a self))))))
(def-cell-test m-worst-case
(let ((m (make-be 'm-worst-case)))
(trc "___Initial TOBE done____________________")
(ct-assert (eql t (wc-c m)))
(ct-assert (eql nil (wc-a m)))
(ct-assert (eql t (wc-h m)))
(ct-assert (eql 3 (incf (wc-x m))))))