aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
authorLars Ingebrigtsen2022-07-02 15:06:24 +0200
committerLars Ingebrigtsen2022-07-02 15:06:24 +0200
commit8b52d9f5f177ce76b9ebecadd70c6dbbf07a20c6 (patch)
tree1ce43ea5c48e09dbbdb0d5659acc2c9f81cce032 /test/src
parent5b112482fbdb0351487a7af592ae901e20ec45c1 (diff)
downloademacs-8b52d9f5f177ce76b9ebecadd70c6dbbf07a20c6.tar.gz
emacs-8b52d9f5f177ce76b9ebecadd70c6dbbf07a20c6.zip
Allow NUL characters in JSON input
* src/json.c (Fjson_parse_string, Fjson_parse_buffer): Allow NUL characters in JSON (bug#48274).
Diffstat (limited to 'test/src')
-rw-r--r--test/src/json-tests.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/src/json-tests.el b/test/src/json-tests.el
index f3dfeea30b4..3560e1abc96 100644
--- a/test/src/json-tests.el
+++ b/test/src/json-tests.el
@@ -187,8 +187,11 @@
187(ert-deftest json-parse-string/null () 187(ert-deftest json-parse-string/null ()
188 (skip-unless (fboundp 'json-parse-string)) 188 (skip-unless (fboundp 'json-parse-string))
189 (should-error (json-parse-string "\x00") :type 'wrong-type-argument) 189 (should-error (json-parse-string "\x00") :type 'wrong-type-argument)
190 ;; FIXME: Reconsider whether this is the right behavior. 190 (should (json-parse-string "[\"a\\u0000b\"]"))
191 (should-error (json-parse-string "[\"a\\u0000b\"]") :type 'json-parse-error)) 191 (let* ((string "{\"foo\":\"this is a string including a literal \\u0000\"}")
192 (data (json-parse-string string)))
193 (should (hash-table-p data))
194 (should (equal string (json-serialize data)))))
192 195
193(ert-deftest json-parse-string/invalid-unicode () 196(ert-deftest json-parse-string/invalid-unicode ()
194 "Some examples from 197 "Some examples from