1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-07-05 09:10:18 +02:00

Add currently failing tests for optargs.

* test-suite/tests/optargs.test (exception:unrecognized-keyword,
  exception:extraneous-arguments): New variables.
  ("define*")["extraneous arguments", "unrecognized keyword", "rest
  given before keywords"]: New tests.
This commit is contained in:
Ludovic Courtès 2009-11-14 16:52:48 +01:00
parent 0ee42e27d5
commit ee2a69f565

View file

@ -22,6 +22,20 @@
#:use-module (system base compile) #:use-module (system base compile)
#:use-module (ice-9 optargs)) #:use-module (ice-9 optargs))
(define exception:unrecognized-keyword
;; Can be `vm-error' or `misc-error' depending on whether we use the
;; interpreter or VM:
;; (vm-error vm-run "Bad keyword argument list: unrecognized keyword" ())
;; (misc-error #f "~A ~S" ("unrecognized keyword" (#:y 2)) #f)
(cons #t ".*"))
(define exception:extraneous-arguments
;; Can be `vm-error' or `misc-error' depending on whether we use the
;; interpreter or VM, and depending on the evenness of the number of extra
;; arguments (!).
(cons #t ".*"))
(define-syntax c&e (define-syntax c&e
(syntax-rules (pass-if pass-if-exception) (syntax-rules (pass-if pass-if-exception)
((_ (pass-if test-name exp)) ((_ (pass-if test-name exp))
@ -146,4 +160,21 @@
(with-test-prefix/c&e "define*" (with-test-prefix/c&e "define*"
(pass-if "the whole enchilada" (pass-if "the whole enchilada"
(equal? (foo 1 2) (equal? (foo 1 2)
'(1 2 #f 1 #f #f #f 1 () ())))) '(1 2 #f 1 #f #f #f 1 () ())))
(pass-if-exception "extraneous arguments"
exception:extraneous-arguments
(let ((f (lambda* (#:key x) x)))
(f 1 2 #:x 'x)))
(pass-if-exception "unrecognized keyword"
exception:unrecognized-keyword
(let ((f (lambda* (#:key x) x)))
(f #:y 'not-recognized)))
(pass-if "rest given before keywords"
;; Passing the rest argument before the keyword arguments should not
;; prevent keyword argument binding.
(let ((f (lambda* (#:key x y z #:rest r) (list x y z r))))
(equal? (f 1 2 3 #:x 'x #:z 'z)
'(x #f z (1 2 3 #:x x #:z z))))))