594167
From e7bd636e75a5435b80a1df478e9e637dd2f7b851 Mon Sep 17 00:00:00 2001
594167
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
594167
Date: Mon, 7 Mar 2022 12:15:42 +0100
594167
Subject: [PATCH] test: add test for systemctl link & enable
594167
594167
This test has overlap with test-install-root, but it tests things at a
594167
different level, so I think it's useful to add. It immediately shows various
594167
bugs which will be fixed in later patches.
594167
594167
(cherry picked from commit 50c5f5a3d907f819fa139e1853f660ad4fd82c55)
594167
594167
Related: #2082131
594167
---
594167
 meson.build                   |   9 +-
594167
 test/meson.build              |   1 +
594167
 test/test-systemctl-enable.sh | 523 ++++++++++++++++++++++++++++++++++
594167
 3 files changed, 532 insertions(+), 1 deletion(-)
594167
 create mode 100644 test/test-systemctl-enable.sh
594167
594167
diff --git a/meson.build b/meson.build
594167
index fdf02b8110..005af872cf 100644
594167
--- a/meson.build
594167
+++ b/meson.build
594167
@@ -2371,7 +2371,7 @@ public_programs += executable(
594167
         install_rpath : rootlibexecdir,
594167
         install : true)
594167
 
594167
-public_programs += executable(
594167
+exe = executable(
594167
         'systemctl',
594167
         systemctl_sources,
594167
         include_directories : includes,
594167
@@ -2385,6 +2385,13 @@ public_programs += executable(
594167
         install_rpath : rootlibexecdir,
594167
         install : true,
594167
         install_dir : rootbindir)
594167
+public_programs += exe
594167
+if want_tests != 'false'
594167
+        test('test-systemctl-enable',
594167
+             test_systemctl_enable_sh,
594167
+             # https://github.com/mesonbuild/meson/issues/2681
594167
+             args : exe.full_path())
594167
+endif
594167
 
594167
 if conf.get('ENABLE_PORTABLED') == 1
594167
         dbus_programs += executable(
594167
diff --git a/test/meson.build b/test/meson.build
594167
index c5d8d6917b..c69d8a0204 100644
594167
--- a/test/meson.build
594167
+++ b/test/meson.build
594167
@@ -88,6 +88,7 @@ endif
594167
 
594167
 test_fstab_generator_sh = find_program('test-fstab-generator.sh')
594167
 test_network_generator_conversion_sh = find_program('test-network-generator-conversion.sh')
594167
+test_systemctl_enable_sh = find_program('test-systemctl-enable.sh')
594167
 test_systemd_tmpfiles_py = find_program('test-systemd-tmpfiles.py')
594167
 hwdb_test_sh = find_program('hwdb-test.sh')
594167
 
594167
diff --git a/test/test-systemctl-enable.sh b/test/test-systemctl-enable.sh
594167
new file mode 100644
594167
index 0000000000..30ba6532e7
594167
--- /dev/null
594167
+++ b/test/test-systemctl-enable.sh
594167
@@ -0,0 +1,523 @@
594167
+#!/usr/bin/env bash
594167
+# SPDX-License-Identifier: LGPL-2.1-or-later
594167
+set -ex
594167
+
594167
+# Silence warning from running_in_chroot_or_offline()
594167
+export SYSTEMD_IGNORE_CHROOT=1
594167
+
594167
+systemctl=${1:-systemctl}
594167
+
594167
+unset root
594167
+cleanup() {
594167
+    [ -n "$root" ] && rm -rf "$root"
594167
+}
594167
+trap cleanup exit
594167
+root=$(mktemp -d --tmpdir systemctl-test.XXXXXX)
594167
+
594167
+islink() {
594167
+    test -h "$1" || return 1
594167
+    test "$(readlink "$1")" = "$2" || return 2
594167
+}
594167
+
594167
+: ------enablement nonexistent--------------------------------
594167
+"$systemctl" --root="$root" enable test1.service && { echo "Expected failure" >&2; exit 1; }
594167
+
594167
+: ------basic enablement--------------------------------------
594167
+mkdir -p "$root/etc/systemd/system"
594167
+cat >"$root/etc/systemd/system/test1.service" <
594167
+[Install]
594167
+WantedBy=default.target
594167
+RequiredBy=special.target
594167
+EOF
594167
+
594167
+"$systemctl" --root="$root" enable test1.service
594167
+test -h "$root/etc/systemd/system/default.target.wants/test1.service"
594167
+test -h "$root/etc/systemd/system/special.target.requires/test1.service"
594167
+
594167
+"$systemctl" --root="$root" reenable test1.service
594167
+test -h "$root/etc/systemd/system/default.target.wants/test1.service"
594167
+test -h "$root/etc/systemd/system/special.target.requires/test1.service"
594167
+
594167
+"$systemctl" --root="$root" disable test1.service
594167
+test ! -e "$root/etc/systemd/system/default.target.wants/test1.service"
594167
+test ! -e "$root/etc/systemd/system/special.target.requires/test1.service"
594167
+
594167
+: ------suffix guessing---------------------------------------
594167
+"$systemctl" --root="$root" enable test1
594167
+test -h "$root/etc/systemd/system/default.target.wants/test1.service"
594167
+test -h "$root/etc/systemd/system/special.target.requires/test1.service"
594167
+
594167
+"$systemctl" --root="$root" reenable test1
594167
+test -h "$root/etc/systemd/system/default.target.wants/test1.service"
594167
+test -h "$root/etc/systemd/system/special.target.requires/test1.service"
594167
+
594167
+"$systemctl" --root="$root" disable test1
594167
+test ! -e "$root/etc/systemd/system/default.target.wants/test1.service"
594167
+test ! -e "$root/etc/systemd/system/special.target.requires/test1.service"
594167
+
594167
+: -------aliases----------------------------------------------
594167
+"$systemctl" --root="$root" enable test1
594167
+test -h "$root/etc/systemd/system/default.target.wants/test1.service"
594167
+test -h "$root/etc/systemd/system/special.target.requires/test1.service"
594167
+
594167
+cat >>"$root/etc/systemd/system/test1.service" <
594167
+Alias=test1-goodalias.service
594167
+Alias=test1@badalias.service
594167
+Alias=test1-badalias.target
594167
+Alias=test1-badalias.socket
594167
+EOF
594167
+
594167
+: -------aliases in reeanble----------------------------------
594167
+"$systemctl" --root="$root" reenable test1
594167
+test -h "$root/etc/systemd/system/default.target.wants/test1.service"
594167
+test ! -e "$root/etc/systemd/system/test1-goodalias.service"
594167
+test -h "$root/etc/systemd/system/test1-goodalias.service"
594167
+
594167
+test ! -e "$root/etc/systemd/system/test1@badalias.service"
594167
+test ! -e "$root/etc/systemd/system/test1-badalias.target"
594167
+test ! -e "$root/etc/systemd/system/test1-badalias.socket"
594167
+
594167
+"$systemctl" --root="$root" disable test1
594167
+test ! -e "$root/etc/systemd/system/default.target.wants/test1.service"
594167
+test ! -e "$root/etc/systemd/system/special.target.requires/test1.service"
594167
+test ! -e "$root/etc/systemd/system/test1-goodalias.service"
594167
+
594167
+: -------also units-------------------------------------------
594167
+cat >"$root/etc/systemd/system/test2.socket" <
594167
+[Install]
594167
+WantedBy=sockets.target
594167
+Also=test2.service
594167
+EOF
594167
+
594167
+cat >"$root/etc/systemd/system/test2.service" <
594167
+[Install]
594167
+WantedBy=default.target
594167
+Also=test2.socket
594167
+EOF
594167
+
594167
+"$systemctl" --root="$root" reenable test2.service
594167
+test -h "$root/etc/systemd/system/default.target.wants/test2.service"
594167
+test -h "$root/etc/systemd/system/sockets.target.wants/test2.socket"
594167
+
594167
+"$systemctl" --root="$root" reenable test2.socket
594167
+test -h "$root/etc/systemd/system/default.target.wants/test2.service"
594167
+test -h "$root/etc/systemd/system/sockets.target.wants/test2.socket"
594167
+
594167
+"$systemctl" --root="$root" disable test2.socket
594167
+test ! -e "$root/etc/systemd/system/default.target.wants/test2.service"
594167
+test ! -e "$root/etc/systemd/system/sockets.target.wants/test2.socket"
594167
+
594167
+
594167
+: -------link-------------------------------------------------
594167
+# File doesn't exist yet
594167
+test ! -e "$root/link1.path"
594167
+"$systemctl" --root="$root" link '/link1.path' && { echo "Expected failure" >&2; exit 1; }
594167
+test ! -e "$root/etc/systemd/system/link1.path"
594167
+
594167
+cat >"$root/link1.path" <
594167
+[Install]
594167
+WantedBy=paths.target
594167
+EOF
594167
+
594167
+"$systemctl" --root="$root" link '/link1.path'
594167
+islink "$root/etc/systemd/system/link1.path" "/link1.path"
594167
+
594167
+: -------link already linked same path------------------------
594167
+SYSTEMD_LOG_LEVEL=debug "$systemctl" --root="$root" link '/link1.path'  # this passes
594167
+islink "$root/etc/systemd/system/link1.path" "/link1.path"
594167
+
594167
+: -------link already linked different path-------------------
594167
+mkdir "$root/subdir"
594167
+cp "$root/link1.path" "$root/subdir/"
594167
+"$systemctl" --root="$root" link '/subdir/link1.path' && { echo "Expected failure" >&2; exit 1; }
594167
+islink "$root/etc/systemd/system/link1.path" "/link1.path"
594167
+
594167
+: -------link bad suffix--------------------------------------
594167
+cp "$root/link1.path" "$root/subdir/link1.suffix"
594167
+"$systemctl" --root="$root" link '/subdir/link1.suffix' && { echo "Expected failure" >&2; exit 1; }
594167
+test ! -e "$root/etc/systemd/system/link1.suffix"
594167
+
594167
+: -------unlink by unit name----------------------------------
594167
+"$systemctl" --root="$root" disable 'link1.path'
594167
+test ! -e "$root/etc/systemd/system/link1.path"
594167
+
594167
+: -------unlink by path---------------------------------------
594167
+"$systemctl" --root="$root" link '/link1.path'
594167
+test -h "$root/etc/systemd/system/link1.path"
594167
+"$systemctl" --root="$root" disable '/link1.path'
594167
+test ! -e "$root/etc/systemd/system/link1.path"
594167
+
594167
+: -------unlink by wrong path---------------------------------
594167
+"$systemctl" --root="$root" link '/link1.path'
594167
+test -h "$root/etc/systemd/system/link1.path"
594167
+"$systemctl" --root="$root" disable '/subdir/link1.path'  # we only care about the name
594167
+test ! -e "$root/etc/systemd/system/link1.path"
594167
+
594167
+
594167
+: -------link and enable--------------------------------------
594167
+"$systemctl" --root="$root" enable '/link1.path'
594167
+islink "$root/etc/systemd/system/link1.path" "/link1.path"
594167
+islink "$root/etc/systemd/system/paths.target.wants/link1.path" "/link1.path"
594167
+
594167
+: -------enable already linked same path----------------------
594167
+"$systemctl" --root="$root" enable '/link1.path'
594167
+islink "$root/etc/systemd/system/link1.path" "/link1.path"
594167
+islink "$root/etc/systemd/system/paths.target.wants/link1.path" "/link1.path"
594167
+
594167
+: -------enable already linked different path-----------------
594167
+# FIXME
594167
+# "$systemctl" --root="$root" enable '/subdir/link1.path' && { echo "Expected failure" >&2; exit 1; }
594167
+# test -h "$root/etc/systemd/system/link1.path"
594167
+# readlink "$root/etc/systemd/system/link1.path"
594167
+# test -h "$root/etc/systemd/system/paths.target.wants/link1.path"
594167
+# readlink "$root/etc/systemd/system/paths.target.wants/link1.path"
594167
+
594167
+: -------enable bad suffix------------------------------------
594167
+cp "$root/link1.path" "$root/subdir/link1.suffix"
594167
+"$systemctl" --root="$root" enable '/subdir/link1.suffix' && { echo "Expected failure" >&2; exit 1; }
594167
+test ! -e "$root/etc/systemd/system/link1.suffix"
594167
+test ! -e "$root/etc/systemd/system/paths.target.wants/link1.suffix"
594167
+
594167
+: -------disable by unit name---------------------------------
594167
+"$systemctl" --root="$root" disable 'link1.path'
594167
+test ! -e "$root/etc/systemd/system/link1.path"
594167
+test ! -e "$root/etc/systemd/system/paths.target.wants/link1.path"
594167
+
594167
+: -------disable by path--------------------------------------
594167
+"$systemctl" --root="$root" enable '/link1.path'
594167
+test -h "$root/etc/systemd/system/link1.path"
594167
+test -h "$root/etc/systemd/system/paths.target.wants/link1.path"
594167
+"$systemctl" --root="$root" disable '/link1.path'
594167
+test ! -e "$root/etc/systemd/system/link1.path"
594167
+test ! -e "$root/etc/systemd/system/paths.target.wants/link1.path"
594167
+
594167
+
594167
+: -------link then enable-------------------------------------
594167
+"$systemctl" --root="$root" link '/link1.path'
594167
+islink "$root/etc/systemd/system/link1.path" "/link1.path"
594167
+test ! -h "$root/etc/systemd/system/paths.target.wants/link1.path"
594167
+
594167
+"$systemctl" --root="$root" enable 'link1.path'
594167
+islink "$root/etc/systemd/system/link1.path" "/link1.path"
594167
+islink "$root/etc/systemd/system/paths.target.wants/link1.path" "/link1.path"
594167
+
594167
+# FIXME
594167
+# "$systemctl" --root="$root" reenable 'link1.path'
594167
+# islink "$root/etc/systemd/system/link1.path" "/link1.path"
594167
+# islink "$root/etc/systemd/system/paths.target.wants/link1.path" "/link1.path"
594167
+
594167
+
594167
+: -------manual link------------------------------------------
594167
+cat >"$root/link3.suffix" <
594167
+[Install]
594167
+WantedBy=services.target
594167
+EOF
594167
+
594167
+ln -s "/link3.suffix" "$root/etc/systemd/system/link3.service"
594167
+
594167
+# SYSTEMD_LOG_LEVEL=debug SYSTEMD_LOG_LOCATION=1 "$systemctl" --root="$root" enable 'link3.service'
594167
+# islink "$root/etc/systemd/system/link3.service" "/link3.suffix"
594167
+# islink "$root/etc/systemd/system/services.target.wants/link3.service" "../link3.service"
594167
+# unit_file_load_or_readlink() needs to be fixed to not follow links
594167
+
594167
+: -------enable on masked-------------------------------------
594167
+ln -s "/dev/null" "$root/etc/systemd/system/masked.service"
594167
+"$systemctl" --root="$root" enable 'masked.service' && { echo "Expected failure" >&2; exit 1; }
594167
+"$systemctl" --root="$root" enable '/etc/systemd/system/masked.service' && { echo "Expected failure" >&2; exit 1; }
594167
+
594167
+: -------enable on masked alias-------------------------------
594167
+test -h "$root/etc/systemd/system/masked.service"
594167
+ln -s "masked.service" "$root/etc/systemd/system/masked-alias.service"
594167
+"$systemctl" --root="$root" enable 'masked-alias.service' && { echo "Expected failure" >&2; exit 1; }
594167
+"$systemctl" --root="$root" enable '/etc/systemd/system/masked-alias.service' && { echo "Expected failure" >&2; exit 1; }
594167
+
594167
+: -------issue 22000: link in subdirectory--------------------
594167
+mkdir -p "$root/etc/systemd/system/myown.d"
594167
+cat >"$root/etc/systemd/system/link5-also.service" <
594167
+[Install]
594167
+WantedBy=services.target
594167
+Also=link5.service
594167
+EOF
594167
+cat >"$root/etc/systemd/system/myown.d/link5.service" <
594167
+[Install]
594167
+WantedBy=services.target
594167
+Also=link5-also.service
594167
+EOF
594167
+
594167
+"$systemctl" --root="$root" enable 'link5.service' && { echo "Expected failure" >&2; exit 1; }
594167
+test ! -h "$root/etc/systemd/system/services.target.wants/link5.service"
594167
+test ! -h "$root/etc/systemd/system/services.target.wants/link5-also.service"
594167
+
594167
+"$systemctl" --root="$root" enable 'link5-also.service'
594167
+test ! -h "$root/etc/systemd/system/services.target.wants/link5.service"
594167
+islink "$root/etc/systemd/system/services.target.wants/link5-also.service" "/etc/systemd/system/link5-also.service"
594167
+
594167
+: -------template enablement----------------------------------
594167
+cat >"$root/etc/systemd/system/templ1@.service" <
594167
+[Install]
594167
+WantedBy=services.target
594167
+EOF
594167
+
594167
+# No instance here — this can't succeed.
594167
+"$systemctl" --root="$root" enable 'templ1@.service' && { echo "Expected failure" >&2; exit 1; }
594167
+test ! -h "$root/etc/systemd/system/services.target.wants/templ1@.service"
594167
+
594167
+"$systemctl" --root="$root" enable 'templ1@one.service'
594167
+test ! -h "$root/etc/systemd/system/services.target.wants/templ1@.service"
594167
+islink "$root/etc/systemd/system/services.target.wants/templ1@one.service" "/etc/systemd/system/templ1@.service"
594167
+
594167
+"$systemctl" --root="$root" enable 'templ1@two.service'
594167
+test ! -h "$root/etc/systemd/system/services.target.wants/templ1@.service"
594167
+islink "$root/etc/systemd/system/services.target.wants/templ1@one.service" "/etc/systemd/system/templ1@.service"
594167
+islink "$root/etc/systemd/system/services.target.wants/templ1@two.service" "/etc/systemd/system/templ1@.service"
594167
+
594167
+"$systemctl" --root="$root" disable 'templ1@one.service'
594167
+test ! -h "$root/etc/systemd/system/services.target.wants/templ1@.service"
594167
+test ! -h "$root/etc/systemd/system/services.target.wants/templ1@one.service"
594167
+islink "$root/etc/systemd/system/services.target.wants/templ1@two.service" "/etc/systemd/system/templ1@.service"
594167
+
594167
+"$systemctl" --root="$root" disable 'templ1@two.service'
594167
+test ! -h "$root/etc/systemd/system/services.target.wants/templ1@.service"
594167
+test ! -h "$root/etc/systemd/system/services.target.wants/templ1@one.service"
594167
+test ! -h "$root/etc/systemd/system/services.target.wants/templ1@two.service"
594167
+
594167
+: -------template enablement w/ default instance--------------
594167
+cat >>"$root/etc/systemd/system/templ1@.service" <
594167
+DefaultInstance=333
594167
+EOF
594167
+# FIXME: should we deduplicate the target? Right now we warn twice if WantedBy= is repeated.
594167
+# WantedBy=services.target services.target
594167
+
594167
+"$systemctl" --root="$root" enable 'templ1@.service'
594167
+test ! -h "$root/etc/systemd/system/services.target.wants/templ1@.service"
594167
+islink "$root/etc/systemd/system/services.target.wants/templ1@333.service" "/etc/systemd/system/templ1@.service"
594167
+
594167
+"$systemctl" --root="$root" enable 'templ1@one.service'
594167
+test ! -h "$root/etc/systemd/system/services.target.wants/templ1@.service"
594167
+islink "$root/etc/systemd/system/services.target.wants/templ1@333.service" "/etc/systemd/system/templ1@.service"
594167
+islink "$root/etc/systemd/system/services.target.wants/templ1@one.service" "/etc/systemd/system/templ1@.service"
594167
+
594167
+"$systemctl" --root="$root" enable 'templ1@two.service'
594167
+test ! -h "$root/etc/systemd/system/services.target.wants/templ1@.service"
594167
+islink "$root/etc/systemd/system/services.target.wants/templ1@333.service" "/etc/systemd/system/templ1@.service"
594167
+islink "$root/etc/systemd/system/services.target.wants/templ1@one.service" "/etc/systemd/system/templ1@.service"
594167
+islink "$root/etc/systemd/system/services.target.wants/templ1@two.service" "/etc/systemd/system/templ1@.service"
594167
+
594167
+"$systemctl" --root="$root" disable 'templ1@one.service'
594167
+test ! -h "$root/etc/systemd/system/services.target.wants/templ1@.service"
594167
+islink "$root/etc/systemd/system/services.target.wants/templ1@333.service" "/etc/systemd/system/templ1@.service"
594167
+test ! -h "$root/etc/systemd/system/services.target.wants/templ1@one.service"
594167
+islink "$root/etc/systemd/system/services.target.wants/templ1@two.service" "/etc/systemd/system/templ1@.service"
594167
+
594167
+# disable both remaining links here
594167
+"$systemctl" --root="$root" disable 'templ1@.service'
594167
+test ! -h "$root/etc/systemd/system/services.target.wants/templ1@.service"
594167
+test ! -h "$root/etc/systemd/system/services.target.wants/templ1@333.service"
594167
+test ! -h "$root/etc/systemd/system/services.target.wants/templ1@one.service"
594167
+test ! -h "$root/etc/systemd/system/services.target.wants/templ1@two.service"
594167
+
594167
+: -------aliases w/ and w/o instance--------------------------
594167
+test ! -e "$root/etc/systemd/system/link4.service"
594167
+cat >"$root/etc/systemd/system/link4.service" <
594167
+[Install]
594167
+# FIXME: self-alias should be ignored
594167
+# Alias=link4.service
594167
+Alias=link4@.service
594167
+Alias=link4@inst.service
594167
+Alias=link4alias.service
594167
+Alias=link4alias2.service
594167
+EOF
594167
+
594167
+"$systemctl" --root="$root" enable 'link4.service'
594167
+test ! -h "$root/etc/systemd/system/link4.service"  # this is our file
594167
+test ! -h "$root/etc/systemd/system/link4@.service"
594167
+test ! -h "$root/etc/systemd/system/link4@inst.service"
594167
+islink "$root/etc/systemd/system/link4alias.service" "/etc/systemd/system/link4.service"
594167
+islink "$root/etc/systemd/system/link4alias2.service" "/etc/systemd/system/link4.service"
594167
+
594167
+"$systemctl" --root="$root" disable 'link4.service'
594167
+test ! -h "$root/etc/systemd/system/link4.service"
594167
+test ! -h "$root/etc/systemd/system/link4@.service"
594167
+test ! -h "$root/etc/systemd/system/link4@inst.service"
594167
+test ! -h "$root/etc/systemd/system/link4alias.service"
594167
+test ! -h "$root/etc/systemd/system/link4alias2.service"
594167
+
594167
+: -------systemctl enable on path to unit file----------------
594167
+# Apparently this works. I'm not sure what to think.
594167
+"$systemctl" --root="$root" enable '/etc/systemd/system/link4.service'
594167
+test ! -h "$root/etc/systemd/system/link4.service"  # this is our file
594167
+test ! -h "$root/etc/systemd/system/link4@.service"
594167
+test ! -h "$root/etc/systemd/system/link4@inst.service"
594167
+islink "$root/etc/systemd/system/link4alias.service" "/etc/systemd/system/link4.service"
594167
+islink "$root/etc/systemd/system/link4alias2.service" "/etc/systemd/system/link4.service"
594167
+
594167
+"$systemctl" --root="$root" disable '/etc/systemd/system/link4.service'
594167
+test ! -h "$root/etc/systemd/system/link4.service"
594167
+test ! -h "$root/etc/systemd/system/link4@.service"
594167
+test ! -h "$root/etc/systemd/system/link4@inst.service"
594167
+test ! -h "$root/etc/systemd/system/link4alias.service"
594167
+test ! -h "$root/etc/systemd/system/link4alias2.service"
594167
+
594167
+: -------issue 661: link and enable on unit file--------------
594167
+test ! -e "$root/etc/systemd/system/link5.service"
594167
+cat >"$root/etc/systemd/system/link5.service" <
594167
+[Install]
594167
+# FIXME: self-alias should be ignored
594167
+# Alias=link5.service
594167
+Alias=link5@.service
594167
+Alias=link5@inst.service
594167
+Alias=link5alias.service
594167
+Alias=link5alias2.service
594167
+EOF
594167
+
594167
+"$systemctl" --root="$root" enable 'link5.service'
594167
+test ! -h "$root/etc/systemd/system/link5.service"  # this is our file
594167
+test ! -h "$root/etc/systemd/system/link5@.service"
594167
+test ! -h "$root/etc/systemd/system/link5@inst.service"
594167
+# FIXME/CLARIFYME: will systemd think that link5alias2, link5alias, link5 are all aliases?
594167
+# https://github.com/systemd/systemd/issues/661#issuecomment-1057931149
594167
+islink "$root/etc/systemd/system/link5alias.service" "/etc/systemd/system/link5.service"
594167
+islink "$root/etc/systemd/system/link5alias2.service" "/etc/systemd/system/link5.service"
594167
+
594167
+"$systemctl" --root="$root" disable 'link5.service'
594167
+test ! -h "$root/etc/systemd/system/link5.service"
594167
+test ! -h "$root/etc/systemd/system/link5@.service"
594167
+test ! -h "$root/etc/systemd/system/link5@inst.service"
594167
+test ! -h "$root/etc/systemd/system/link5alias.service"
594167
+test ! -h "$root/etc/systemd/system/link5alias2.service"
594167
+
594167
+: ----issue 19437: plain templates in .wants/ or .requires/---
594167
+test ! -e "$root/etc/systemd/system/link5@.path"
594167
+cat >"$root/etc/systemd/system/link5@.path" <
594167
+[Install]
594167
+WantedBy=target5@.target
594167
+RequiredBy=target5@.target
594167
+WantedBy=target5@inst.target
594167
+RequiredBy=target5@inst.target
594167
+EOF
594167
+
594167
+"$systemctl" --root="$root" enable 'link5@.path'
594167
+test ! -h "$root/etc/systemd/system/link5@.path"  # this is our file
594167
+islink "$root/etc/systemd/system/target5@.target.wants/link5@.path" "/etc/systemd/system/link5@.path"
594167
+islink "$root/etc/systemd/system/target5@.target.requires/link5@.path" "/etc/systemd/system/link5@.path"
594167
+islink "$root/etc/systemd/system/target5@inst.target.wants/link5@.path" "/etc/systemd/system/link5@.path"
594167
+islink "$root/etc/systemd/system/target5@inst.target.requires/link5@.path" "/etc/systemd/system/link5@.path"
594167
+
594167
+"$systemctl" --root="$root" disable 'link5@.path'
594167
+test ! -h "$root/etc/systemd/system/link5@.path"  # this is our file
594167
+test ! -h "$root/etc/systemd/system/target5@.target.wants/link5@.path"
594167
+test ! -h "$root/etc/systemd/system/target5@.target.requires/link5@.path"
594167
+test ! -h "$root/etc/systemd/system/target5@inst.target.wants/link5@.path"
594167
+test ! -h "$root/etc/systemd/system/target5@inst.target.requires/link5@.path"
594167
+
594167
+: -------removal of symlinks not listed in [Install]----------
594167
+# c.f. 66a19d85a533b15ed32f4066ec880b5a8c06babd
594167
+test ! -e "$root/etc/systemd/system/multilink.mount"
594167
+cat >"$root/etc/systemd/system/multilink.mount" <
594167
+[Install]
594167
+WantedBy=multilink.target
594167
+EOF
594167
+
594167
+mkdir -p "$root/etc/systemd/system/default.target.wants"
594167
+ln -s ../multilink.mount "$root/etc/systemd/system/default.target.wants/"
594167
+ln -s ../multilink.mount "$root/etc/systemd/system/multilink-alias.mount"
594167
+ln -s ../multilink.mount "$root/etc/systemd/system/multilink-badalias.service"
594167
+
594167
+"$systemctl" --root="$root" disable 'multilink.mount'
594167
+test -e "$root/etc/systemd/system/multilink.mount"  # this is our file
594167
+test ! -h "$root/etc/systemd/system/default.target.wants/"
594167
+test ! -h "$root/etc/systemd/system/multilink-alias.mount"
594167
+test ! -h "$root/etc/systemd/system/multilink-badalias.service"
594167
+
594167
+: -------merge 20017: specifiers in the unit file-------------
594167
+test ! -e "$root/etc/systemd/system/some-some-link6@.socket"
594167
+# c.f. de61a04b188f81a85cdb5c64ddb4987dcd9d30d3
594167
+
594167
+check_alias() {
594167
+    : ------------------ %$1 -------------------------------------
594167
+    cat >"$root/etc/systemd/system/some-some-link6@.socket" <
594167
+[Install]
594167
+Alias=target@$1:%$1.socket
594167
+EOF
594167
+    SYSTEMD_LOG_LEVEL=debug "$systemctl" --root="$root" enable 'some-some-link6@.socket' || return 1
594167
+    islink "$root/etc/systemd/system/target@$1:$2.socket" "/etc/systemd/system/some-some-link6@.socket" || return 2
594167
+}
594167
+
594167
+check_alias a "$(uname -m | tr '_' '-')"
594167
+
594167
+# FIXME: when os-release is not found, we fail we a cryptic error
594167
+# Alias=target@%A.socket
594167
+
594167
+check_alias b "$(systemd-id128 boot-id)"
594167
+
594167
+# Alias=target@%B.socket
594167
+
594167
+# FIXME: Failed to enable: Invalid slot.
594167
+# Alias=target@%C.socket
594167
+# Alias=target@%E.socket
594167
+# Alias=target@%f.socket
594167
+
594167
+# FIXME: we use the calling user instead of root :(
594167
+check_alias g root || :
594167
+check_alias G 0 || :
594167
+
594167
+# FIXME: Failed to enable: Invalid slot.
594167
+# Alias=target@%h.socket
594167
+
594167
+check_alias i ""
594167
+
594167
+# FIXME: Failed to enable: Invalid slot.
594167
+# Alias=target@%I.socket
594167
+
594167
+check_alias j 'link6'
594167
+
594167
+# FIXME: Failed to enable: Invalid slot.
594167
+# Alias=target@%J.socket
594167
+
594167
+check_alias l "$(uname -n | sed 's/\..*//')"
594167
+
594167
+# FIXME: Failed to enable: Invalid slot.
594167
+# Alias=target@%L.socket
594167
+
594167
+# FIXME: Failed to enable: No such file or directory.
594167
+# Alias=target@%m.socket
594167
+
594167
+# FIXME: Failed to enable: No such file or directory.
594167
+# Alias=target@%M.socket
594167
+
594167
+check_alias n 'some-some-link6@.socket'
594167
+check_alias N 'some-some-link6@'
594167
+
594167
+# FIXME: Failed to enable: No such file or directory.
594167
+# Alias=target@%o.socket
594167
+
594167
+check_alias p 'some-some-link6'
594167
+
594167
+# FIXME: Failed to enable: Invalid slot.
594167
+# Alias=target@%P.socket
594167
+# Alias=target@%s.socket
594167
+# Alias=target@%S.socket
594167
+# Alias=target@%t.socket
594167
+# Alias=target@%T.socket
594167
+
594167
+# FIXME: we use the calling user instead of root :(
594167
+check_alias u root || :
594167
+check_alias U 0 || :
594167
+
594167
+check_alias v "$(uname -r)"
594167
+
594167
+# FIXME: Failed to enable: Invalid slot.
594167
+# Alias=target@%V.socket
594167
+
594167
+# Alias=target@%w.socket
594167
+# Alias=target@%W.socket
594167
+
594167
+check_alias % '%' && { echo "Expected failure because % is not legal in unit name" >&2; exit 1; }
594167
+
594167
+check_alias z 'z' && { echo "Expected failure because %z is not known" >&2; exit 1; }
594167
+
594167
+# FIXME: if there's an invalid Alias=, we shouldn't preach about empty [Install]
594167
+
594167
+exit 0  # yes, this is needed because the last test above fails
594167
+
594167
+# TODO: repeat the tests above for presets