subtemplate/test/test-or.rkt
2017-02-03 12:50:05 +01:00

105 lines
2.8 KiB
Racket

#lang racket
(require subtemplate/private/ddd
subtemplate/private/ddd-forms
subtemplate/private/unsyntax-preparse
stxparse-info/case
stxparse-info/parse
rackunit
syntax/macro-testing
(only-in racket/base [... ]))
;; ??
(define (test-??-all v)
(syntax-parse v
[({~optional a:nat}
{~optional b:id}
{~optional c:boolean}
{~optional d:keyword})
(?? a b c d)]))
(check-equal? (test-??-all #'(1 x #f #:kw)) '1)
(check-equal? (test-??-all #'(x #f #:kw)) 'x)
(check-equal? (test-??-all #'(#f #:kw)) '#f)
(check-equal? (test-??-all #'(#:kw)) '#:kw)
(check-equal? (test-??-all #'(1)) '1)
(check-equal? (test-??-all #'(x)) 'x)
(check-equal? (test-??-all #'(#f)) '#f)
(check-equal? (test-??-all #'(#:kw)) '#:kw)
;; ?cond
(define (test-?cond v)
(syntax-parse v
[({~optional a:nat}
{~optional b:id}
{~optional c:boolean}
{~optional d:keyword})
(?cond [a 10] [b 20] [c 30] [d 40])]))
(check-equal? (test-?cond #'(1 x #f #:kw)) 10)
(check-equal? (test-?cond #'(x #f #:kw)) 20)
(check-equal? (test-?cond #'(#f #:kw)) 30)
(check-equal? (test-?cond #'(#:kw)) 40)
(check-equal? (test-?cond #'(1)) 10)
(check-equal? (test-?cond #'(x)) 20)
(check-equal? (test-?cond #'(#f)) 30)
(check-equal? (test-?cond #'(#:kw)) 40)
;; ?attr
(define (test-?attr v)
(syntax-parse v
[({~optional a:nat}
{~optional b:id}
{~optional c:boolean}
{~optional d:keyword})
(list (?attr a) (?attr b) (?attr c) (?attr d))]))
(check-equal? (test-?attr #'(1 x #f #:kw)) '(#t #t #t #t))
(check-equal? (test-?attr #'(x #f #:kw)) '(#f #t #t #t))
(check-equal? (test-?attr #'(#f #:kw)) '(#f #f #t #t))
(check-equal? (test-?attr #'(#:kw)) '(#f #f #f #t))
(check-equal? (test-?attr #'(1)) '(#t #f #f #f))
(check-equal? (test-?attr #'(x)) '(#f #t #f #f))
(check-equal? (test-?attr #'(#f)) '(#f #f #t #f))
(check-equal? (test-?attr #'(#:kw)) '(#f #f #f #t))
;; ?if
(define (test-?if v)
(syntax-parse v
[({~optional a:nat}
{~optional b:id}
{~optional c:keyword})
(?if a b c)]))
(check-equal? (test-?if #'(1 x #:kw)) 'x)
(check-equal? (test-?if #'(x #:kw)) '#:kw)
(check-equal? (test-?if #'(#:kw)) '#:kw)
(check-equal? (test-?if #'(1 #:kw)) '#f)
(check-equal? (syntax-parse #'(1 x)
[({~optional a:nat}
{~optional b:id}
{~optional c:boolean}
{~optional d:keyword})
(?if a (?if b a d) 0)])
1)
;; ?@@
(check-equal? (syntax-parse #'((1 2 3) (x y) (#f))
[(a b c)
(vector {?@@ a b c})])
#(1 2 3 x y #f))
(check-equal? (syntax-parse #'((1 2 3) (x y) (#f))
[whole
(vector {?@@ . whole})])
#(1 2 3 x y #f))