You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

test_parse.expected 4.3 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. new_obj.to_string()="\u0003"
  2. new_obj.to_string()="foo"
  3. new_obj.to_string()="foo"
  4. new_obj.to_string()="ABC"
  5. new_obj.to_string()=null
  6. new_obj.to_string()=null
  7. new_obj.to_string()=NaN
  8. new_obj.to_string()=null
  9. new_obj.to_string()=null
  10. new_obj.to_string()=null
  11. new_obj.to_string()=Infinity
  12. new_obj.to_string()=Infinity
  13. new_obj.to_string()=-Infinity
  14. new_obj.to_string()=-Infinity
  15. new_obj.to_string()=true
  16. new_obj.to_string()=12
  17. new_obj.to_string()=12.3
  18. new_obj.to_string()=null
  19. new_obj.to_string()=null
  20. new_obj.to_string()={ "FoO": -12.3E512 }
  21. new_obj.to_string()=null
  22. new_obj.to_string()=[ "\n" ]
  23. new_obj.to_string()=[ "\nabc\n" ]
  24. new_obj.to_string()=[ null ]
  25. new_obj.to_string()=[ ]
  26. new_obj.to_string()=[ false ]
  27. new_obj.to_string()=[ "abc", null, "def", 12 ]
  28. new_obj.to_string()={ }
  29. new_obj.to_string()={ "foo": "bar" }
  30. new_obj.to_string()={ "foo": "bar", "baz": null, "bool0": true }
  31. new_obj.to_string()={ "foo": [ null, "foo" ] }
  32. new_obj.to_string()={ "abc": 12, "foo": "bar", "bool0": false, "bool1": true, "arr": [ 1, 2, 3, null, 5 ] }
  33. ==================================
  34. json_tokener_parse_versbose() OK
  35. ==================================
  36. Starting incremental tests.
  37. Note: quotes and backslashes seen in the output here are literal values passed
  38. to the parse functions. e.g. this is 4 characters: "\f"
  39. json_tokener_parse({ "foo) ... got error as expected
  40. json_tokener_parse_ex(tok, { "foo": 123 }, 14) ... OK: got object of type [object]: { "foo": 123 }
  41. json_tokener_parse_ex(tok, { "foo": 456 }, 14) ... OK: got object of type [object]: { "foo": 456 }
  42. json_tokener_parse_ex(tok, { "foo": 789 }, 14) ... OK: got object of type [object]: { "foo": 789 }
  43. json_tokener_parse_ex(tok, { "foo , 6) ... OK: got correct error: continue
  44. json_tokener_parse_ex(tok, ": {"bar , 8) ... OK: got correct error: continue
  45. json_tokener_parse_ex(tok, ":13}} , 6) ... OK: got object of type [object]: { "foo": { "bar": 13 } }
  46. json_tokener_parse_ex(tok, { "foo , 6) ... OK: got correct error: continue
  47. json_tokener_parse_ex(tok, : "bar"} , 8) ... OK: got correct error: unexpected character
  48. json_tokener_parse_ex(tok, { "foo , 6) ... OK: got correct error: continue
  49. json_tokener_parse_ex(tok, ": {"bar , 8) ... OK: got correct error: continue
  50. json_tokener_parse_ex(tok, ":13}}XXXX , 10) ... OK: got object of type [object]: { "foo": { "bar": 13 } }
  51. json_tokener_parse_ex(tok, XXXX , 4) ... OK: got correct error: unexpected character
  52. json_tokener_parse_ex(tok, {"x": 123 }"X", 14) ... OK: got object of type [object]: { "x": 123 }
  53. json_tokener_parse_ex(tok, "Y" , 3) ... OK: got object of type [string]: "Y"
  54. json_tokener_parse_ex(tok, 1 , 1) ... OK: got correct error: continue
  55. json_tokener_parse_ex(tok, 2 , 2) ... OK: got object of type [int]: 12
  56. json_tokener_parse_ex(tok, 2015-01-15 , 10) ... OK: got correct error: number expected
  57. json_tokener_parse_ex(tok, "blue" , 6) ... OK: got object of type [string]: "blue"
  58. json_tokener_parse_ex(tok, "\"" , 4) ... OK: got object of type [string]: "\""
  59. json_tokener_parse_ex(tok, "\\" , 4) ... OK: got object of type [string]: "\\"
  60. json_tokener_parse_ex(tok, "\b" , 4) ... OK: got object of type [string]: "\b"
  61. json_tokener_parse_ex(tok, "\f" , 4) ... OK: got object of type [string]: "\f"
  62. json_tokener_parse_ex(tok, "\n" , 4) ... OK: got object of type [string]: "\n"
  63. json_tokener_parse_ex(tok, "\r" , 4) ... OK: got object of type [string]: "\r"
  64. json_tokener_parse_ex(tok, "\t" , 4) ... OK: got object of type [string]: "\t"
  65. json_tokener_parse_ex(tok, "\/" , 4) ... OK: got object of type [string]: "\/"
  66. json_tokener_parse_ex(tok, "/" , 3) ... OK: got object of type [string]: "\/"
  67. json_tokener_parse_ex(tok, [1,2,3] , 7) ... OK: got object of type [array]: [ 1, 2, 3 ]
  68. json_tokener_parse_ex(tok, [1,2,3,] , 8) ... OK: got object of type [array]: [ 1, 2, 3 ]
  69. json_tokener_parse_ex(tok, [1,2,,3,] , 9) ... OK: got correct error: unexpected character
  70. json_tokener_parse_ex(tok, [1,2,3,] , 8) ... OK: got correct error: unexpected character
  71. json_tokener_parse_ex(tok, {"a":1,} , 8) ... OK: got correct error: unexpected character
  72. End Incremental Tests OK=32 ERROR=0
  73. ==================================