From: Frantisek Sumsal Date: Tue, 27 Feb 2024 10:10:53 +0000 (+0100) Subject: test: use socat in unidirectional mode X-Git-Tag: v256-rc1~727 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cc48d93870f356c060a4b2af1ef21b27bebe18c6;p=thirdparty%2Fsystemd.git test: use socat in unidirectional mode By default socat open a separate r/w channel for each specified address, and terminates the connection after .5s from receiving EOF on _either_ side. And since one side of that connection is an empty stdin, we reach that EOF pretty quickly. Let's avoid this by using socat in "reversed unidirectional" mode, where the first address is used only for writing, and the second one is used only for reading. Addresses: - https://github.com/systemd/systemd/issues/31500 - https://github.com/systemd/systemd/issues/31493 Follow-up for 3456c89ac26. --- diff --git a/test/units/testsuite-74.socket.sh b/test/units/testsuite-74.socket.sh index aa856e81bcb..7ef85fae552 100755 --- a/test/units/testsuite-74.socket.sh +++ b/test/units/testsuite-74.socket.sh @@ -9,21 +9,20 @@ set -o pipefail at_exit() { systemctl stop per-source-limit.socket - rm -f /run/systemd/system/per-source-limit.socket /run/systemd/system/per-source-limit@.service - rm -f /tmp/foo.conn1 /tmp/foo.conn2 /tmp/foo.conn3 /tmp/foo.conn4 + rm -f /run/systemd/system/per-source-limit{@.service,.socket} /run/foo.conn{1..4} systemctl daemon-reload } trap at_exit EXIT -cat > /run/systemd/system/per-source-limit.socket </run/systemd/system/per-source-limit.socket < /run/systemd/system/per-source-limit@.service </run/systemd/system/per-source-limit@.service < /tmp/foo.conn1 & +socat -U - UNIX-CONNECT:/run/per-source-limit.sk | tee /tmp/foo.conn1 & J1="$!" -socat - UNIX-CONNECT:/run/per-source-limit.sk > /tmp/foo.conn2 & +socat -U - UNIX-CONNECT:/run/per-source-limit.sk | tee /tmp/foo.conn2 & J2="$!" waitfor() { - while ! grep -q "waldo" "$1" ; do - sleep .2 + local file="${1:?}" + + for _ in {0..20}; do + if grep -q waldo "$file"; then + return 0 + fi + + sleep .5 done + + echo >&2 "Timeout while waiting for the expected output" + return 1 } # Wait until the word "waldo" shows in the output files @@ -54,11 +63,11 @@ waitfor /tmp/foo.conn1 waitfor /tmp/foo.conn2 # The next connection should fail, because the limit is hit -socat - UNIX-CONNECT:/run/per-source-limit.sk > /tmp/foo.conn3 & +socat -U - UNIX-CONNECT:/run/per-source-limit.sk | tee /tmp/foo.conn3 & J3="$!" # But this one should work, because done under a different UID -setpriv --reuid=1 socat - UNIX-CONNECT:/run/per-source-limit.sk > /tmp/foo.conn4 & +setpriv --reuid=1 socat -U - UNIX-CONNECT:/run/per-source-limit.sk | tee /tmp/foo.conn4 & J4="$!" waitfor /tmp/foo.conn4