-
Notifications
You must be signed in to change notification settings - Fork 1
/
iterate-test.lisp
2108 lines (1798 loc) · 61.1 KB
/
iterate-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
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
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;;; Test cases for Iterate.
;;; Copyright (c) 2003 Andreas Fuchs <[email protected]>
;;; Copyright (c) 2004-2007 Joerg Hoehle <[email protected]>
;;; License:
;; 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.
;;; Commentary:
;; Although growing, this testsuite does not yet cover every documented
;; feature of Iterate.
(cl:defpackage #:iterate.test
(:import-from #+sbcl #:sb-rt
#-sbcl #:regression-test
#:*expected-failures*
#-sbcl #:*expanded-eval*
#:*compile-tests*)
(:import-from #:iterate
#:deprecation-warning)
(:use #:cl #:iterate
#+sbcl #:sb-rt
#-sbcl #:regression-test))
(cl:in-package #:iterate.test)
(rem-all-tests)
;; This is here to document which tests are failing at the time of
;; writing. It's not used directly here, but the tests of the
;; iterate-compat package of hu.dwim.reiterate expect it.
(defvar *tests-expected-to-fail*
'(always.finally
never.finally
thereis.finally
bug/walk.2
bug/collect-at-beginning
#+(or clozure ecl clisp cmucl clasp)
bug/previously-initially.1
IN-STREAM.2
#+(or allegro ecl) code-movement.else
#+(or allegro ecl) code-movement.finally
#+(or allegro ecl) code-movement.finally-protected
#+cmucl DSETQ.3
#+cmucl FINDING.SUCH-THAT.NEST.2
#+cmucl UNTIL.1
#+cmucl COLLECT.1
#+clasp SETF.4
))
(deftest dsetq.1
(let (x y)
(dsetq (x y) (list* 4 5 6))
(list x y))
(4 5))
(deftest dsetq.2
(let (x y)
(dsetq (x nil y) (list* 4 5 6 7))
(list x y))
(4 6))
(deftest dsetq.3
(let ((a '((1 2) 3)) b)
(dsetq (a b) a)
(values a b))
(1 2) 3)
(deftest dsetq.destructuring.1
(let (x y)
(dsetq (x . y) (list* 4 5 6))
(list x y))
(4 (5 . 6)))
(deftest dsetq.destructuring.2
(let (x y z)
(dsetq (x nil (y . z)) (list* 4 5 '(6 7 . 8) 9))
(list x y z))
(4 6 (7 . 8)))
(deftest dsetq.values.1
(let (x y)
(dsetq (values x y) (values 1 'a))
(list x y))
(1 a))
(deftest dsetq.values.2
(let (x y)
(dsetq (values x nil y) (values 1 'a "c"))
(list x y))
(1 "c"))
(deftest dsetq.values.3
(let (x)
(dsetq (values nil (nil . x)) (values 1 '(a b . c)))
x)
(b . c))
(deftest dsetq.values.4
(let (x y z) (dsetq (values nil x (y z))
(values 1 'a '(b c))) (list x y z))
(a b c))
;;; test that use of the deprecated "COUNT" synonym for "COUNTING"
;;; properly raises a warning, but WON'T raise it twice.
(deftest count-deprecation.1
(let ((retval (list nil)))
(declare (special retval))
(handler-bind ((deprecation-warning
#'(lambda (w)
(declare (special retval))
(setf (car retval) t)
(muffle-warning w))))
(macroexpand '(iter (repeat 9) (count 1))))
(list retval iterate::*deprecated-clause-names*))
((t) nil))
;;; the deprecation warning should only appear once -- this
;;; test checks that.
(deftest count-deprecation.2
(let ((retval (list nil)))
(declare (special retval))
(handler-bind ((deprecation-warning
#'(lambda (w)
(declare (special retval))
(setf (car retval) t)
(muffle-warning w))))
(macroexpand '(iter (repeat 9) (count 1))))
(list retval iterate::*deprecated-clause-names*))
((nil) nil))
(deftest repeat.1
(iter (repeat 9) (counting 1))
9)
(deftest repeat.2
(iter (repeat 2.5s0) (counting t))
3)
(deftest repeat.3
(iter (repeat -1.5f0) (counting t))
0)
(deftest locally.1
(iterate (for i in '(1 2 3)) (repeat 2)
(locally (collect i) (collect 0)))
(1 0 2 0))
(deftest locally.2
(iterate (for i in '(1 2 3)) (repeat 2)
(locally
(declare (optimize safety))
(declare (fixnum i)) (collect i)))
(1 2))
(deftest always.1
(iter (repeat 3) (always 2))
2)
(deftest always.2
(iter (repeat 0) (always 2))
t)
(deftest always.3
(iter (for i in '()) (always i))
t)
(deftest always.finally
(with-output-to-string (*standard-output*)
(iter (repeat 1)
;; When ALWAYS fails, it RETURN-FROM's from the block and
;; thus skips FINALLY.
(always nil)
(finally (princ 42))))
"42")
(deftest never.finally
(with-output-to-string (*standard-output*)
(iter (repeat 1)
;; See comment at ALWAYS.4
(never t)
(finally (princ 42))))
"42")
(deftest thereis.finally
(with-output-to-string (*standard-output*)
(iter (repeat 1)
;; See comment at ALWAYS.4
(thereis 43)
(finally (princ 42))))
"42")
(deftest always.never.1
(iterate (repeat 2)
(always 2)
(never nil))
2)
(deftest always.never.2
(iter (for x in '(b (2 . a)))
(if (consp x) (always (car x)) (always x))
(never nil))
2)
(deftest thereis.finally.1
(iter (repeat 3) (thereis nil) (finally (prin1 "hi")))
nil)
(deftest thereis.finally.2
(with-output-to-string (*standard-output*)
(iter (repeat 3) (thereis nil) (finally (princ "hi"))))
"hi")
(deftest thereis.finally.3
(iter (repeat 3) (thereis nil) (finally (return 2)))
2)
(deftest thereis.finally-protected.1
(iter (repeat 3) (thereis 4) (finally-protected (prin1 "hi")))
4)
(deftest thereis.finally-protected.2
(with-output-to-string (*standard-output*)
(iter (repeat 3) (thereis 4) (finally-protected (princ "hi"))))
"hi")
(deftest finding.such-that.2
(iter (for i in '(7 -4 2 -3 4))
(if (plusp i)
(finding i such-that (evenp i))
(finding (- i) such-that (oddp i))))
2)
(deftest finding.such-that.nest.1
(iter (for i in '(1 2 3))
(finding (1+ i)
such-that #'(lambda (x)
(declare (ignore x))
(collect (- i) into m))))
2) ; not -1 as some old version did
(deftest finding.such-that.nest.2
(iter (for i in '(1 2 3))
(finding (1+ i)
such-that #'(lambda (x)
(finding (- x)
such-that #'(lambda (x) x nil)
into n)
t)
into m)
(finally (return (values m n))))
2 nil) ; not -2 nil as some old version did
(deftest finding.thereis.1
(iterate (for x in '(a 7 (-4 -3)))
(thereis (consp x))
(finding x such-that (numberp x)))
7)
(deftest finding.thereis.2
(iterate (for x in '(a (-4 -3) 7))
(thereis (consp x))
(finding x such-that (numberp x)))
t)
(deftest finding.thereis.3
(iterate (for x in '(a #\b))
(thereis (consp x))
(finding x such-that (numberp x)))
nil)
(deftest finding.always.1
(iterate (for x in '(-4 -2 -3))
(always (numberp x))
(finding x such-that (plusp x) on-failure t))
t)
(deftest finding.always.2
(iterate (for x in '(-4 7 -2 -3))
(always (numberp x))
(finding x such-that (plusp x) on-failure t))
7)
(deftest finding.always.3
(iterate (for x in '(-4 c -3))
(always (numberp x))
(finding x such-that (plusp x) on-failure t))
nil)
(defun setup-hash-table (hash)
(dotimes (i (random 100)) (declare (ignorable i))
(setf (gethash (random 10000) hash) (random 10000))
(setf (gethash (gensym) hash) (gensym))))
(deftest in-hashtable.keys
(let* ((hash (make-hash-table))
(all-entries (progn (setup-hash-table hash) '()))
(generated-entries
(iterate (for (key) in-hashtable hash)
(collect key))))
(maphash (lambda (key value) value (push key all-entries)) hash)
(= (length all-entries)
(length generated-entries)
(length (union all-entries generated-entries
:test (hash-table-test hash)))))
t)
(deftest in-hashtable.items.1
(let ((items nil)
(hash (make-hash-table)))
(setup-hash-table hash)
(maphash (lambda (key item) key (push item items)) hash)
(set-difference items
(iterate (for (key item) in-hashtable hash)
(declare (ignore key))
(collect item))))
nil)
(deftest in-hashtable.items.2
(let ((items nil)
(hash (make-hash-table)))
(setup-hash-table hash)
(maphash (lambda (key item) key (push item items)) hash)
(set-difference items
(iterate (for (nil item) in-hashtable hash)
(collect item))))
nil)
(deftest in-hashtable.1
(let* ((hash (make-hash-table))
(all-entries (progn (setup-hash-table hash) '()))
(generated-entries
(iterate (as (key item) in-hashtable hash)
(collect (cons key item)))))
(maphash #'(lambda (key value) (push (cons key value) all-entries)) hash)
(= (length all-entries)
(length generated-entries)
(length (union all-entries generated-entries
:key #'car :test (hash-table-test hash)))))
t)
(deftest in-hashtable.destructuring.1
(let ((hash (make-hash-table :test #'equal))
(entries '(((a . b) . (1 . 2)) (("c" . 3) . (6 . "7")))))
(iterate (for (k . v) in entries)
(setf (gethash k hash) v))
(sort
(iterate (for ((nil . k2) (v1 . v2)) in-hashtable hash)
(always (numberp v1))
(while k2)
(collect (cons v1 k2) into vals)
(finally (return vals)))
#'< :key #'car))
((1 . b) (6 . 3)))
(deftest in-package.internals
(let ((syms nil)
(iter-syms (iterate (for sym in-package *package* :external-only nil)
(collect sym))))
(do-symbols (sym *package* nil)
(push sym syms))
(list
(set-difference syms iter-syms :test #'eq)
(set-difference iter-syms syms)))
(()()))
(deftest in-package.externals.1
(let ((syms nil)
(iter-syms (iterate (for sym in-package '#:cl-user external-only t)
(collect sym))))
(do-external-symbols (sym '#:cl-user nil)
(push sym syms))
(list
(set-difference syms iter-syms :test #'eq)
(set-difference iter-syms syms)))
(()()))
(deftest in-package.externals.2
(let ((sym-count 0))
(do-external-symbols (sym '#:iterate) (declare (ignore sym))
(incf sym-count))
(= sym-count
(iterate (for () in-package '#:iterate external-only t)
(count 1))))
t)
(deftest in-package.generator
(let ((syms nil)
(iter-syms (iterate (generate sym in-package *package*)
(collect (next sym)))))
(do-symbols (sym *package*)
(push sym syms))
(list
(set-difference syms iter-syms :test #'eq)
(set-difference iter-syms syms)))
(()()))
(deftest in-packages.external
(let ((syms nil)
(iter-syms (iterate (as (sym access package) in-packages '(#:cl-user)
:having-access (:external))
(collect sym))))
(do-external-symbols (sym '#:cl-user nil)
(push sym syms))
(list
(set-difference syms iter-syms :test #'eq)
(set-difference iter-syms syms)))
(()()))
(deftest in-packages.generator-access
(let ((iter-syms (iterate (generate (sym access) in-packages (list (find-package "COMMON-LISP")))
(repeat 1)
(next sym)
(collect (list sym access)))))
(equal (multiple-value-list
(find-symbol (symbol-name (caar iter-syms)) "COMMON-LISP"))
(car iter-syms)))
t)
(deftest in-stream.1
(iter (as x in-stream (make-string-input-stream "#xa()2"))
(collect x))
(10 () 2))
(deftest in-stream.previous
(iter (for x in-stream (make-string-input-stream "#xa()2"))
(as p previous x :initially 1)
(collect p))
(1 10 ()))
(deftest in-stream.2
;; This fails in cmucl, sbcl and gcl, because string-input-streams
;; are always open, even after close.
(let ((s (make-string-input-stream "(")))
(ignore-errors
(iter (for x in-stream s :using #'read)))
(open-stream-p s))
nil)
(deftest in-stream.3
(iter (for c in-stream (make-string-input-stream "235")
:using #'read-char)
(accumulating (digit-char-p c) by #'+ initial-value 0))
10)
(deftest in-stream.reducing
(iter (with s = (make-string-input-stream "(+ 2)(+ 10)(- 5)(+ 6)"))
(for (op num) in-stream s)
(reducing num :by op :initial-value 0))
13)
(deftest in-stream.accumulating
(iter (with s = (make-string-input-stream "(+ 2)(+ 10)(- 5)(+ 6)"))
(for (op num) in-stream s)
(accumulating num :by op :initial-value 0))
-1) ; (6 + (5 - (10 + (2 + 0))))
(deftest in-stream.generate
(iter (with s = (make-string-input-stream "2 + 10 - 5 + 6"))
(with start = (read s))
(generate e in-stream s using #'read)
(as op = (next e))
(for arg = (next e))
(reducing arg by op initial-value start))
13)
(deftest in-stream.reiter
(let ((s (make-string-input-stream "1 2 3 4 5")))
(iter (for n below 2)
(for line in-stream s))
(iter (for n below 2)
(for line in-stream s)
(collect line)))
(3 4))
(deftest reducing.0
(iter (with expr = '(2 + 10 - 5 + 6))
(with start = (pop expr))
(for (op arg) on expr by #'cddr)
(reducing arg by op initial-value start))
13)
(deftest until.1
(iter (with rest = 235) (with digit = 0)
(multiple-value-setq (rest digit) (floor rest 10))
(sum digit into sum)
(multiplying digit into product)
(until (zerop rest))
(finally (return (values sum product))))
10 30)
(deftest until.2
(iter (for i in-sequence '#(1 2 -3 6))
(until (zerop (sum i into x)))
(multiplying i))
2)
(deftest while.1
(iter (for i in-sequence '#(1 2 -3 6))
(while (< (length (collect i)) 2)))
(1 2))
(deftest else.1
(iter (repeat 0)
(else (return 1)))
1)
(deftest else.2
(iter (for i below -3)
(else (return 2)))
2)
;;; tests for my examples:
(eval-when (:compile-toplevel :load-toplevel :execute)
(defparameter *an-alist* '((a . 2) (b . 3) (zero . 10) (c . 4) (one . 20) (d . 5) (e . 99)))
(defparameter *list-of-lists* (loop for i from 0 to 100
collect (loop for len from 0 to (random 20)
collect len)))
(defun longest-list (list1 list2)
(if (< (length list2) (length list1))
list1
list2)))
(deftest collect.1
(iterate (as (key . item) in *an-alist*)
(collect key into keys)
(collect item into items)
(finally (return (values keys items))))
#.(loop for (key . nil) in *an-alist*
collect key)
#.(loop for (key . item) in *an-alist*
collect item))
(deftest generate.1
(iterate (generate i from 0 to 6)
(for (key . value) in *an-alist*)
(when (>= value 10)
(collect (cons key (next i)))))
#.(loop with counter = 0
for (key . value) in *an-alist*
when (>= value 10)
collect (cons key (prog1 counter (incf counter)))))
(deftest find-longest-list.1
(iterate (for elt in *list-of-lists*)
(finding elt maximizing (length elt)))
#.(reduce #'longest-list *list-of-lists*))
(deftest find-longest-list.2
(iterate (for elt in *list-of-lists*)
(finding elt maximizing (length elt) into (e m))
(finally (return m)))
#.(reduce #'max *list-of-lists* :key #'length))
(deftest find-longest-list.3
(iterate (for elt in *list-of-lists*)
(finding elt maximizing #'length))
#.(reduce #'longest-list *list-of-lists*))
(deftest find-longest-list.4
(iterate (for elt in *list-of-lists*)
(finding elt maximizing #'length into (e m))
(finally (return m)))
#.(reduce #'max *list-of-lists* :key #'length))
(deftest maximize.1
(iterate (for elt in *list-of-lists*)
(maximizing (length elt) into m)
(finally (return m)))
#.(reduce #'max *list-of-lists* :key #'length))
(deftest maximize.2
(iterate (for elt in *list-of-lists*)
(maximize (length elt)))
#.(reduce #'max *list-of-lists* :key #'length))
(deftest finding.minimizing.1
(iterate (for elt in *list-of-lists*)
(finding elt minimizing #'length into (e m))
(finally (return m)))
#.(reduce #'min *list-of-lists* :key #'length))
(deftest minimize.1
(iterate (for elt in *list-of-lists*)
(minimizing (length elt) into m)
(finally (return m)))
#.(reduce #'min *list-of-lists* :key #'length))
(deftest minimize.2
(iterate (for elt in *list-of-lists*)
(minimize (length elt)))
#.(reduce #'min *list-of-lists* :key #'length))
(deftest subblocks.maximize.1
(iter outer (for elt in *list-of-lists*)
(iterate running (for e in elt)
(in outer (maximize e)))
(maximizing (length elt)))
#.(reduce #'max *list-of-lists* :key #'length))
(deftest subblocks.minimize.1
(iter outer (for elt in *list-of-lists*)
(minimizing (length elt))
(iterate running (for e in elt)
(in outer (minimize e))))
0)
(deftest maximize.3
(iterate (for i in-vector '#(-3))
(maximize i))
-3)
(deftest minimize.3
(iterate (as i in-vector '#(3))
(minimize i))
3)
(deftest maximize.multiple
(iter (as i from 3 downto -3 by 2) (maximize i)
(for j from -1) (maximizing j))
3)
(deftest minimize.multiple
(iter (as i from -3 to 3 by 2) (minimize i into x)
(for j downfrom -1) (minimizing j into x)
(finally (return x)))
-4)
(deftest accumulate.1
(iter (for c in-string "235")
(declare (type character c))
(accumulate (digit-char-p c) by '* initial-value 1))
30)
(deftest accumulate.2
(iter (for c in-sequence "235")
(accumulating (digit-char-p c) by #'* initial-value 1))
30)
(deftest accumulate.3
(iter (for c in-sequence "235")
(accumulate (digit-char-p c) by 'cons initial-value 1))
(5 3 2 . 1))
(deftest accumulate.4
(iter (for c in-vector "235")
(accumulating (digit-char-p c) by #'cons))
(5 3 2))
(deftest accumulate.5
(iter (repeat 0)
(accumulating 1 by #'cons))
nil)
(deftest accumulate.6
(iter (repeat 0)
(accumulate 1 by #'cons initial-value 2))
2)
(deftest in-string.downto.1
(iter (for c in-string "235" downto 1)
(accumulate (digit-char-p c) by 'cons))
(3 5))
(deftest in-sequence.downto.1
(iter (for c in-sequence "235" downto 1)
(accumulate (digit-char-p c) by #'cons))
(3 5))
(deftest reducing.1
(iter (for c in-string "235")
(reducing (digit-char-p c) by 'list initial-value 1))
(((1 2) 3) 5))
(deftest reducing.2
(iter (as x index-of-string "235")
(reducing x :by #'list initial-value -1))
(((-1 0) 1) 2))
(deftest reducing.3
(iter (repeat 0)
(reducing 1 #:by 'cons initial-value -1))
-1)
(deftest reducing.4
(iter (for i from 3 to 5)
(reducing i by #'- :initial-value '0))
-12)
(deftest reducing.5
(iter (for x in-vector #(3))
(reducing (cons x x) by #'list))
(3 . 3))
(deftest reducing.6
(iter (for x in-vector (vector 3))
(reducing (cons x x) by #'list :initial-value nil))
(nil (3 . 3)))
;; synonyms (e.g. GENERATING, COLLECTING) didn't work
(deftest generate.destructuring.1
(iter (generate (key . item) in '((a . 1) (b . 2) (c .3)))
(collect (next key))
(collect (next item)))
(a 2 c))
(deftest generating.destructuring.1
(iter (generating (key . item) in '((a . 1) (b . 2) (c .3)))
(collect (next key))
(collect (next item)))
(a 2 c))
(deftest for.generate-t.destructuring.1
(iter (for (key . item) in '((a . 1) (b . 2) (c .3)) :generate t)
(collect (next key))
(collect (next item)))
(a 2 c))
(deftest generate.next.1
(iter (generate c in '(a b c d e f g h i j k l m n o p q))
(for s in '(1 1 2 3 1 0 1 0 2 1))
(collect (next c s)))
(a b d g h h i i k l))
(deftest generate.previous.1
(iter (generate c in '(a b c d e f g h i j k l m n o p q))
(for s in '(1 1 2 3 1 0 1 0 2 1))
(for x = (next c s))
(as y previous x)
(collect (list y x)))
((nil a) (a b) (b d) (d g) (g h) (h h) (h i) (i i) (i k) (k l)))
(deftest generate.next.2
(with-output-to-string (*standard-output*)
(iter (generate i in '(1 2 3 4 5)) (princ (next i 2))))
"24")
(deftest if.1
(iter (generate x in-vector '#(t nil nil t))
(as i from 0)
(if (next x) (collect i)))
(0 3))
(deftest if.2
(iter (generate x in-vector '#(t nil nil t) with-index i)
(if (next x) (collect i)))
(0 3))
(deftest or.1
(iter (generate x in '(a nil nil 1))
(generate y in-vector '#(2 #\c #\d))
(collect (or (next x) (next y))))
(a 2 #\c 1))
(deftest or.2
(iter (generate x in '(a nil nil 1 nil))
(generate y in-sequence '#(2 nil #\c #\d))
(collect (or (next x) (next y) 3)))
(a 2 3 1 #\c))
(deftest setf.1
(iter (generate i from 0 to 3)
(with v = (vector 'a 'b 'c 'd))
(setf (aref v (next i)) i)
(finally (return v)))
#(0 1 2 3))
(deftest setf.2
;; These setf tests fail in CormanLisp 2.0 because ccl does
;; not respect setf evaluation order rules.
(iter (generate i from 0 to 3)
(with v = (vector 'a 'b 'c 'd))
(setf (aref v (next i)) (next i))
(finally (return v)))
#(1 b 3 d))
(deftest setf.3
(iter (generate i in '(0 1 2 3 4 5))
(with v = (vector 'a 'b 'c 'd))
(setf (aref v (next i)) (next i 2))
(finally (return v)))
#(2 b c 5))
(deftest setf.4
(iter (generate i from 0 to 3)
(with v = (vector 'a 'b 'c 'd))
(setf (apply #'aref v (list (next i))) (next i))
(finally (return v)))
#(1 b 3 d))
(deftest after-each.1
(iter (after-each (collecting 0))
(generate i in '(a b c))
(adjoining (next i)))
(a 0 b 0 c 0))
(deftest after-each.2
(iter (with i = 0)
(while (< i 4))
(after-each (incf i)) ; the C programmer's for (;;) loop
(collect i))
(0 1 2 3))
(deftest after-each.3
(iter (with i = 0)
(while (< i 4))
(collect i)
(after-each (incf i)))
(0 1 2 3))
(deftest next-iteration.1
(iter (for i below 10)
(when (oddp i) (next-iteration))
(count t))
5)
(deftest next-iteration.2
(iter (for thing in '(var &optional else &key (test #'eql)))
(collect
(cond ((consp thing) (first thing))
((not (member thing lambda-list-keywords)) thing)
(t (next-iteration)))))
(var else test))
;;;; tests from the documentation:
(deftest collect.2
(iter (for i from 1 to 10)
(collect i))
(1 2 3 4 5 6 7 8 9 10))
(deftest for-in.2
(iter (for el in '(1 2 3 4 5 6 f 7 8 9 a 10))
(if (and (numberp el) (oddp el))
(collect el)))
(1 3 5 7 9))
(deftest for.destructuring.1
(iter (for (key . item) in '((a . 10) (b . 20) (c . 30)))
(for i from 0)
(declare (fixnum i))
(collect (cons i key)))
((0 . a) (1 . b) (2 . c)))
(deftest repeat.0
(with-output-to-string (*standard-output*)
(iter (repeat 100)
(print "I will not talk in class.")))
#.(with-output-to-string (*standard-output*)
(dotimes (i 100)
(declare (ignorable i)) ; cmucl/sbcl complain about (ignore i)
(print "I will not talk in class."))))
;;; for.next.1 and for.do-next.1 used to be broken in older versions;
;;; they didn't WALK their NEXT args.
(deftest for.next.1
(iterate (initially (setq i 0))
(for i next (if (> i 10) (terminate) (1+ i)))
(finally (return i)))
11)
;;; This gave STYLE-WARNINGS for undefined i in old versions.
(deftest for.do-next.1
(iterate (initially (setq i 0))
(as i do-next (if (> i 10) (terminate) (incf i)))
(finally (return i)))
11)
(deftest for.do-next.2
;; INITIALLY not needed because 0 is inferred from type declaration
(iterate (for i do-next (if (> i 7) (terminate) (incf i)))
(declare (type fixnum i))
(finally (return i)))
8)
(deftest for.do-next.3
(iter (for a from 1 to 3)
(for b = (1+ (* a a)))
;; (values ...) is supported, even though (x y) would do
(for (values x y) do-next (dsetq (values x y) (floor b a)))
(collect x) (collect y))
(2 0 2 1 3 1))
(deftest for.next.walk
(iter (repeat 2)
(for x next (progn (after-each (collect 1)) 2))
(collect x))
(2 1 2 1))
(deftest for.do-next.walk
(iter (repeat 2)
(for x do-next (progn (after-each (collect 1)) (dsetq x 2)))
(collect x))
(2 1 2 1))
(deftest for.next.previous
(iter (for i from 2 to 4)
(for x next (progn (after-each (collect i)) (- i)))
(for z previous x initially 0)
(nconcing (list z x)))
(0 -2 2 -2 -3 3 -3 -4 4))
(deftest for.do-next.previous
(iter (for i from 2 to 4)
(for x do-next (progn (setq x (- i)) (after-each (collect i))))
(for z previous x initially 0)
(appending (list z x)))
(0 -2 2 -2 -3 3 -3 -4 4))
(deftest for-nongenerator.1
(iter (for el in '(a b c d))
(generate i upfrom 1)
(if el (collect (cons el (next i)))))
#.(iter (for el in '(a b c d))
(for i upfrom 1)
(if el (collect (cons el i)))))
(deftest for.previous.in
(iter (for el in '(1 2 3 4))
(for pp-el previous el back 2 initially 0)
(collect pp-el))
(0 0 1 2))
(deftest for.previous.type.1
(iter (for el in '(1 2 3 4))
(declare (type integer el))
(for pp-el previous el back 2)
(collect pp-el))
(0 0 1 2))
(deftest for.previous.index-of-string.1
(iter (as x index-of-string "235")
(as p previous x :initially 9)
(collecting p))
(9 0 1))
(deftest for.previous.in-string.with-index
(iter (as x in-string "235" :with-index y)
(as p previous y :initially 9)
(collecting p))
(9 0 1))
(deftest for.previous.index-of-vector
(iter (as x index-of-vector '#(2 3 4 5))
(as p previous x :initially 9 back 2)
(collecting p))
(9 9 0 1))
(deftest for.previous.in-vector.with-index
(iter (as x in-vector '#(2 3 4 5) with-index y)
(as p previous y :initially 9 back 2)
(collecting p))
(9 9 0 1))
(deftest for.previous.var-with-type-declaration
(iter (for i from 1 to 5)
(for (the fixnum i-prev) previous i)
(collect i-prev))
(nil 1 2 3 4))
(deftest for.first.1
(iter (for num in '(20 19 18 17 16))
(for i first num then (1+ i))
(collect i))
(20 21 22 23 24))
(deftest for.initially.1
(iter (with (v z))
(for i initially (length v) then (1+ i))
(collect (cons i z))
(while (evenp i)))
((0) (1)))
(deftest sum.1
(iter (for el in '(100 200 300))
(sum el into x)