1
1
mirror of https://github.com/wader/fq.git synced 2024-12-27 23:51:45 +03:00
fq/pkg/interp/testdata/inputs.fqtest

96 lines
1.6 KiB
Plaintext
Raw Normal View History

2020-06-08 03:29:51 +03:00
/a:
a
/b:
b
/c:
c
2021-11-19 13:54:34 +03:00
$ fq -d raw todescription /a /b /c
2020-06-08 03:29:51 +03:00
"/a"
"/b"
"/c"
2021-11-19 13:54:34 +03:00
$ fq -d raw '(.,inputs) | todescription' /a /b /c
2020-06-08 03:29:51 +03:00
"/a"
"/b"
"/c"
2021-11-19 13:54:34 +03:00
$ fq -d raw '(.,input,input,input) | try todescription catch .' /a /b /c
2020-06-08 03:29:51 +03:00
"/a"
"/b"
"/c"
exitcode: 5
stderr:
error: break
2021-11-19 13:54:34 +03:00
$ fq -d raw -n '(.,inputs) | try todescription catch .' /a /b /c
"expected a decode value but got: null (null)"
2020-06-08 03:29:51 +03:00
"/a"
"/b"
"/c"
2021-11-19 13:54:34 +03:00
$ fq -d raw -n 'inputs | try todescription catch .' /a /b /c
2020-06-08 03:29:51 +03:00
"/a"
"/b"
"/c"
2021-11-19 13:54:34 +03:00
$ fq -d raw -n '[inputs | try todescription catch .]' /a /b /c
2020-06-08 03:29:51 +03:00
[
"/a",
"/b",
"/c"
]
2021-11-19 13:54:34 +03:00
$ fq -d raw -n '(input,input,input,input) | todescription' /a /b /c
2020-06-08 03:29:51 +03:00
"/a"
"/b"
"/c"
exitcode: 5
stderr:
error: break
$ fq -d raw input_filename
"<stdin>"
stdin:
test
2021-08-13 17:40:28 +03:00
$ fq -d raw input_filename /a /b /c
2020-06-08 03:29:51 +03:00
"/a"
"/b"
"/c"
2021-08-13 17:40:28 +03:00
$ fq -d raw input_filename /a /non-existing /c
2020-06-08 03:29:51 +03:00
"/a"
"/c"
exitcode: 2
stderr:
error: open testdata/non-existing: no such file or directory
2021-08-13 17:40:28 +03:00
$ fq -d raw '(' /a /b /c
2020-06-08 03:29:51 +03:00
exitcode: 3
stderr:
2021-08-18 19:47:13 +03:00
error: arg:1:2: unexpected token <EOF>
2021-08-13 17:40:28 +03:00
$ fq -d raw bla /a /b /c
2020-06-08 03:29:51 +03:00
exitcode: 3
stderr:
2021-08-18 19:47:13 +03:00
error: arg:1:0: function not defined: bla/0
2021-08-13 17:40:28 +03:00
$ fq -d raw '1+"a"' /a /b /c
2020-06-08 03:29:51 +03:00
exitcode: 5
stderr:
error: cannot add: number (1) and string ("a")
error: cannot add: number (1) and string ("a")
error: cannot add: number (1) and string ("a")
2021-11-19 13:54:34 +03:00
$ fq -s -d raw '[.[] | todescription]' /a /b /c
2020-06-08 03:29:51 +03:00
[
"/a",
"/b",
"/c"
]
2021-08-13 17:40:28 +03:00
$ fq -n -s -d raw . /a /b /c
2020-06-08 03:29:51 +03:00
null
2021-08-13 17:40:28 +03:00
$ fq . /a
2020-06-08 03:29:51 +03:00
exitcode: 4
stderr:
error: /a: probe: failed to decode (try -d FORMAT)
2021-08-18 22:03:05 +03:00
$ fq -i -d raw . /a /b /c
raw, ...[3]> ._format
2021-08-18 22:03:05 +03:00
"raw"
"raw"
"raw"
raw, ...[3]> ^D
2021-08-18 22:03:05 +03:00
$ fq -i -s -d raw . /a /b /c
[raw, ...][3]> .[]._format
"raw"
"raw"
"raw"
[raw, ...][3]> ^D