mirror of
https://github.com/nim-lang/Nim.git
synced 2026-07-20 07:51:32 +00:00
* fix #7881, control characters in json output * Add test for control characters in json
This commit is contained in:
@@ -558,6 +558,8 @@ proc escapeJson*(s: string; result: var string) =
|
||||
of '\t': result.add("\\t")
|
||||
of '\r': result.add("\\r")
|
||||
of '"': result.add("\\\"")
|
||||
of '\0'..'\7': result.add("\\u000" & $ord(c))
|
||||
of '\14'..'\31': result.add("\\u00" & $ord(c))
|
||||
of '\\': result.add("\\\\")
|
||||
else: result.add(c)
|
||||
result.add("\"")
|
||||
@@ -1581,6 +1583,7 @@ when isMainModule:
|
||||
doAssert(parsed2{"repository", "description"}.str=="IRC Library for Haskell", "Couldn't fetch via multiply nested key using {}")
|
||||
|
||||
doAssert escapeJson("\10Foo🎃barÄ") == "\"\\nFoo🎃barÄ\""
|
||||
doAssert escapeJson("\0\7\20") == "\"\\u0000\\u0007\\u0020\"" # for #7887
|
||||
|
||||
# Test with extra data
|
||||
when not defined(js):
|
||||
|
||||
Reference in New Issue
Block a user