]> git.eshelyaron.com Git - emacs.git/commitdiff
Skip tests for json.c unless compiled with native JSON support.
authorPhilipp Stephani <phst@google.com>
Sun, 10 Dec 2017 17:03:04 +0000 (18:03 +0100)
committerPhilipp Stephani <phst@google.com>
Sun, 10 Dec 2017 17:04:29 +0000 (18:04 +0100)
* test/src/json-tests.el (json-serialize/roundtrip)
(json-serialize/object, json-parse-string/object)
(json-parse-string/string, json-serialize/string)
(json-parse-string/incomplete, json-parse-string/trailing)
(json-parse-buffer/incomplete, json-parse-buffer/trailing): Skip if
JSON functions aren't available.

test/src/json-tests.el

index 5d3c84a136c60257a1467e178b2502fd4011348e..07eb41d093079649b98d2f90b4f4155236beb38e 100644 (file)
@@ -27,6 +27,7 @@
 (require 'map)
 
 (ert-deftest json-serialize/roundtrip ()
+  (skip-unless (fboundp 'json-serialize))
   (let ((lisp [:null :false t 0 123 -456 3.75 "abcαβγ"])
         (json "[null,false,true,0,123,-456,3.75,\"abcαβγ\"]"))
     (should (equal (json-serialize lisp) json))
@@ -42,6 +43,7 @@
       (should (eobp)))))
 
 (ert-deftest json-serialize/object ()
+  (skip-unless (fboundp 'json-serialize))
   (let ((table (make-hash-table :test #'equal)))
     (puthash "abc" [1 2 t] table)
     (puthash "def" :null table)
@@ -49,6 +51,7 @@
                    "{\"abc\":[1,2,true],\"def\":null}"))))
 
 (ert-deftest json-parse-string/object ()
+  (skip-unless (fboundp 'json-parse-string))
   (let ((actual
          (json-parse-string
           "{ \"abc\" : [1, 2, true], \"def\" : null, \"abc\" : [9, false] }\n")))
@@ -58,6 +61,7 @@
                    '(("abc" . [9 :false]) ("def" . :null))))))
 
 (ert-deftest json-parse-string/string ()
+  (skip-unless (fboundp 'json-parse-string))
   (should-error (json-parse-string "[\"formfeed\f\"]") :type 'json-parse-error)
   (should (equal (json-parse-string "[\"foo \\\"bar\\\"\"]") ["foo \"bar\""]))
   (should (equal (json-parse-string "[\"abcαβγ\"]") ["abcαβγ"]))
   (should-error (json-parse-string "foo") :type 'json-parse-error))
 
 (ert-deftest json-serialize/string ()
+  (skip-unless (fboundp 'json-serialize))
   (should (equal (json-serialize ["foo"]) "[\"foo\"]"))
   (should (equal (json-serialize ["a\n\fb"]) "[\"a\\n\\fb\"]"))
   (should (equal (json-serialize ["\nasdфыв\u001f\u007ffgh\t"])
                  "[\"\\nasdфыв\\u001F\u007ffgh\\t\"]")))
 
 (ert-deftest json-parse-string/incomplete ()
+  (skip-unless (fboundp 'json-parse-string))
   (should-error (json-parse-string "[123") :type 'json-end-of-file))
 
 (ert-deftest json-parse-string/trailing ()
+  (skip-unless (fboundp 'json-parse-string))
   (should-error (json-parse-string "[123] [456]") :type 'json-trailing-content))
 
 (ert-deftest json-parse-buffer/incomplete ()
+  (skip-unless (fboundp 'json-parse-buffer))
   (with-temp-buffer
     (insert "[123")
     (goto-char 1)
@@ -86,6 +94,7 @@
     (should (bobp))))
 
 (ert-deftest json-parse-buffer/trailing ()
+  (skip-unless (fboundp 'json-parse-buffer))
   (with-temp-buffer
     (insert "[123] [456]")
     (goto-char 1)