diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-06-20 09:07:45 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-06-20 09:07:45 -0700 |
commit | a9835d6c37d2a3c762c4620294d0b2a13d543ccb (patch) | |
tree | 7089aff7f2d274ed013115f4152ac311f79c21ea /tests/010 | |
parent | 7c34d91f30e5a77bc12b811f6c836cea71905529 (diff) | |
download | txr-a9835d6c37d2a3c762c4620294d0b2a13d543ccb.tar.gz txr-a9835d6c37d2a3c762c4620294d0b2a13d543ccb.tar.bz2 txr-a9835d6c37d2a3c762c4620294d0b2a13d543ccb.zip |
read/get-json: reject trailing junk in string input.
* parser.c (lisp_parse_impl): If parsing from string, check
for trailing junk and diagnose. JSON parsing doesn't use
lookahead because it doesn't have a.b syntax, so the
recent_tok gives the last token that actually went into the
syntax, and not a lookahead token. So in the case of JSON,
we call yylex to see if there is any trailing token.
* tests/010/json.tl: Extend get-json tests to more kinds of
objects, and then replicate with trailing whitespace and
trailing junk to provide coverage for these cases.
* tests/012/parse.t: Slew of new read tests and iread also.
* txr.1: Documented.
Diffstat (limited to 'tests/010')
-rw-r--r-- | tests/010/json.tl | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/tests/010/json.tl b/tests/010/json.tl index 29ee2833..8d414b2e 100644 --- a/tests/010/json.tl +++ b/tests/010/json.tl @@ -92,7 +92,27 @@ (get-json "\"abc\"") "abc" (get-json "true") t (get-json "false") nil - (get-json "null") null) + (get-json "null") null + (get-json "[1,2,3]") #(1.0 2.0 3.0) + (get-json "{\"a\":\"b\"}") #H(() ("a" "b"))) + +(mtest + (get-json "0 \n") 0.0 + (get-json "\"abc\" \n") "abc" + (get-json "true \n") t + (get-json "false \n") nil + (get-json "null \n") null + (get-json "[1,2,3] \n") #(1.0 2.0 3.0) + (get-json "{\"a\":\"b\"} \n") #H(() ("a" "b"))) + +(mtest + (get-json "0,") :error + (get-json "\"abc\",") :error + (get-json "true,") :error + (get-json "false,") :error + (get-json "null,") :error + (get-json "[1,2,3],") :error + (get-json "{\"a\":\"b\"},") :error) (mtest (tojson #(1.0 "abc" t)) "[1,\"abc\",true]" |