1
1
mirror of https://github.com/wader/fq.git synced 2024-11-24 11:16:09 +03:00
fq/pkg/interp/testdata/value_json_array.fqtest
Mattias Wadman 691688022f fqtest: Refactor our script part to own package
Hopefully can be reused for docs generation
2021-10-06 18:49:03 +02:00

121 lines
2.3 KiB
Plaintext

$ fq -i -n '"[]" | json'
json> (.) | ., tovalue, type, length?
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|
0x0|5b 5d| |[]| |.: [0] (json)
[]
"array"
0
json> (.)[0] | ., type, length?
null
"null"
0
json> (.)[-1000] | ., type, length?
null
"null"
0
json> (.)[1000] | ., type, length?
null
"null"
0
json> (.)[1:3] | ., type, length?
[]
"array"
0
json> (.)[0:-1] | ., type, length?
[]
"array"
0
json> (.)[-1000:2000] | ., type, length?
[]
"array"
0
json> (.)["test"] | ., type, length?
error: expected an object but got: array
json> [(.)[]] | type, length?
"array"
0
json> (.) | keys
[]
json> (.) | has("a")
error: cannot check whether array has a key: a
json> (.) | has(0)
false
json> (.) | type
"array"
json> (.) | tonumber
error: tonumber cannot be applied to: array
json> (.) | tostring
error: tostring cannot be applied to: array
json> (.) + ""
error: cannot add: array ([]) and string ("")
json> (.) + 1
error: cannot add: array ([]) and number (1)
json> (.)._start | ., type, length?
0
"number"
0
json> (.)._stop | ., type, length?
16
"number"
16
json> (.)._len | ., type, length?
16
"number"
16
json> (.)._name | ., type, length?
""
"string"
0
json> (.)._symbol | ., type, length?
""
"string"
0
json> (.)._description | ., type, length?
""
"string"
0
json> (.)._path | ., type, length?
[]
"array"
0
json> (.)._bits | ., type, length?
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|
0x0|5b 5d| |[]| |.: none 0x0-0x1.7 (2)
"buffer"
16
json>
json> (.)._bytes | ., type, length?
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|
0x0|5b 5d| |[]| |.: none 0x0-0x1.7 (2)
"buffer"
2
json>
json> (.)._error | ., type, length?
null
"null"
0
json> (.)._unknown | ., type, length?
false
"boolean"
json> (.).a = 1
error: expected an object but got: array
json> (.)[0] = 1
[
1
]
json> (.).a |= empty
error: expected an object but got: array
json> (.)[0] |= empty
[]
json> (.) | setpath(["a"]; 1)
error: cannot check whether array has a key: a
json> (.) | setpath([0]; 1)
[
1
]
json> (.) | delpaths([["a"]])
error: cannot check whether array has a key: a
json> (.) | delpaths([[0]])
[]
json> ^D