diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 20:34:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 20:34:44 +0000 |
commit | b08293e544fb5eb5e004f02139e4aa06660395b6 (patch) | |
tree | 4b00360b4f034158a87d15d0d6dd797c42270717 /debian/tests/w | |
parent | Adding upstream version 2:4.0.4. (diff) | |
download | procps-b08293e544fb5eb5e004f02139e4aa06660395b6.tar.xz procps-b08293e544fb5eb5e004f02139e4aa06660395b6.zip |
Adding debian version 2:4.0.4-4.debian/2%4.0.4-4debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | debian/tests/w | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/debian/tests/w b/debian/tests/w new file mode 100644 index 0000000..6a4c15f --- /dev/null +++ b/debian/tests/w @@ -0,0 +1,37 @@ +#!/bin/sh + +exec 2>&1 + +test_no_arguments() { + ( w >"${stdoutF}" 2>"${stderrF}" ) + rtrn=$? + + assertEquals "w exit value" "0" "${rtrn}" + grep -E '^USER[[:space:]]+TTY[[:space:]]+FROM' "${stdoutF}" > /dev/null + assertTrue 'header line' $? +} + +test_no_header() { + ( w -h >"${stdoutF}" 2>"${stderrF}" ) + rtrn=$? + + assertEquals "w exit value" "0" "${rtrn}" + grep -E '^USER[[:space:]]+TTY[[:space:]]+FROM' "${stdoutF}" > /dev/null + assertFalse 'header line with -h option' $? +} +oneTimeSetUp() { + # Define global variables for command output. + stdoutF="${AUTOPKGTEST_TMP}/stdout" + stderrF="${AUTOPKGTEST_TMP}/stderr" +} + +setUp() { + # Truncate the output files. + cp /dev/null "${stdoutF}" + cp /dev/null "${stderrF}" +} + + +# shellcheck disable=SC1091 +. shunit2 + |