Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Treat exceptions thrown by arguments to check as test failures #107

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 29 additions & 13 deletions rackunit-lib/rackunit/private/check.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
(require (for-syntax racket/base
racket/syntax
syntax/parse)
racket/function
racket/contract/base
racket/match
rackunit/log
Expand Down Expand Up @@ -89,21 +90,31 @@
(exn:test:check-stack exn))))

(define (list/if . vs) (filter values vs))
(define (thunk? v) (and (procedure? v) (arity=? (procedure-arity v) 0)))

(define-simple-macro (make-check-func (name:id formal:id ...) #:public-name pub:id body:expr ...)
(λ (#:location [location (list 'unknown #f #f #f #f)]
#:expression [expression 'unknown])
(procedure-rename
(λ (formal ... [message #f])
(define infos
(list/if (make-check-name 'pub)
(make-check-location location)
(make-check-expression expression)
(make-check-params (list formal ...))
(and message (make-check-message message))))
(with-default-check-info* infos
(λ () ((current-check-around) (λ () body ... (void))))))
'pub)))
(λ (formal ... [message #f])
(define infos
(list/if (make-check-name 'pub)
(make-check-location location)
(make-check-expression expression)
;; NOTE(vkz) although we push the expression above on the
;; check-info stack it doesn't appear in any error messages.
;; Since check args (formals) are now delayed with thunks we'll
;; piggieback on that expression to show nice context:
(make-check-params expression)
(and message (make-check-message message))))
(with-default-check-info* infos
(λ () ((current-check-around) (λ ()
(set! formal (if (thunk? formal) (formal) formal))
...
body
...
(void))))))
'pub)))

(define-simple-macro (define-check (name:id formal:id ...) body:expr ...)
(begin
Expand All @@ -112,9 +123,14 @@
(with-syntax ([loc (datum->syntax #f 'loc stx)])
(syntax-parse stx
[(chk . args)
#'((check-impl #:location (syntax->location #'loc)
#:expression '(chk . args))
. args)]
(with-syntax ([thunks (datum->syntax #'args
(map
(λ (arg) (quasisyntax (thunk #,arg)))
(syntax->list #'args))
#'args)])
#'((check-impl #:location (syntax->location #'loc)
#:expression '(chk . args))
. thunks))]
[chk:id
#'(check-impl #:location (syntax->location #'loc)
#:expression 'chk)])))))
Expand Down
2 changes: 2 additions & 0 deletions rackunit-lib/rackunit/private/format.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@
(display-raised-message e)]
[else
(display-raised-summary "ERROR" e)
(display-check-info-stack (current-check-info)
#:verbose? verbose?)
(display-raised-message e)])
(display-delimiter)))

Expand Down