test: move TEST-10-ISSUE-2467 setup to static files

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2019-12-09 20:42:48 +01:00
parent 4110a6deb9
commit 8c6d58f65d
6 changed files with 18 additions and 28 deletions

View File

@ -14,35 +14,8 @@ test_setup() {
setup_basic_environment
mask_supporting_services
dracut_install true rm socat
# setup the testsuite service
cat >$initdir/etc/systemd/system/testsuite.service <<'EOF'
[Unit]
Description=Testsuite service
[Service]
Type=oneshot
ExecStart=/bin/sh -e -x -c 'rm -f /tmp/nonexistent; systemctl start test.socket; printf x > test.file; socat -t20 OPEN:test.file UNIX-CONNECT:/run/test.ctl; >/testok'
EOF
cat >$initdir/etc/systemd/system/test.socket <<'EOF'
[Socket]
ListenStream=/run/test.ctl
EOF
cat > $initdir/etc/systemd/system/test.service <<'EOF'
[Unit]
Requires=test.socket
ConditionPathExistsGlob=/tmp/nonexistent
[Service]
ExecStart=/bin/true
EOF
setup_testsuite
)
setup_nspawn_root
}
do_test "$@"
do_test "$@" 10

View File

@ -16,6 +16,8 @@ install_subdir('testsuite-04.units',
install_dir : testdata_dir)
install_subdir('testsuite-06.units',
install_dir : testdata_dir)
install_subdir('testsuite-10.units',
install_dir : testdata_dir)
testsuite08_dir = testdata_dir + '/testsuite-08.units'
install_data('testsuite-08.units/-.mount',

View File

@ -64,6 +64,7 @@ BASICTOOLS=(
setsid
sh
sleep
socat
sulogin
tail
tee

View File

@ -0,0 +1,6 @@
[Unit]
Requires=test10.socket
ConditionPathExistsGlob=/tmp/nonexistent
[Service]
ExecStart=true

View File

@ -0,0 +1,2 @@
[Socket]
ListenStream=/run/test.ctl

View File

@ -0,0 +1,6 @@
[Unit]
Description=TEST-10-ISSUE-2467
[Service]
Type=oneshot
ExecStart=sh -e -x -c 'rm -f /tmp/nonexistent; systemctl start test10.socket; printf x >test.file; socat -t20 OPEN:test.file UNIX-CONNECT:/run/test.ctl; >/testok'