File: tests.lisp

package info (click to toggle)
cl-anaphora 20190828.git018590d-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 104 kB
  • sloc: lisp: 596; makefile: 2
file content (427 lines) | stat: -rw-r--r-- 7,239 bytes parent folder | download | duplicates (2)
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
;;;; Anaphora: The Anaphoric Macro Package from Hell
;;;;
;;;; This been placed in Public Domain by the author,
;;;; Nikodemus Siivola <nikodemus@random-state.net>

(defpackage :anaphora-test
  (:use :cl :anaphora :rt))

(in-package :anaphora-test)

(deftest alet.1
    (alet (1+ 1)
      (1+ it))
  3)

(deftest alet.2
    (alet (1+ 1)
      it
      (1+ it))
  3)

(deftest slet.1
    (let ((x (list 1 2 3)))
      (slet (car x)
	(incf it) (values it x)))
  2 (2 2 3))

(deftest aand.1
    (aand (+ 1 1)
	  (+ 1 it))
  3)

(deftest aand.2
    (aand 1 t (values it 2))
  1 2)

(deftest aand.3
    (let ((x 1))
      (aand (incf x) t t (values t it)))
  t 2)

(deftest aand.4
    (aand 1 (values t it))
  t 1)

#+(or)
;;; bug or a feature? forms like this expand to
;;;
;;; (let ((it (values ...))) (and it ...))
;;;
(deftest aand.5
    (aand (values nil t) it)
  nil t)

(deftest sor.1
    (let ((x (list nil)))
      (sor (car x)
	   (setf it t))
      x)
  (t))

(deftest aif.1
    (aif (+ 1 1)
	 (+ 1 it)
	 :never)
  3)

(deftest aif.2
    (let ((x 0))
      (aif (incf x)
	   it
	   :never))
  1)

