You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
3.9 KiB
Racket
80 lines
3.9 KiB
Racket
#lang racket/base
|
|
(require "main.rkt" rackunit)
|
|
(define empty '())
|
|
|
|
;; helper for comparison of values
|
|
;; normal function won't work for this. Has to be syntax-rule
|
|
(define-syntax-rule (values->list vs)
|
|
(call-with-values (λ() vs) list))
|
|
|
|
(check-true (tagged-xexpr-attrs? '()))
|
|
(check-true (tagged-xexpr-attrs? '((key "value"))))
|
|
(check-true (tagged-xexpr-attrs? '((key "value") (foo "bar"))))
|
|
(check-false (tagged-xexpr-attrs? '((key "value") "foo" "bar"))) ; content, not attr
|
|
(check-false (tagged-xexpr-attrs? '(key "value"))) ; not a nested list
|
|
(check-false (tagged-xexpr-attrs? '(("key" "value")))) ; two strings
|
|
(check-false (tagged-xexpr-attrs? '((key value)))) ; two symbols
|
|
|
|
(check-true (tagged-xexpr-elements? '("p" "foo" "123")))
|
|
(check-true (tagged-xexpr-elements? '("p" "foo" 123))) ; includes number
|
|
(check-true (tagged-xexpr-elements? '(p "foo" "123"))) ; includes symbol
|
|
(check-false (tagged-xexpr-elements? "foo")) ; not a list
|
|
(check-false (tagged-xexpr-elements? '(((key "value")) "foo" "bar"))) ; includes attr
|
|
(check-false (tagged-xexpr-elements? '("foo" "bar" ((key "value"))))) ; malformed
|
|
|
|
|
|
(check-true (tagged-xexpr? '(p "foo" "bar")))
|
|
(check-true (tagged-xexpr? '(p ((key "value")) "foo" "bar")))
|
|
(check-true (tagged-xexpr? '(p 123))) ; content is a number
|
|
(check-false (tagged-xexpr? "foo")) ; not a list with symbol
|
|
(check-false (tagged-xexpr? '(p "foo" "bar" ((key "value"))))) ; malformed
|
|
(check-false (tagged-xexpr? '("p" "foo" "bar"))) ; no name
|
|
|
|
(check-equal? (merge-attrs 'foo "bar") '((foo "bar")))
|
|
(check-equal? (merge-attrs '(foo "bar")) '((foo "bar")))
|
|
(check-equal? (merge-attrs '((foo "bar"))) '((foo "bar")))
|
|
(check-equal? (merge-attrs "foo" 'bar) '((foo "bar")))
|
|
(check-equal? (merge-attrs "foo" "bar" "goo" "gar") '((foo "bar")(goo "gar")))
|
|
(check-equal? (merge-attrs (merge-attrs "foo" "bar" "goo" "gar") "hee" "haw")
|
|
'((foo "bar")(goo "gar")(hee "haw")))
|
|
(check-equal? (merge-attrs '((foo "bar")(goo "gar")) "foo" "haw") '((foo "haw")(goo "gar")))
|
|
|
|
|
|
(check-equal? (make-tagged-xexpr 'p) '(p))
|
|
(check-equal? (make-tagged-xexpr 'p '((key "value"))) '(p ((key "value"))))
|
|
(check-equal? (make-tagged-xexpr 'p empty '("foo" "bar")) '(p "foo" "bar"))
|
|
(check-equal? (make-tagged-xexpr 'p '((key "value")) (list "foo" "bar"))
|
|
'(p ((key "value")) "foo" "bar"))
|
|
|
|
(check-equal? (values->list (tagged-xexpr->values '(p)))
|
|
(values->list (values 'p empty empty)))
|
|
(check-equal? (values->list (tagged-xexpr->values '(p "foo")))
|
|
(values->list (values 'p empty '("foo"))))
|
|
(check-equal? (values->list (tagged-xexpr->values '(p ((key "value")))))
|
|
(values->list (values 'p '((key "value")) empty)))
|
|
(check-equal? (values->list (tagged-xexpr->values '(p ((key "value")) "foo")))
|
|
(values->list (values 'p '((key "value")) '("foo"))))
|
|
|
|
|
|
(check-equal? (values->list (tagged-xexpr->values '(p)))
|
|
(tagged-xexpr->list '(p)))
|
|
(check-equal? (values->list (tagged-xexpr->values '(p "foo")))
|
|
(tagged-xexpr->list '(p "foo")))
|
|
(check-equal? (values->list (tagged-xexpr->values '(p ((key "value")))))
|
|
(tagged-xexpr->list '(p ((key "value")))))
|
|
(check-equal? (values->list (tagged-xexpr->values '(p ((key "value")) "foo")))
|
|
(tagged-xexpr->list '(p ((key "value")) "foo")))
|
|
|
|
(check-equal? (tagged-xexpr-tag '(p ((key "value"))"foo" "bar" (em "square"))) 'p)
|
|
(check-equal? (tagged-xexpr-attrs '(p ((key "value"))"foo" "bar" (em "square"))) '((key "value")))
|
|
(check-equal? (tagged-xexpr-elements '(p ((key "value"))"foo" "bar" (em "square")))
|
|
'("foo" "bar" (em "square")))
|
|
|
|
(check-equal? (remove-attrs '(p ((foo "bar")) "hi")) '(p "hi"))
|
|
(check-equal? (remove-attrs '(p ((foo "bar")) "hi" (p ((foo "bar")) "hi"))) '(p "hi" (p "hi")))
|
|
|
|
(check-equal? (map-elements (λ(x) (if (string? x) "boing" x))
|
|
'(p "foo" "bar" (em "square")))
|
|
'(p "boing" "boing" (em "boing")))
|
|
|