summaryrefslogtreecommitdiff
path: root/test/src/lread-tests.el
blob: ff5d0f655f3ffe4d538568229b6da24b08922d89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
;;; lread-tests.el --- tests for lread.c -*- lexical-binding: t; -*-

;; Copyright (C) 2016  Google Inc.

;; Author: Philipp Stephani <phst@google.com>

;; This file is part of GNU Emacs.

;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.

;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with this program.  If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; Unit tests for code in src/lread.c.

;;; Code:

(ert-deftest lread-char-number ()
  (should (equal ?\N{U+A817} #xA817)))

(ert-deftest lread-char-name ()
  (should (equal ?\N{SYLOTI  NAGRI LETTER
                 DHO}
                 #xA817)))

(ert-deftest lread-char-invalid-number ()
  (should-error (read "?\\N{U+110000}") :type 'invalid-read-syntax))

(ert-deftest lread-char-invalid-name ()
  (should-error (read "?\\N{DOES NOT EXIST}")) :type 'invalid-read-syntax)

(ert-deftest lread-char-non-ascii-name ()
  (should-error (read "?\\N{LATIN CAPITAL LETTER Ø}")
                :type 'invalid-read-syntax))

(ert-deftest lread-char-empty-name ()
  (should-error (read "?\\N{}") :type 'invalid-read-syntax))

(ert-deftest lread-char-cjk-name ()
  (should (equal ?\N{CJK IDEOGRAPH-2B734} #x2B734)))

(ert-deftest lread-char-invalid-cjk-name ()
  (should-error (read "?\\N{CJK IDEOGRAPH-2B735}") :type 'invalid-read-syntax))

(ert-deftest lread-string-char-number ()
  (should (equal "a\N{U+A817}b" "a\uA817b")))

(ert-deftest lread-string-char-name ()
  (should (equal "a\N{SYLOTI NAGRI  LETTER DHO}b" "a\uA817b")))

;;; lread-tests.el ends here