(import medea) (use test) (load-relative "python-test-pass1") (define-syntax test-read (syntax-rules () ((_ result json) (test-read json result json)) ((_ description result json) (test description result (read-json json))))) (test-group "objects" (test-read '() "{}") (test-read '((foo . 123) (qux . "hey")) "{ \"foo\" : 123, \"qux\": \"hey\" } ")) (test-group "arrays" (test-read '#() "[]") (test-read '#("foo") "[\"foo\"]") (test-read '#("one" 2 3 "four" 5) "[\"one\", 2,3, \"four\", 5]")) (test-group "numbers" (test-read '#(0) "[0]") (test-read '#(-10) "[-10]") (test-read '#(222.5) "[222.5]") (test-read '#(10e2) "[10e2]") (test-read '#(2.3e2) "[2.3E+2]")) (test-group "strings" (test-read '#("") "[\"\"]") (test-read '#("E9") "[\"\\u00459\"]") (test-read '#("Дҫ") "[\"\\u0414\\u04ab\"]") (test-read '#("Дҫ") "[\"Дҫ\"]") ; FIXME genturfahi needs utf8 support for that to work (test-read '#("\f") "[\"\\f\"]") (test-read '#("\"") "[\"\\\"\"]") (test-read #f "[\"\\x\"]")) (test-group "literals" (test-read '#(#t) "[true]") (test-read '#(#f) "[false]") (test-read '#(null) "[null]")) (test-group "whitespace" (test-read '() " { \n \t}") (test-read '#() " \r []")) (test-group "malformed" (test-read #f "{..}")) (test-group "complex" (test-read "example 1 from RFC 4627" '((Image (Width . 800) (Height . 600) (Title . "View from 15th Floor") (Thumbnail (Url . "http://www.example.com/image/481989943") (Height . 125) (Width . "100")) (IDs . #(116 943 234 38793)))) #<?") (hex . "\u0123\u4567\u89AB\uCDEF\uabcd\uef4A") (true . #t) (false . #f) (null . null) (array . #()) (object) (address . "50 St. James Street") (url . "http://www.JSON.org/") (comment . "// /* */| . " ") (| s p a c e d | . #(1 2 3 4 5 6 7)) (compact . #(1 2 3 4 5 6 7)) (jsontext . "{\"object with 1 member\":[\"array with 1 element\"]}") (quotes . "" \u0022 %22 0x22 034 "") (|/\\\"\uCAFE\uBABE\uAB98\uFCDE\ubcda\uef4A\b\f\n\r\t`1~!@#$%^&*()_+-=[]{}\|;:',./<>?| . "A key can be any string")) 0.5 98.6 99.44 1066 "rosebud") json-python-test-pass1) (test "reading from current-input-port by default" '#("foo") (with-input-from-string "[\"foo\"]" read-json)) )