summaryrefslogtreecommitdiff
path: root/test-suite/tests/list.test
diff options
context:
space:
mode:
authorDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2001-02-28 11:25:40 +0000
committerDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2001-02-28 11:25:40 +0000
commit6b4113afc5a0010eef2e9edae2cbd5f6b690be41 (patch)
tree7fd3db5e139ecf7390743f0a33b4fb8950f3b1fa /test-suite/tests/list.test
parent9d372117f6d155446263376c027ef0c90f8547b3 (diff)
downloadguile-6b4113afc5a0010eef2e9edae2cbd5f6b690be41.tar.gz
* Provide and use new convenience macros to test for exceptions.
Diffstat (limited to 'test-suite/tests/list.test')
-rw-r--r--test-suite/tests/list.test198
1 files changed, 63 insertions, 135 deletions
diff --git a/test-suite/tests/list.test b/test-suite/tests/list.test
index 22e898879..746eeb8ad 100644
--- a/test-suite/tests/list.test
+++ b/test-suite/tests/list.test
@@ -375,29 +375,17 @@
(with-test-prefix "wrong argument"
- (expect-fail "improper list and empty list"
- (catch 'wrong-type-arg
- (lambda ()
- (append! (cons 1 2) '())
- #f)
- (lambda (key . args)
- #t)))
-
- (expect-fail "improper list and list"
- (catch 'wrong-type-arg
- (lambda ()
- (append! (cons 1 2) (list 3 4))
- #f)
- (lambda (key . args)
- #t)))
-
- (expect-fail "list, improper list and list"
- (catch 'wrong-type-arg
- (lambda ()
- (append! (list 1 2) (cons 3 4) (list 5 6))
- #f)
- (lambda (key . args)
- #t)))
+ (expect-fail-exception "improper list and empty list"
+ exception:wrong-type-arg
+ (append! (cons 1 2) '()))
+
+ (expect-fail-exception "improper list and list"
+ exception:wrong-type-arg
+ (append! (cons 1 2) (list 3 4)))
+
+ (expect-fail-exception "list, improper list and list"
+ exception:wrong-type-arg
+ (append! (list 1 2) (cons 3 4) (list 5 6)))
(expect-fail "circular list and empty list"
(let ((foo (list 1 2 3)))
@@ -473,47 +461,27 @@
(with-test-prefix "empty list"
- (pass-if "index 0"
- (catch 'out-of-range
- (lambda ()
- (list-ref '() 0)
- #f)
- (lambda (key . args)
- #t)))
-
- (pass-if "index > 0"
- (catch 'out-of-range
- (lambda ()
- (list-ref '() 1)
- #f)
- (lambda (key . args)
- #t)))
-
- (pass-if "index < 0"
- (catch 'out-of-range
- (lambda ()
- (list-ref '() -1)
- #f)
- (lambda (key . args)
- #t))))
+ (pass-if-exception "index 0"
+ exception:out-of-range
+ (list-ref '() 0))
+
+ (pass-if-exception "index > 0"
+ exception:out-of-range
+ (list-ref '() 1))
+
+ (pass-if-exception "index < 0"
+ exception:out-of-range
+ (list-ref '() -1)))
(with-test-prefix "non-empty list"
- (pass-if "index > length"
- (catch 'out-of-range
- (lambda ()
- (list-ref '(1) 1)
- #f)
- (lambda (key . args)
- #t)))
+ (pass-if-exception "index > length"
+ exception:out-of-range
+ (list-ref '(1) 1))
- (pass-if "index < 0"
- (catch 'out-of-range
- (lambda ()
- (list-ref '(1) -1)
- #f)
- (lambda (key . args)
- #t)))))))
+ (pass-if-exception "index < 0"
+ exception:out-of-range
+ (list-ref '(1) -1))))))
;;; list-set!
@@ -541,47 +509,27 @@
(with-test-prefix "empty list"
- (pass-if "index 0"
- (catch 'out-of-range
- (lambda ()
- (list-set! (list) 0 #t)
- #f)
- (lambda (key . args)
- #t)))
-
- (pass-if "index > 0"
- (catch 'out-of-range
- (lambda ()
- (list-set! (list) 1 #t)
- #f)
- (lambda (key . args)
- #t)))
-
- (pass-if "index < 0"
- (catch 'out-of-range
- (lambda ()
- (list-set! (list) -1 #t)
- #f)
- (lambda (key . args)
- #t))))
+ (pass-if-exception "index 0"
+ exception:out-of-range
+ (list-set! (list) 0 #t))
+
+ (pass-if-exception "index > 0"
+ exception:out-of-range
+ (list-set! (list) 1 #t))
+
+ (pass-if-exception "index < 0"
+ exception:out-of-range
+ (list-set! (list) -1 #t)))
(with-test-prefix "non-empty list"
- (pass-if "index > length"
- (catch 'out-of-range
- (lambda ()
- (list-set! (list 1) 1 #t)
- #f)
- (lambda (key . args)
- #t)))
+ (pass-if-exception "index > length"
+ exception:out-of-range
+ (list-set! (list 1) 1 #t))
- (pass-if "index < 0"
- (catch 'out-of-range
- (lambda ()
- (list-set! (list 1) -1 #t)
- #f)
- (lambda (key . args)
- #t)))))))
+ (pass-if-exception "index < 0"
+ exception:out-of-range
+ (list-set! (list 1) -1 #t))))))
;;; list-cdr-ref
@@ -615,47 +563,27 @@
(with-test-prefix "empty list"
- (pass-if "index 0"
- (catch 'out-of-range
- (lambda ()
- (list-cdr-set! (list) 0 #t)
- #f)
- (lambda (key . args)
- #t)))
-
- (pass-if "index > 0"
- (catch 'out-of-range
- (lambda ()
- (list-cdr-set! (list) 1 #t)
- #f)
- (lambda (key . args)
- #t)))
-
- (pass-if "index < 0"
- (catch 'out-of-range
- (lambda ()
- (list-cdr-set! (list) -1 #t)
- #f)
- (lambda (key . args)
- #t))))
+ (pass-if-exception "index 0"
+ exception:out-of-range
+ (list-cdr-set! (list) 0 #t))
+
+ (pass-if-exception "index > 0"
+ exception:out-of-range
+ (list-cdr-set! (list) 1 #t))
+
+ (pass-if-exception "index < 0"
+ exception:out-of-range
+ (list-cdr-set! (list) -1 #t)))
(with-test-prefix "non-empty list"
- (pass-if "index > length"
- (catch 'out-of-range
- (lambda ()
- (list-cdr-set! (list 1) 1 #t)
- #f)
- (lambda (key . args)
- #t)))
-
- (pass-if "index < 0"
- (catch 'out-of-range
- (lambda ()
- (list-cdr-set! (list 1) -1 #t)
- #f)
- (lambda (key . args)
- #t)))))))
+ (pass-if-exception "index > length"
+ exception:out-of-range
+ (list-cdr-set! (list 1) 1 #t))
+
+ (pass-if-exception "index < 0"
+ exception:out-of-range
+ (list-cdr-set! (list 1) -1 #t))))))
;;; list-head