From 7494876000daa3f2a58d07f89561fd3ea447819a Mon Sep 17 00:00:00 2001 From: Boaz Shuster Date: Thu, 28 Oct 2021 13:31:54 +0300 Subject: Use systemctl in local system test Signed-off-by: Boaz Shuster --- test/system/250-systemd.bats | 34 ++++++++++++++++++++++++++++++++-- 1 file changed, 32 insertions(+), 2 deletions(-) (limited to 'test/system/250-systemd.bats') diff --git a/test/system/250-systemd.bats b/test/system/250-systemd.bats index d4fb7ab08..28e28b30c 100644 --- a/test/system/250-systemd.bats +++ b/test/system/250-systemd.bats @@ -9,6 +9,7 @@ load helpers.systemd SERVICE_NAME="podman_test_$(random_string)" UNIT_FILE="$UNIT_DIR/$SERVICE_NAME.service" +TEMPLATE_FILE_PREFIX="$UNIT_DIR/$SERVICE_NAME" function setup() { skip_if_remote "systemd tests are meaningless over remote" @@ -206,8 +207,37 @@ LISTEN_FDNAMES=listen_fdnames" "LISTEN Environment passed: $context" run_podman run -dt --name $cname $IMAGE top run_podman generate systemd --template -n $cname - is "$output" ".*%I.*" "%I indentifiers in template" - is "$output" ".*%i.*" "%i indentifiers in template" + echo "$output" > "$TEMPLATE_FILE_PREFIX@.service" + run_podman rm -f $cname + + systemctl daemon-reload + + INSTANCE="$SERVICE_NAME@1.service" + run systemctl start "$INSTANCE" + if [ $status -ne 0 ]; then + die "Error starting systemd unit $INSTANCE, output: $output" + fi + + run systemctl status "$INSTANCE" + if [ $status -ne 0 ]; then + die "Non-zero status of systemd unit $INSTANCE, output: $output" + fi + + run systemctl stop "$INSTANCE" + if [ $status -ne 0 ]; then + die "Error stopping systemd unit $INSTANCE, output: $output" + fi + + if [[ -z "$status" ]]; then + run systemctl is-active "$INSTANCE" + if [ $status -ne 0 ]; then + die "Error checking stauts of systemd unit $INSTANCE, output: $output" + fi + is "$output" "$status" "$INSTANCE not in expected state" + fi + + rm -f "$TEMPLATE_FILE_PREFIX@.service" + systemctl daemon-reload } @test "podman generate - systemd template no support for pod" { -- cgit v1.2.3-54-g00ecf