1
1
mirror of https://github.com/wader/fq.git synced 2024-11-28 11:42:50 +03:00
fq/pkg/interp/testdata/value_boolean.fqtest

109 lines
3.9 KiB
Plaintext
Raw Normal View History

2020-06-08 03:29:51 +03:00
/test.mp3:
$ fq -i -d mp3 . /test.mp3
mp3> .headers[0].flags.unsynchronisation | ., tovalue, type, length?
2021-09-16 23:40:03 +03:00
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|
2020-06-08 03:29:51 +03:00
0x0| 00 | . |.headers[0].flags.unsynchronisation: false
2021-08-12 00:51:00 +03:00
false
2020-06-08 03:29:51 +03:00
"boolean"
mp3> .headers[0].flags.unsynchronisation[0] | ., type, length?
2020-06-08 03:29:51 +03:00
error: expected an array but got: boolean
mp3> .headers[0].flags.unsynchronisation[-1000] | ., type, length?
2020-06-08 03:29:51 +03:00
error: expected an array but got: boolean
mp3> .headers[0].flags.unsynchronisation[1000] | ., type, length?
2020-06-08 03:29:51 +03:00
error: expected an array but got: boolean
mp3> .headers[0].flags.unsynchronisation[1:3] | ., type, length?
2020-06-08 03:29:51 +03:00
error: expected an array but got: boolean
mp3> .headers[0].flags.unsynchronisation[0:-1] | ., type, length?
2020-06-08 03:29:51 +03:00
error: expected an array but got: boolean
mp3> .headers[0].flags.unsynchronisation[-1000:2000] | ., type, length?
2020-06-08 03:29:51 +03:00
error: expected an array but got: boolean
mp3> .headers[0].flags.unsynchronisation["test"] | ., type, length?
2020-06-08 03:29:51 +03:00
error: expected an object but got: boolean
mp3> [.headers[0].flags.unsynchronisation[]] | type, length?
2020-06-08 03:29:51 +03:00
error: cannot iterate over: boolean
mp3> .headers[0].flags.unsynchronisation | keys
2020-06-08 03:29:51 +03:00
error: keys cannot be applied to: boolean
mp3> .headers[0].flags.unsynchronisation | has("a")
2020-06-08 03:29:51 +03:00
error: has cannot be applied to: boolean
mp3> .headers[0].flags.unsynchronisation | has(0)
2020-06-08 03:29:51 +03:00
error: has cannot be applied to: boolean
mp3> .headers[0].flags.unsynchronisation | type
2020-06-08 03:29:51 +03:00
"boolean"
mp3> .headers[0].flags.unsynchronisation | tonumber
2020-06-08 03:29:51 +03:00
error: tonumber cannot be applied to: boolean
mp3> .headers[0].flags.unsynchronisation | tostring
2020-06-08 03:29:51 +03:00
"false"
mp3> .headers[0].flags.unsynchronisation + ""
2020-06-08 03:29:51 +03:00
error: cannot add: boolean (false) and string ("")
mp3> .headers[0].flags.unsynchronisation + 1
2020-06-08 03:29:51 +03:00
error: cannot add: boolean (false) and number (1)
mp3> .headers[0].flags.unsynchronisation._start | ., type, length?
2020-06-08 03:29:51 +03:00
40
"number"
40
mp3> .headers[0].flags.unsynchronisation._stop | ., type, length?
2020-06-08 03:29:51 +03:00
41
"number"
41
mp3> .headers[0].flags.unsynchronisation._len | ., type, length?
2020-06-08 03:29:51 +03:00
1
"number"
1
mp3> .headers[0].flags.unsynchronisation._name | ., type, length?
2020-06-08 03:29:51 +03:00
"unsynchronisation"
"string"
17
mp3> .headers[0].flags.unsynchronisation._symbol | ., type, length?
2020-06-08 03:29:51 +03:00
""
"string"
0
mp3> .headers[0].flags.unsynchronisation._description | ., type, length?
2020-06-08 03:29:51 +03:00
""
"string"
0
mp3> .headers[0].flags.unsynchronisation._path | ., type, length?
2020-06-08 03:29:51 +03:00
[
"headers",
0,
"flags",
"unsynchronisation"
]
"array"
4
mp3> .headers[0].flags.unsynchronisation._bits | ., type, length?
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|
2021-10-05 23:26:05 +03:00
0x0| 00 | . |.: none 0x5-0x5 (0.1)
2020-06-08 03:29:51 +03:00
"buffer"
1
mp3>
mp3> .headers[0].flags.unsynchronisation._bytes | ., type, length?
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|
2021-10-05 23:26:05 +03:00
0x0| 00 | . |.: none 0x5-0x5 (0.1)
2020-06-08 03:29:51 +03:00
"buffer"
0
mp3>
mp3> .headers[0].flags.unsynchronisation._error | ., type, length?
2020-06-08 03:29:51 +03:00
null
"null"
0
mp3> .headers[0].flags.unsynchronisation._unknown | ., type, length?
2020-06-08 03:29:51 +03:00
false
"boolean"
mp3> .headers[0].flags.unsynchronisation.a = 1
error: expected an object but got: boolean
mp3> .headers[0].flags.unsynchronisation[0] = 1
error: expected an array but got: boolean
mp3> .headers[0].flags.unsynchronisation.a |= empty
error: expected an object but got: boolean
mp3> .headers[0].flags.unsynchronisation[0] |= empty
error: expected an array but got: boolean
mp3> .headers[0].flags.unsynchronisation | setpath(["a"]; 1)
error: expected an object with key "a" but got: boolean
mp3> .headers[0].flags.unsynchronisation | setpath([0]; 1)
error: expected an array with index 0 but got: boolean
mp3> .headers[0].flags.unsynchronisation | delpaths([["a"]])
error: expected an object with key "a" but got: boolean
mp3> .headers[0].flags.unsynchronisation | delpaths([[0]])
error: expected an array with index 0 but got: boolean
mp3> ^D