|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-module (test-strings) |
|
#:use-module (test-suite lib) |
|
#:use-module (srfi srfi-1)) |
|
|
|
|
|
(define (string-ints . args) |
|
(apply string (map integer->char args))) |
|
|
|
(when (defined? 'setlocale) |
|
(setlocale LC_ALL "")) |
|
|
|
(define ascii-a (integer->char 65)) |
|
(define a-acute (integer->char #x00c1)) |
|
(define alpha (integer->char #x03b1)) |
|
(define cherokee-a (integer->char #x13a0)) |
|
|
|
(with-test-prefix "characters" |
|
(pass-if "input A" |
|
(char=? ascii-a #\A)) |
|
|
|
(pass-if "input alpha" |
|
(char=? alpha #\�)) |
|
|
|
(pass-if "display A" |
|
(let ((pt (open-output-string))) |
|
(set-port-encoding! pt "ISO-8859-7") |
|
(set-port-conversion-strategy! pt 'escape) |
|
(display ascii-a pt) |
|
(string=? "A" |
|
(get-output-string pt)))) |
|
|
|
(pass-if "display A acute" |
|
(let ((pt (open-output-string))) |
|
(set-port-encoding! pt "ISO-8859-7") |
|
(set-port-conversion-strategy! pt 'escape) |
|
(display a-acute pt) |
|
(string-ci=? "\\xc1" |
|
(get-output-string pt)))) |
|
|
|
(pass-if "display alpha" |
|
(let ((pt (open-output-string))) |
|
(set-port-encoding! pt "ISO-8859-7") |
|
(set-port-conversion-strategy! pt 'escape) |
|
(display alpha pt) |
|
(string-ci=? "�" |
|
(get-output-string pt)))) |
|
|
|
(pass-if "display Cherokee A" |
|
(let ((pt (open-output-string))) |
|
(set-port-encoding! pt "ISO-8859-7") |
|
(set-port-conversion-strategy! pt 'escape) |
|
(display cherokee-a pt) |
|
(string-ci=? "\\u13a0" |
|
(get-output-string pt)))) |
|
|
|
(pass-if "write A" |
|
(let ((pt (open-output-string))) |
|
(set-port-encoding! pt "ISO-8859-7") |
|
(set-port-conversion-strategy! pt 'escape) |
|
(write ascii-a pt) |
|
(string=? "#\\A" |
|
(get-output-string pt)))) |
|
|
|
(pass-if "write alpha" |
|
(let ((pt (open-output-string))) |
|
(set-port-encoding! pt "ISO-8859-7") |
|
(set-port-conversion-strategy! pt 'escape) |
|
(write alpha pt) |
|
(string=? "#\\�" |
|
(get-output-string pt))))) |
|
|
|
(define s1 "����") |
|
(define s2 "���") |
|
(define s3 "��������") |
|
(define s4 "���") |
|
|
|
(with-test-prefix "string length" |
|
|
|
(pass-if "s1" |
|
(eqv? (string-length s1) 4)) |
|
|
|
(pass-if "s2" |
|
(eqv? (string-length s2) 3)) |
|
|
|
(pass-if "s3" |
|
(eqv? (string-length s3) 8)) |
|
|
|
(pass-if "s4" |
|
(eqv? (string-length s4) 3))) |
|
|
|
(with-test-prefix "internal encoding" |
|
|
|
(pass-if "s1" |
|
(string=? s1 (string-ints #x03a0 #x03b5 #x03c1 #x03af))) |
|
|
|
(pass-if "s2" |
|
(string=? s2 (string-ints #x03c4 #x03b7 #x03c2))) |
|
|
|
(pass-if "s3" |
|
(string=? s3 (string-ints #x03ba #x03c1 #x03b9 #x03c4 #x03b9 #x03ba #x03ae #x03c2))) |
|
|
|
(pass-if "s4" |
|
(string=? s4 (string-ints #x03ba #x03b1 #x03b9)))) |
|
|
|
(with-test-prefix "chars" |
|
|
|
(pass-if "s1" |
|
(list= eqv? (string->list s1) |
|
(list #\� #\� #\� #\�))) |
|
|
|
(pass-if "s2" |
|
(list= eqv? (string->list s2) |
|
(list #\� #\� #\�))) |
|
|
|
(pass-if "s3" |
|
(list= eqv? (string->list s3) |
|
(list #\� #\� #\� #\� #\� #\� #\� #\�))) |
|
|
|
(pass-if "s4" |
|
(list= eqv? (string->list s4) |
|
(list #\� #\� #\�)))) |
|
|
|
(with-test-prefix "symbols == strings" |
|
|
|
(pass-if "����" |
|
(eq? (string->symbol s1) '����)) |
|
|
|
(pass-if "���" |
|
(eq? (string->symbol s2) '���)) |
|
|
|
(pass-if "��������" |
|
(eq? (string->symbol s3) '��������)) |
|
|
|
(pass-if "���" |
|
(eq? (string->symbol s4) '���))) |
|
|
|
(with-test-prefix "non-ascii variable names" |
|
|
|
(pass-if "1" |
|
(let ((� 1) |
|
(� 2)) |
|
(eqv? (+ � �) 3)))) |
|
|
|
(with-test-prefix "output errors" |
|
|
|
(pass-if-exception "char #x0400" |
|
exception:encoding-error |
|
(let ((pt (open-output-string))) |
|
(set-port-encoding! pt "ISO-8859-7") |
|
(set-port-conversion-strategy! pt 'error) |
|
(display (string-ints #x0400) pt)))) |
|
|