(deftest aif.3
    (let ((x 0))
      (aif (eval `(and ,(incf x) nil))
	   :never
	   (list it x)))
  (nil 1))

(deftest sif.1
    (let ((x (list nil)))
      (sif (car x)
	   (setf it :oops)
	   (setf it :yes!))
      (car x))
  :yes!)

(deftest sif.2
    (let ((x (list t)))
      (sif (car x)
	   (setf it :yes!)
	   (setf it :oops))
      (car x))
  :yes!)

(deftest sif.3
    (sif (list 1 2 3)
	 (sif (car it)
	      (setf it 'a)
	      :foo))
  a)

(deftest sif.4
    (progn
      (defclass sif.4 ()
	((a :initform (list :sif))))
      (with-slots (a)
	  (make-instance 'sif.4)
	(sif a
	     (sif (car it)
		  it))))
  :sif)

(deftest asif.1
    (let ((x (list 0)))
      (asif (incf (car x))
	    it
	    (list :oops it)))
  1)

(deftest asif.2
    (let ((x (list nil)))
      (asif (car x)
	    (setf x :oops)
	    (setf it :yes!))
      x)
  (:yes!))

(deftest awhen.1
    (let ((x 0))
      (awhen (incf x)
	(+ 1 it)))
  2)

(deftest awhen.2
    (let ((x 0))
      (or (awhen (not (incf x))
	    t)
	  x))
  1)

(deftest swhen.1
    (let ((x 0))
      (swhen x
	(setf it :ok))
      x)
  :ok)

(deftest swhen.2
    (let ((x nil))
      (swhen x
	(setf it :oops))
      x)
  nil)

(deftest sunless.1
    (let ((x nil))
      (sunless x
	(setf it :ok))
      x)
  :ok)

(deftest sunless.2
    (let ((x t))
      (sunless x
	(setf it :oops))
      x)
  t)

(deftest acase.1
    (let ((x 0))
      (acase (incf x)
	(0 :no)
	(1 (list :yes it))
	(2 :nono)))
  (:yes 1))

(deftest scase.1
    (let ((x (list 3)))
      (scase (car x)
	(0 (setf it :no))
	(3 (setf it :yes!))
	(t (setf it :nono)))
      x)
  (:yes!))

(deftest aecase.1
    (let ((x (list :x)))
      (aecase (car x)
	(:y :no)
        (:x (list it :yes))))
  (:x :yes))

(deftest aecase.2
    (nth-value 0 (ignore-errors
		   (let ((x (list :x)))
		     (secase (car x)
			     (:y :no)))
		   :oops))
  nil)

(deftest secase.1
    (let ((x (list :x)))
      (secase (car x)
	      (:y (setf it :no))
	      (:x (setf it :yes)))
      x)
  (:yes))

(deftest secase.2
    (nth-value 0 (ignore-errors
		   (let ((x (list :x)))
		     (secase (car x)
			     (:y (setf it :no)))
		     :oops)))
  nil)

(deftest accase.1
    (let ((x (list :x)))
      (accase (car x)
	      (:y :no)
	      (:x (list it :yes))))
  (:x :yes))

(deftest accase.2
    (let ((x (list :x)))
      (handler-bind ((type-error (lambda (e) (store-value :z e))))
	(accase (car x)
		(:y (setf x :no))
		(:z (setf x :yes))))
      x)
  :yes)

(deftest accase.3
    (let ((x (list :x)))
      (accase (car x)
	      (:x (setf it :foo)))
      x)
  (:x))

(deftest sccase.1
    (let ((x (list :x)))
      (sccase (car x)
	      (:y (setf it :no))
	      (:x (setf it :yes)))
      x)
  (:yes))

(deftest sccase.2
    (let ((x (list :x)))
      (handler-bind ((type-error (lambda (e) (store-value :z e))))
	(sccase (car x)
		(:y (setf it :no))
		(:z (setf it :yes))))
      x)
  (:yes))

(deftest atypecase.1
    (atypecase 1.0
       (integer (+ 2 it))
       (float (1- it)))
  0.0)

(deftest atypecase.2
    (atypecase "Foo"
       (fixnum :no)
       (hash-table :nono))
  nil)

(deftest stypecase.1
    (let ((x (list 'foo)))
      (stypecase (car x)
	 (vector (setf it :no))
	 (symbol (setf it :yes)))
      x)
  (:yes))

(deftest stypecase.2
    (let ((x (list :bar)))
      (stypecase (car x)
	 (fixnum (setf it :no)))
      x)
  (:bar))

(deftest aetypecase.1
    (aetypecase 1.0
       (fixnum (* 2 it))
       (float (+ 2.0 it))
       (symbol :oops))
  3.0)

(deftest aetypecase.2
    (nth-value 0 (ignore-errors
		   (aetypecase 1.0
		       (symbol :oops))))
  nil)

(deftest setypecase.1
    (let ((x (list "Foo")))
      (setypecase (car x)
	  (symbol (setf it :no))
	  (string (setf it "OK"))
	  (integer (setf it :noon)))
      x)
  ("OK"))

(deftest setypecase.2
    (nth-value 0 (ignore-errors
		   (setypecase 'foo
		       (string :nono))))
  nil)

(deftest actypecase.1
    (actypecase :foo
       (string (list :string it))
       (keyword (list :keyword it))
       (symbol (list :symbol it)))
  (:keyword :foo))

(deftest actypecase.2
    (handler-bind ((type-error (lambda (e) (store-value "OK" e))))
      (actypecase 0
	 (string it)))
  "OK")

(deftest sctypecase.1
    (let ((x (list 0)))
      (sctypecase (car x)
	 (symbol (setf it 'symbol))
	 (bit (setf it 'bit)))
      x)
  (bit))

(deftest sctypecase.2
    (handler-bind ((type-error (lambda (e) (store-value "OK" e))))
      (let ((x (list 0)))
	(sctypecase (car x)
	  (string (setf it :ok)))
	x))
  (:ok))

(deftest acond.1
    (acond (:foo))
  :foo)

(deftest acond.2
    (acond ((null 1) (list :no it))
	   ((+ 1 2) (list :yes it))
	   (t :nono))
  (:yes 3))

(deftest acond.3
    (acond ((= 1 2) :no)
	   (nil :nono)
	   (t :yes))
  :yes)

;; Test COND with multiple forms in the implicit progn.
(deftest acond.4
    (let ((foo))
      (acond ((+ 2 2) (setf foo 38) (incf foo it) foo)
	     (t nil)))
  42)

(deftest scond.1
    (let ((x (list nil))
	  (y (list t)))
      (scond ((car x) (setf it :nono))
	     ((car y) (setf it :yes)))
      (values x y))
  (nil)
  (:yes))

(deftest scond.2
    (scond ((= 1 2) :no!))
  nil)

(deftest aprog.1
    (aprog1 :yes
        (unless (eql it :yes) (error "Broken."))
      :no)
  :yes)

(deftest aif.sif.1
    (sif 1 (aif it it))
  1)

(deftest aif.sif.2
    (aif 1 (sif it it))
  1)

(deftest aif.sif.3
    (aif (list 1 2 3)
        (sif (car it)
             (setf it 'a)
             :foo))
  a)

(deftest alet.slet.1
    (slet 42 (alet 43 (slet it it)))
  43)


(defun elt-like (index seq)
  (elt seq index))

(define-setf-expander elt-like (index seq)
  (let ((index-var (gensym "index"))
	(seq-var (gensym "seq"))
	(store (gensym "store")))
    (values (list index-var seq-var)
	    (list index seq)
	    (list store)
	    `(if (listp ,seq-var)
		 (setf (nth ,index-var ,seq-var) ,store)
		 (setf (aref ,seq-var ,index-var) ,store))
	    `(if (listp ,seq-var)
		 (nth ,index-var ,seq-var)
		 (aref ,seq-var ,index-var)))))

(deftest symbolic.setf-expansion.1
    (let ((cell (list nil)))
      (sor (elt-like 0 cell) (setf it 1))
      (equal cell '(1)))
  t)