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.5 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. new_obj.to_string()={ "abc": "blue\nred\ngreen" }
  34. new_obj.to_string()=[ 0 ]
  35. new_obj.to_string()=[ 0 ]
  36. new_obj.to_string()=null
  37. new_obj.to_string()=[ 9223372036854775807 ]
  38. ==================================
  39. json_tokener_parse_versbose() OK
  40. ==================================
  41. Starting incremental tests.
  42. Note: quotes and backslashes seen in the output here are literal values passed
  43. to the parse functions. e.g. this is 4 characters: "\f"
  44. json_tokener_parse({ "foo) ... got error as expected
  45. json_tokener_parse_ex(tok, { "foo": 123 }, 14) ... OK: got object of type [object]: { "foo": 123 }
  46. json_tokener_parse_ex(tok, { "foo": 456 }, 14) ... OK: got object of type [object]: { "foo": 456 }
  47. json_tokener_parse_ex(tok, { "foo": 789 }, 14) ... OK: got object of type [object]: { "foo": 789 }
  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}} , 6) ... OK: got object of type [object]: { "foo": { "bar": 13 } }
  51. json_tokener_parse_ex(tok, { "foo , 6) ... OK: got correct error: continue
  52. json_tokener_parse_ex(tok, : "bar"} , 8) ... OK: got correct error: unexpected character
  53. json_tokener_parse_ex(tok, { "foo , 6) ... OK: got correct error: continue
  54. json_tokener_parse_ex(tok, ": {"bar , 8) ... OK: got correct error: continue
  55. json_tokener_parse_ex(tok, ":13}}XXXX , 10) ... OK: got object of type [object]: { "foo": { "bar": 13 } }
  56. json_tokener_parse_ex(tok, XXXX , 4) ... OK: got correct error: unexpected character
  57. json_tokener_parse_ex(tok, {"x": 123 }"X", 14) ... OK: got object of type [object]: { "x": 123 }
  58. json_tokener_parse_ex(tok, "Y" , 3) ... OK: got object of type [string]: "Y"
  59. json_tokener_parse_ex(tok, 1 , 1) ... OK: got correct error: continue
  60. json_tokener_parse_ex(tok, 2 , 2) ... OK: got object of type [int]: 12
  61. json_tokener_parse_ex(tok, 2015-01-15 , 10) ... OK: got correct error: number expected
  62. json_tokener_parse_ex(tok, "blue" , 6) ... OK: got object of type [string]: "blue"
  63. json_tokener_parse_ex(tok, "\"" , 4) ... OK: got object of type [string]: "\""
  64. json_tokener_parse_ex(tok, "\\" , 4) ... OK: got object of type [string]: "\\"
  65. json_tokener_parse_ex(tok, "\b" , 4) ... OK: got object of type [string]: "\b"
  66. json_tokener_parse_ex(tok, "\f" , 4) ... OK: got object of type [string]: "\f"
  67. json_tokener_parse_ex(tok, "\n" , 4) ... OK: got object of type [string]: "\n"
  68. json_tokener_parse_ex(tok, "\r" , 4) ... OK: got object of type [string]: "\r"
  69. json_tokener_parse_ex(tok, "\t" , 4) ... OK: got object of type [string]: "\t"
  70. json_tokener_parse_ex(tok, "\/" , 4) ... OK: got object of type [string]: "\/"
  71. json_tokener_parse_ex(tok, "/" , 3) ... OK: got object of type [string]: "\/"
  72. json_tokener_parse_ex(tok, [1,2,3] , 7) ... OK: got object of type [array]: [ 1, 2, 3 ]
  73. json_tokener_parse_ex(tok, [1,2,3,] , 8) ... OK: got object of type [array]: [ 1, 2, 3 ]
  74. json_tokener_parse_ex(tok, [1,2,,3,] , 9) ... OK: got correct error: unexpected character
  75. json_tokener_parse_ex(tok, [1,2,3,] , 8) ... OK: got correct error: unexpected character
  76. json_tokener_parse_ex(tok, {"a":1,} , 8) ... OK: got correct error: unexpected character
  77. End Incremental Tests OK=32 ERROR=0
  78. ==================================