diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 13:14:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 13:14:44 +0000 |
commit | 30ff6afe596eddafacf22b1a5b2d1a3d6254ea15 (patch) | |
tree | 9b788335f92174baf7ee18f03ca8330b8c19ce2b /tests/ts/script/replay | |
parent | Initial commit. (diff) | |
download | util-linux-30ff6afe596eddafacf22b1a5b2d1a3d6254ea15.tar.xz util-linux-30ff6afe596eddafacf22b1a5b2d1a3d6254ea15.zip |
Adding upstream version 2.36.1.upstream/2.36.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ts/script/replay')
-rwxr-xr-x | tests/ts/script/replay | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/tests/ts/script/replay b/tests/ts/script/replay new file mode 100755 index 0000000..384c5b3 --- /dev/null +++ b/tests/ts/script/replay @@ -0,0 +1,98 @@ +#!/bin/bash + +# This file is part of util-linux. +# +# This file is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This file is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +TS_TOPDIR="${0%/*}/../.." +TS_DESC="replay" + +. "$TS_TOPDIR/functions.sh" +ts_init "$*" + +ts_check_test_command "$TS_CMD_SCRIPT" +ts_check_test_command "$TS_CMD_SCRIPTREPLAY" +ts_check_test_command "$TS_CMD_SCRIPTLIVE" + +LOG_OUT_FILE="${TS_OUTDIR}/${TS_TESTNAME}-logfile-out" +LOG_IN_FILE="${TS_OUTDIR}/${TS_TESTNAME}-logfile-in" +LOG_IO_FILE="${TS_OUTDIR}/${TS_TESTNAME}-logfile-io" +TIMING_FILE="${TS_OUTDIR}/${TS_TESTNAME}-logfile-tm" + +rm -f $TIMING_FILE $LOG_IN_FILE $LOG_OUT_FILE $LOG_IO_FILE + + +# +# Old command line format +# +ts_init_subtest "basic" +echo "===recording" >"$TS_OUTPUT" +$TS_CMD_SCRIPT \ + --command "echo hello world; sleep 0.5; echo all done" \ + --timing="$TIMING_FILE" \ + "$LOG_OUT_FILE" >> $TS_OUTPUT 2>> $TS_ERRLOG + +echo "===replaying" >>"$TS_OUTPUT" +$TS_CMD_SCRIPTREPLAY "$TIMING_FILE" "$LOG_OUT_FILE" 1.5 >> $TS_OUTPUT 2>> $TS_ERRLOG + +sed -i "s|$TIMING_FILE|timingfile|g; s|$LOG_OUT_FILE|outlog|g" $TS_OUTPUT $TS_ERRLOG +ts_finalize_subtest + + +# +# New command line format +# +ts_init_subtest "output" +echo "===recording" >"$TS_OUTPUT" +NUMBER=1 $TS_CMD_SCRIPT \ + --command 'echo "result is $(($NUMBER + 1))"' \ + --log-out "$LOG_OUT_FILE" \ + --log-timing "$TIMING_FILE" >> $TS_OUTPUT 2>> $TS_ERRLOG + +echo "===replaying" >>"$TS_OUTPUT" +$TS_CMD_SCRIPTREPLAY \ + --log-out "$LOG_OUT_FILE" \ + --log-timing "$TIMING_FILE" >> $TS_OUTPUT 2>> $TS_ERRLOG + +sed -i "s|$TIMING_FILE|timingfile|g; s|$LOG_OUT_FILE|outlog|g" $TS_OUTPUT $TS_ERRLOG +ts_finalize_subtest + + +# +# Log input +# +ts_init_subtest "input" +echo "===recording" >"$TS_OUTPUT" +echo 'echo "result is $(($NUMBER + 1))"' | $TS_CMD_SCRIPT \ + --command 'sh' \ + --log-in "$LOG_IN_FILE" \ + --log-timing "$TIMING_FILE" >> /dev/null 2>> $TS_ERRLOG + +echo "===replaying" >>"$TS_OUTPUT" +$TS_CMD_SCRIPTREPLAY \ + --log-in "$LOG_IN_FILE" \ + --log-timing "$TIMING_FILE" >> $TS_OUTPUT 2>> $TS_ERRLOG +ts_finalize_subtest + + +# +# Live replay +# +ts_init_subtest "live" +TS_KNOWN_FAIL="yes" +NUMBER=123 $TS_CMD_SCRIPTLIVE \ + --command 'sh' \ + --log-in "$LOG_IN_FILE" \ + --log-timing "$TIMING_FILE" >> $TS_OUTPUT 2>> $TS_ERRLOG +sed -i 's/^[[:alnum:][:punct:][:blank:]]*[\$\#] /prompt> /g' $TS_OUTPUT +ts_finalize_subtest + +ts_finalize |