racket/collects/redex/tests/core-layout-test.rkt
Robby Findler 4a304643d3 Rackety
2012-03-05 08:12:02 -06:00

99 lines
3.5 KiB
Racket

#lang racket/base
(require "../private/core-layout.rkt"
"../private/loc-wrapper.rkt"
"lw-test-util.rkt"
"test-util.rkt")
(require texpict/mrpict mred/mred mzlib/class)
(dc-for-text-size (make-object bitmap-dc% (make-object bitmap% 1 1)))
(reset-count)
(let ([content
(list (make-lw 'x 15 1 35 0 #f #f)
(make-lw (list
(make-lw "(" 15 0 35 1 #f #f)
(make-lw 'a 15 0 36 1 #f #f)
(make-lw 'b 16 0 36 1 #f #f)
(make-lw ")" 16 0 37 1 #f #f))
15 1 35 3 #f #f))])
(test (find-enclosing-loc-wrapper content)
(build-lw content
15 1 35 3)))
(define (replace-pict-tokens x)
(let loop ([x x])
(cond
[(line? x) (make-line (line-n x) (loop (line-tokens x)))]
[(pair? x) (cons (loop (car x))
(loop (cdr x)))]
[(pict-token? x)
(struct-copy pict-token x [pict 'pict])]
[else x])))
(test (replace-pict-tokens
(build-lines
'()
(normalize-lw
(to-lw
,(term
(a b c))))))
(list (make-line 0
(list (make-spacer-token 0 2)
(make-string-token 2 1 "(" 'roman)
(make-string-token 3 1 "a" 'swiss)
(make-string-token 4 1 " " 'roman)
(make-string-token 5 1 "b" 'swiss)
(make-string-token 6 1 " " 'roman)
(make-string-token 7 1 "c" 'swiss)
(make-string-token 8 1 ")" 'roman)))
(make-line 0
(list (make-string-token 0 0 "" 'roman)
(make-pict-token 0 1 'pict)
(make-pict-token 1 0 'pict)))))
(test (replace-pict-tokens
(build-lines
'(|+1|)
(normalize-lw
(to-lw
,(term
(|+1| x))))))
(list (make-line 0
(list (make-spacer-token 0 2)
(make-string-token 2 1 "(" 'roman)
(make-string-token 3 4 "+1" '(italic . roman))
(make-string-token 7 1 " " 'roman)
(make-string-token 8 1 "x" 'swiss)
(make-string-token 9 1 ")" 'roman)))
(make-line 0
(list (make-string-token 0 0 "" 'roman)
(make-pict-token 0 1 'pict)
(make-pict-token 1 0 'pict)))))
(test (replace-pict-tokens
(build-lines
'()
(normalize-lw
(to-lw
,(term
(a b
c))))))
(list (make-line 1
(list (make-spacer-token 0 5)
(make-string-token 5 1 "c" 'swiss)
(make-string-token 6 1 ")" 'roman)))
(make-line 0
(list (make-spacer-token 0 2)
(make-string-token 2 1 "(" 'roman)
(make-string-token 3 1 "a" 'swiss)
(make-string-token 4 1 " " 'roman)
(make-string-token 5 1 "b" 'swiss)))
(make-line 0
(list (make-string-token 0 0 "" 'roman)
(make-pict-token 0 1 'pict)
(make-pict-token 1 0 'pict)))))
(print-tests-passed "core-layout.rkt")