* tests/srfi-26.test: New.
authorMarius Vollmer <mvo@zagadka.de>
Wed, 21 Jan 2004 00:45:48 +0000 (00:45 +0000)
committerMarius Vollmer <mvo@zagadka.de>
Wed, 21 Jan 2004 00:45:48 +0000 (00:45 +0000)
* Makefile.am (SCM_TESTS): Added it.

test-suite/Makefile.am
test-suite/tests/srfi-26.test [new file with mode: 0644]

index 241f66d..ad232bd 100644 (file)
@@ -61,6 +61,7 @@ SCM_TESTS = tests/alist.test                  \
            tests/srfi-13.test                  \
            tests/srfi-14.test                  \
            tests/srfi-19.test                  \
+           tests/srfi-26.test                  \
            tests/srfi-34.test                  \
            tests/srfi-4.test                   \
            tests/srfi-9.test                   \
diff --git a/test-suite/tests/srfi-26.test b/test-suite/tests/srfi-26.test
new file mode 100644 (file)
index 0000000..2ebe5de
--- /dev/null
@@ -0,0 +1,74 @@
+; CONFIDENCE TEST FOR IMPLEMENTATION OF SRFI-26
+; =============================================
+;
+; Sebastian.Egner@philips.com, 3-Jun-2002.
+;
+; This file checks a few assertions about the implementation.
+; If you run it and no error message is issued, the implementation
+; is correct on the cases that have been tested.
+;
+; compliance:
+;   Scheme R5RS with
+;     SRFI-23: error
+;
+; loading this file into Scheme 48 0.57 after 'cut.scm' has been loaded:
+;   ,open srfi-23
+;   ,load check.scm
+
+; (check expr)
+;    evals expr and issues an error if it is not #t.
+
+(define-module (test-srfi-26)
+  #:use-module (test-suite lib)
+  #:use-module (srfi srfi-26))
+
+(define (check expr)
+  (pass-if "cut/cute" (eval expr (interaction-environment))))
+
+; (check-all)
+;    runs several tests on cut and reports.
+
+(define (check-all)
+  (for-each 
+   check
+   '( ; cuts
+     (equal? ((cut list)) '())
+     (equal? ((cut list <...>)) '())
+     (equal? ((cut list 1)) '(1))
+     (equal? ((cut list <>) 1) '(1))
+     (equal? ((cut list <...>) 1) '(1))
+     (equal? ((cut list 1 2)) '(1 2))
+     (equal? ((cut list 1 <>) 2) '(1 2))
+     (equal? ((cut list 1 <...>) 2) '(1 2))
+     (equal? ((cut list 1 <...>) 2 3 4) '(1 2 3 4))
+     (equal? ((cut list 1 <> 3 <>) 2 4) '(1 2 3 4))
+     (equal? ((cut list 1 <> 3 <...>) 2 4 5 6) '(1 2 3 4 5 6))
+     (equal? (let* ((x 'wrong) (y (cut list x))) (set! x 'ok) (y)) '(ok))
+     (equal? 
+      (let ((a 0))
+       (map (cut + (begin (set! a (+ a 1)) a) <>)
+            '(1 2))
+       a)
+      2)
+      ; cutes
+     (equal? ((cute list)) '())
+     (equal? ((cute list <...>)) '())
+     (equal? ((cute list 1)) '(1))
+     (equal? ((cute list <>) 1) '(1))
+     (equal? ((cute list <...>) 1) '(1))
+     (equal? ((cute list 1 2)) '(1 2))
+     (equal? ((cute list 1 <>) 2) '(1 2))
+     (equal? ((cute list 1 <...>) 2) '(1 2))
+     (equal? ((cute list 1 <...>) 2 3 4) '(1 2 3 4))
+     (equal? ((cute list 1 <> 3 <>) 2 4) '(1 2 3 4))
+     (equal? ((cute list 1 <> 3 <...>) 2 4 5 6) '(1 2 3 4 5 6))
+     (equal? 
+      (let ((a 0))
+       (map (cute + (begin (set! a (+ a 1)) a) <>)
+            '(1 2))
+       a)
+      1))))
+
+; run the checks when loading
+(with-test-prefix "SRFI-26"
+  (check-all))