|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-module (test-coding) |
|
#:use-module (test-suite lib)) |
|
|
|
(define (with-temp-file proc) |
|
(let* ((tmpdir (or (getenv "TMPDIR") |
|
(getenv "TEMP") |
|
"/tmp")) |
|
(name (string-append tmpdir "/coding-test.XXXXXX")) |
|
(port (mkstemp! name))) |
|
(let ((res (with-throw-handler |
|
#t |
|
(lambda () |
|
(proc name port)) |
|
(lambda _ |
|
(delete-file name))))) |
|
(delete-file name) |
|
res))) |
|
|
|
(define (scan-coding str) |
|
(with-temp-file |
|
(lambda (name port) |
|
(display str port) |
|
(close port) |
|
|
|
|
|
|
|
(let* ((port (open-input-file name)) |
|
(res (file-encoding port))) |
|
(close-port port) |
|
res)))) |
|
|
|
(with-test-prefix "block comments" |
|
|
|
(pass-if-equal "first line" |
|
"ISO-8859-1" |
|
(scan-coding "#! coding: iso-8859-1 !#")) |
|
|
|
(pass-if-equal "first line no whitespace" |
|
"ISO-8859-1" |
|
(scan-coding "#!coding:iso-8859-1!#")) |
|
|
|
(pass-if-equal "second line" |
|
"ISO-8859-1" |
|
(scan-coding "#! \n coding: iso-8859-1 !#")) |
|
|
|
(pass-if-equal "second line no whitespace" |
|
"ISO-8859-1" |
|
(scan-coding "#!\ncoding:iso-8859-1!#")) |
|
|
|
(pass-if-equal "third line" |
|
"ISO-8859-1" |
|
(scan-coding "#! \n coding: iso-8859-1 \n !#")) |
|
|
|
(pass-if-equal "third line no whitespace" |
|
"ISO-8859-1" |
|
(scan-coding "#!\ncoding:iso-8859-1\n!#"))) |
|
|
|
(with-test-prefix "line comment" |
|
(pass-if-equal "first line, no whitespace, no nl" |
|
"ISO-8859-1" |
|
(scan-coding ";coding:iso-8859-1")) |
|
|
|
(pass-if-equal "first line, whitespace, no nl" |
|
"ISO-8859-1" |
|
(scan-coding "; coding: iso-8859-1 ")) |
|
|
|
(pass-if-equal "first line, no whitespace, nl" |
|
"ISO-8859-1" |
|
(scan-coding ";coding:iso-8859-1\n")) |
|
|
|
(pass-if-equal "first line, whitespace, nl" |
|
"ISO-8859-1" |
|
(scan-coding "; coding: iso-8859-1 \n")) |
|
|
|
(pass-if-equal "second line, no whitespace, no nl" |
|
"ISO-8859-1" |
|
(scan-coding "\n;coding:iso-8859-1")) |
|
|
|
(pass-if-equal "second line, whitespace, no nl" |
|
"ISO-8859-1" |
|
(scan-coding "\n; coding: iso-8859-1 ")) |
|
|
|
(pass-if-equal "second line, no whitespace, nl" |
|
"ISO-8859-1" |
|
(scan-coding "\n;coding:iso-8859-1\n")) |
|
|
|
(pass-if-equal "second line, whitespace, nl" |
|
"ISO-8859-1" |
|
(scan-coding "\n; coding: iso-8859-1 \n")) |
|
|
|
(pass-if-equal "http://bugs.gnu.org/16463" |
|
|
|
"ISO-8859-1" |
|
(scan-coding (string-append (make-string 485 #\space) |
|
"; coding: ISO-8859-1")))) |
|
|