1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
#!/usr/bin/env expect
# TODO: move this script somewhere else
# TODO: run without NO_DECODE_PROGRESS
log_user 1
set timeout 3
expect_after {
timeout {exit 1}
}
proc expect_prompt {} {
global spawn_id
sleep 0.2
expect *
send "\n"
expect "> "
}
spawn sh -c "NO_DECODE_PROGRESS=1 fq -o color=false -i . pkg/interp/testdata/test.mp3 2>&1"
expect_prompt
send ".\n"
expect "footers"
expect_prompt
# test interrupt multiple outputs
send "range(100000) | d\n"
expect "123"
# ctrl-c
send "\x03"
expect_prompt
# test interrupt multiple outputs implicit display
send "range(100000)\n"
expect "123"
# ctrl-c
send "\x03"
expect_prompt
# test interrupt big json output
send "\[range(100000)\] | d\n"
expect "123"
# ctrl-c
send "\x03"
expect_prompt
# test interrupt big json output implicit display
send "\[range(100000)\]\n"
expect "123"
# ctrl-c
send "\x03"
expect_prompt
# test exit
# ctrl-d
send "\x04"
expect eof
|