1
1
mirror of https://github.com/wader/fq.git synced 2024-11-24 03:05:22 +03:00
fq/pkg/interp/testdata/gojq.fqtest
Mattias Wadman 377af133e0 fqtest: Cleanup path usage
Make cwd for a test script the directory where the script is.
Use relative paths
2022-05-21 20:03:25 +02:00

240 lines
8.3 KiB
Plaintext

# TODO: various gojq fq fork regression tests, should probably be move to fork code instead
# 0xf_ffff_ffff_fffff_fffff-1 | toradix(2,8,16)
$ fq -n '0b1111111111111111111111111111111111111111111111111111111111111111111111111110, 0o17777777777777777777777776, 0xffffffffffffffffffe'
75557863725914323419134
75557863725914323419134
75557863725914323419134
$ fq -n '[true] | all'
true
$ fq -n '{a:1, b: 2} | tostream'
[
[
"a"
],
1
]
[
[
"b"
],
2
]
[
[
"b"
]
]
$ fq -d mp3 '{(.headers[0].magic): 123}' test.mp3
{
"ID3": 123
}
$ fq -d mp3 '{(.headers[0].magic): 123}' test.mp3
{
"ID3": 123
}
$ fq -d mp3 '.frames | group_by(.side_info | {b: .main_data_end}) | map(length)' test.mp3
[
2,
1
]
$ fq -d mp3 '.frames | map(.header) | group_by(.bitrate)' test.mp3
[
[
{
"bitrate": 56000,
"channel_mode": "none",
"channels": "mono",
"copyright": 0,
"emphasis": "none",
"layer": 3,
"mpeg_version": "1",
"original": 0,
"padding": "not_padded",
"private": 0,
"protection_absent": true,
"sample_count": 1152,
"sample_rate": 44100,
"sync": 2047
}
],
[
{
"bitrate": 64000,
"channel_mode": "none",
"channels": "mono",
"copyright": 0,
"emphasis": "none",
"layer": 3,
"mpeg_version": "1",
"original": 1,
"padding": "not_padded",
"private": 0,
"protection_absent": true,
"sample_count": 1152,
"sample_rate": 44100,
"sync": 2047
},
{
"bitrate": 64000,
"channel_mode": "none",
"channels": "mono",
"copyright": 0,
"emphasis": "none",
"layer": 3,
"mpeg_version": "1",
"original": 1,
"padding": "padded",
"private": 0,
"protection_absent": true,
"sample_count": 1152,
"sample_rate": 44100,
"sync": 2047
}
]
]
$ fq -d mp3 '.frames | map(.header) | sort_by(.bitrate)' test.mp3
[
{
"bitrate": 56000,
"channel_mode": "none",
"channels": "mono",
"copyright": 0,
"emphasis": "none",
"layer": 3,
"mpeg_version": "1",
"original": 0,
"padding": "not_padded",
"private": 0,
"protection_absent": true,
"sample_count": 1152,
"sample_rate": 44100,
"sync": 2047
},
{
"bitrate": 64000,
"channel_mode": "none",
"channels": "mono",
"copyright": 0,
"emphasis": "none",
"layer": 3,
"mpeg_version": "1",
"original": 1,
"padding": "not_padded",
"private": 0,
"protection_absent": true,
"sample_count": 1152,
"sample_rate": 44100,
"sync": 2047
},
{
"bitrate": 64000,
"channel_mode": "none",
"channels": "mono",
"copyright": 0,
"emphasis": "none",
"layer": 3,
"mpeg_version": "1",
"original": 1,
"padding": "padded",
"private": 0,
"protection_absent": true,
"sample_count": 1152,
"sample_rate": 44100,
"sync": 2047
}
]
$ fq -d mp3 '.frames | map(.header) | sort_by(.bitrate)[0]' test.mp3
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.frames[0].header{}:
0x20| ff fb | .. | sync: 0b11111111111 (valid)
0x20| fb | . | mpeg_version: "1" (3) (MPEG Version 1)
0x20| fb | . | layer: 3 (1) (MPEG Layer 3)
| | | sample_count: 1152
0x20| fb | . | protection_absent: true (No CRC)
0x20| 40| @| bitrate: 56000 (4)
0x20| 40| @| sample_rate: 44100 (0)
0x20| 40| @| padding: "not_padded" (0b0)
0x20| 40| @| private: 0
0x30|c0 |. | channels: "mono" (0b11)
0x30|c0 |. | channel_mode: "none" (0b0)
0x30|c0 |. | copyright: 0
0x30|c0 |. | original: 0
0x30|c0 |. | emphasis: "none" (0b0)
$ fq -d mp3 '.frames | map(.header) | min_by(.bitrate)' test.mp3
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.frames[0].header{}:
0x20| ff fb | .. | sync: 0b11111111111 (valid)
0x20| fb | . | mpeg_version: "1" (3) (MPEG Version 1)
0x20| fb | . | layer: 3 (1) (MPEG Layer 3)
| | | sample_count: 1152
0x20| fb | . | protection_absent: true (No CRC)
0x20| 40| @| bitrate: 56000 (4)
0x20| 40| @| sample_rate: 44100 (0)
0x20| 40| @| padding: "not_padded" (0b0)
0x20| 40| @| private: 0
0x30|c0 |. | channels: "mono" (0b11)
0x30|c0 |. | channel_mode: "none" (0b0)
0x30|c0 |. | copyright: 0
0x30|c0 |. | original: 0
0x30|c0 |. | emphasis: "none" (0b0)
$ fq -d mp3 '.frames | map(.header) | max_by(.bitrate)' test.mp3
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.frames[2].header{}:
0x1b0| ff fb | .. | sync: 0b11111111111 (valid)
0x1b0| fb | . | mpeg_version: "1" (3) (MPEG Version 1)
0x1b0| fb | . | layer: 3 (1) (MPEG Layer 3)
| | | sample_count: 1152
0x1b0| fb | . | protection_absent: true (No CRC)
0x1b0| 52 | R | bitrate: 64000 (5)
0x1b0| 52 | R | sample_rate: 44100 (0)
0x1b0| 52 | R | padding: "padded" (0b1)
0x1b0| 52 | R | private: 0
0x1b0| c4 | . | channels: "mono" (0b11)
0x1b0| c4 | . | channel_mode: "none" (0b0)
0x1b0| c4 | . | copyright: 0
0x1b0| c4 | . | original: 1
0x1b0| c4 | . | emphasis: "none" (0b0)
$ fq -d mp3 '.frames[0] | . + .header | keys, .bitrate' test.mp3
[
"bitrate",
"channel_mode",
"channels",
"copyright",
"crc_calculated",
"emphasis",
"header",
"layer",
"mpeg_version",
"original",
"padding",
"private",
"protection_absent",
"sample_count",
"sample_rate",
"side_info",
"sync",
"xing"
]
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|
0x20| 40| @|.frames[0].header.bitrate: 56000 (4)
$ fq -d mp3 '[.frames[0] | ., .header] | add | keys, .bitrate' test.mp3
[
"bitrate",
"channel_mode",
"channels",
"copyright",
"crc_calculated",
"emphasis",
"header",
"layer",
"mpeg_version",
"original",
"padding",
"private",
"protection_absent",
"sample_count",
"sample_rate",
"side_info",
"sync",
"xing"
]
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|
0x20| 40| @|.frames[0].header.bitrate: 56000 (4)