unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
blob cdf85ccb109b826c94d3aafd3ac8ad902cf25d35 2798 bytes (raw)
name: test/automated/json-tests.el 	 # note: path name is non-authoritative(*)

 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
 
;;; json-tests.el --- Test suite for json.el

;; Copyright (C) 2015 Free Software Foundation, Inc.

;; Author: Dmitry Gutov <dgutov@yandex.ru>

;; 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/>.

;;; Code:

(require 'ert)
(require 'json)

(ert-deftest test-json-plist-reverse ()
  (should (equal (json--plist-reverse '()) '()))
  (should (equal (json--plist-reverse '(:a 1)) '(:a 1)))
  (should (equal (json--plist-reverse '(:a 1 :b 2 :c 3))
                 '(:c 3 :b 2 :a 1))))

(ert-deftest test-json-plist-to-alist ()
  (should (equal (json--plist-to-alist '()) '()))
  (should (equal (json--plist-to-alist '(:a 1)) '((:a . 1))))
  (should (equal (json--plist-to-alist '(:a 1 :b 2 :c 3))
                 '((:a . 1) (:b . 2) (:c . 3)))))

(ert-deftest test-json-encode-plist ()
  (let ((plist '(:a 1 :b 2)))
    (should (equal (json-encode plist) "{\"a\":1,\"b\":2}"))))

(ert-deftest json-encode-simple-alist ()
  (should (equal (json-encode '((a . 1)
                                (b . 2)))
                 "{\"a\":1,\"b\":2}")))

(ert-deftest test-json-encode-hash-table ()
  (let ((hash-table (make-hash-table))
        (json-encoding-object-sort-key 'string<))
    (puthash :a 1 hash-table)
    (puthash :b 2 hash-table)
    (should (equal (json-encode hash-table) "{\"a\":1,\"b\":2}"))))

(ert-deftest test-json-encode-with-sort-key ()
  (let ((alist '((:a . 1) (:b . 2) (:c . 3)))
        (json-encoding-object-sort-key 'string>))
    (should (equal (json-encode alist) "{\"c\":3,\"b\":2,\"a\":1}"))))

(ert-deftest json-read-simple-alist ()
  (let ((json-object-type 'alist))
    (should (equal (json-read-from-string "{\"a\": 1, \"b\": 2}")
                   '((a . 1)
                     (b . 2))))))

(ert-deftest json-encode-string-with-special-chars ()
  (should (equal (json-encode-string "a\n\fb")
                 "\"a\\n\\fb\""))
  (should (equal (json-encode-string "\nasdфыв\u001f\u007ffgh\t")
                 "\"\\nasdфыв\\u001f\u007ffgh\\t\"")))

(ert-deftest json-read-string-with-special-chars ()
  (should (equal (json-read-from-string "\"\\nasd\\u0444\\u044b\\u0432fgh\\t\"")
                 "\nasdфывfgh\t")))

(provide 'json-tests)
;;; json-tests.el ends here

debug log:

solving cdf85cc ...
found cdf85cc in https://yhetil.org/emacs-bugs/87twq6e986.fsf@gmail.com/
found d1b7a2f in https://git.savannah.gnu.org/cgit/emacs.git
preparing index
index prepared:
100644 d1b7a2fa022c1f56470f16a9e90919ff904054cc	test/automated/json-tests.el

applying [1/1] https://yhetil.org/emacs-bugs/87twq6e986.fsf@gmail.com/
diff --git a/test/automated/json-tests.el b/test/automated/json-tests.el
index d1b7a2f..cdf85cc 100644

Checking patch test/automated/json-tests.el...
Applied patch test/automated/json-tests.el cleanly.

index at:
100644 cdf85ccb109b826c94d3aafd3ac8ad902cf25d35	test/automated/json-tests.el

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).