2aacef
From 5685a8b01abf34ec5da7c43a99ede6e3bb7394eb Mon Sep 17 00:00:00 2001
2aacef
From: Franck Bui <fbui@suse.com>
2aacef
Date: Fri, 4 Nov 2022 12:50:04 +0100
2aacef
Subject: [PATCH] tests: minor simplification in test-execute
2aacef
2aacef
No functional change.
2aacef
2aacef
(cherry picked from commit 09415aef940f4a471da7cb899b9a66f1504d7c77)
2aacef
2aacef
Related #2138081
2aacef
---
2aacef
 ...xec-dynamicuser-fixeduser-one-supplementarygroup.service | 2 +-
2aacef
 test/test-execute/exec-dynamicuser-fixeduser.service        | 2 +-
2aacef
 .../exec-dynamicuser-supplementarygroups.service            | 4 ++--
2aacef
 ...mentarygroups-multiple-groups-default-group-user.service | 6 +++---
2aacef
 ...exec-supplementarygroups-multiple-groups-withgid.service | 4 ++--
2aacef
 ...exec-supplementarygroups-multiple-groups-withuid.service | 4 ++--
2aacef
 .../exec-supplementarygroups-single-group-user.service      | 2 +-
2aacef
 .../exec-supplementarygroups-single-group.service           | 2 +-
2aacef
 test/test-execute/exec-supplementarygroups.service          | 4 ++--
2aacef
 9 files changed, 15 insertions(+), 15 deletions(-)
2aacef
2aacef
diff --git a/test/test-execute/exec-dynamicuser-fixeduser-one-supplementarygroup.service b/test/test-execute/exec-dynamicuser-fixeduser-one-supplementarygroup.service
2aacef
index 0c2a218be0..bbb1af5fb3 100644
2aacef
--- a/test/test-execute/exec-dynamicuser-fixeduser-one-supplementarygroup.service
2aacef
+++ b/test/test-execute/exec-dynamicuser-fixeduser-one-supplementarygroup.service
2aacef
@@ -3,7 +3,7 @@
2aacef
 Description=Test DynamicUser with User= and SupplementaryGroups=
2aacef
 
2aacef
 [Service]
2aacef
-ExecStart=/bin/sh -x -c 'HAVE=0; for g in $$(id -G); do test "$$g" = "1" && HAVE=1; done; test "$$HAVE" -eq 1'
2aacef
+ExecStart=/bin/sh -x -c 'for g in $$(id -G); do test "$$g" = "1" && exit 0; done; exit 1'
2aacef
 ExecStart=/bin/sh -x -c 'test "$$(id -g)" = "1" && test "$$(id -u)" = "1"'
2aacef
 Type=oneshot
2aacef
 User=1
2aacef
diff --git a/test/test-execute/exec-dynamicuser-fixeduser.service b/test/test-execute/exec-dynamicuser-fixeduser.service
2aacef
index 061bbd2b93..c5828c2a93 100644
2aacef
--- a/test/test-execute/exec-dynamicuser-fixeduser.service
2aacef
+++ b/test/test-execute/exec-dynamicuser-fixeduser.service
2aacef
@@ -3,7 +3,7 @@
2aacef
 Description=Test DynamicUser with User=
2aacef
 
2aacef
 [Service]
2aacef
-ExecStart=/bin/sh -x -c 'HAVE=0; for g in $$(id -G); do test "$$g" = "1" && HAVE=1; done; test "$$HAVE" -eq 1'
2aacef
+ExecStart=/bin/sh -x -c 'for g in $$(id -G); do test "$$g" = "1" && exit 0; done; exit 1'
2aacef
 ExecStart=/bin/sh -x -c 'test "$$(id -g)" = "1" && test "$$(id -u)" = "1"'
2aacef
 Type=oneshot
2aacef
 User=1
2aacef
diff --git a/test/test-execute/exec-dynamicuser-supplementarygroups.service b/test/test-execute/exec-dynamicuser-supplementarygroups.service
2aacef
index 53ba0ec7cb..d601af272e 100644
2aacef
--- a/test/test-execute/exec-dynamicuser-supplementarygroups.service
2aacef
+++ b/test/test-execute/exec-dynamicuser-supplementarygroups.service
2aacef
@@ -3,8 +3,8 @@
2aacef
 Description=Test DynamicUser with SupplementaryGroups=
2aacef
 
2aacef
 [Service]
2aacef
-ExecStart=/bin/sh -x -c 'HAVE=0; for g in $$(id -G); do test "$$g" = "1" && HAVE=1; done; test "$$HAVE" -eq 1'
2aacef
-ExecStart=/bin/sh -x -c 'HAVE=0; for g in $$(id -G); do test "$$g" = "2" && HAVE=1; done; test "$$HAVE" -eq 1'
2aacef
+ExecStart=/bin/sh -x -c 'for g in $$(id -G); do test "$$g" = "1" && exit 0; done; exit 1'
2aacef
+ExecStart=/bin/sh -x -c 'for g in $$(id -G); do test "$$g" = "2" && exit 0; done; exit 1'
2aacef
 Type=oneshot
2aacef
 DynamicUser=yes
2aacef
 SupplementaryGroups=1 2
2aacef
diff --git a/test/test-execute/exec-supplementarygroups-multiple-groups-default-group-user.service b/test/test-execute/exec-supplementarygroups-multiple-groups-default-group-user.service
2aacef
index 4cb0326320..0ecc34441c 100644
2aacef
--- a/test/test-execute/exec-supplementarygroups-multiple-groups-default-group-user.service
2aacef
+++ b/test/test-execute/exec-supplementarygroups-multiple-groups-default-group-user.service
2aacef
@@ -3,9 +3,9 @@
2aacef
 Description=Test for Supplementary Group with multiple groups without Group and User
2aacef
 
2aacef
 [Service]
2aacef
-ExecStart=/bin/sh -x -c 'HAVE=0; for g in $$(id -G); do test "$$g" = "%G" && HAVE=1; done; test "$$HAVE" -eq 1'
2aacef
-ExecStart=/bin/sh -x -c 'HAVE=0; for g in $$(id -G); do test "$$g" = "1" && HAVE=1; done; test "$$HAVE" -eq 1'
2aacef
-ExecStart=/bin/sh -x -c 'HAVE=0; for g in $$(id -G); do test "$$g" = "2" && HAVE=1; done; test "$$HAVE" -eq 1'
2aacef
+ExecStart=/bin/sh -x -c 'for g in $$(id -G); do test "$$g" = "%G" && exit 0; done; exit 1'
2aacef
+ExecStart=/bin/sh -x -c 'for g in $$(id -G); do test "$$g" = "1" && exit 0; done; exit 1'
2aacef
+ExecStart=/bin/sh -x -c 'for g in $$(id -G); do test "$$g" = "2" && exit 0; done; exit 1'
2aacef
 ExecStart=/bin/sh -x -c 'test "$$(id -g)" = "%G" && test "$$(id -u)" = "%U"'
2aacef
 Type=oneshot
2aacef
 SupplementaryGroups=1 2
2aacef
diff --git a/test/test-execute/exec-supplementarygroups-multiple-groups-withgid.service b/test/test-execute/exec-supplementarygroups-multiple-groups-withgid.service
2aacef
index e11743d754..cd1021bbdf 100644
2aacef
--- a/test/test-execute/exec-supplementarygroups-multiple-groups-withgid.service
2aacef
+++ b/test/test-execute/exec-supplementarygroups-multiple-groups-withgid.service
2aacef
@@ -3,8 +3,8 @@
2aacef
 Description=Test for Supplementary Group with multiple groups and Group=1
2aacef
 
2aacef
 [Service]
2aacef
-ExecStart=/bin/sh -x -c 'HAVE=0; for g in $$(id -G); do test "$$g" = "1" && HAVE=1; done; test "$$HAVE" -eq 1'
2aacef
-ExecStart=/bin/sh -x -c 'HAVE=0; for g in $$(id -G); do test "$$g" = "2" && HAVE=1; done; test "$$HAVE" -eq 1'
2aacef
+ExecStart=/bin/sh -x -c 'for g in $$(id -G); do test "$$g" = "1" && exit 0; done; exit 1'
2aacef
+ExecStart=/bin/sh -x -c 'for g in $$(id -G); do test "$$g" = "2" && exit 0; done; exit 1'
2aacef
 ExecStart=/bin/sh -x -c 'test "$$(id -g)" = "1" && test "$$(id -u)" = "%U"'
2aacef
 Type=oneshot
2aacef
 Group=1
2aacef
diff --git a/test/test-execute/exec-supplementarygroups-multiple-groups-withuid.service b/test/test-execute/exec-supplementarygroups-multiple-groups-withuid.service
2aacef
index 3efbbfb0f9..7913a2c2ed 100644
2aacef
--- a/test/test-execute/exec-supplementarygroups-multiple-groups-withuid.service
2aacef
+++ b/test/test-execute/exec-supplementarygroups-multiple-groups-withuid.service
2aacef
@@ -3,8 +3,8 @@
2aacef
 Description=Test for Supplementary Group with multiple groups and Uid=1
2aacef
 
2aacef
 [Service]
2aacef
-ExecStart=/bin/sh -x -c 'HAVE=0; for g in $$(id -G); do test "$$g" = "1" && HAVE=1; done; test "$$HAVE" -eq 1'
2aacef
-ExecStart=/bin/sh -x -c 'HAVE=0; for g in $$(id -G); do test "$$g" = "2" && HAVE=1; done; test "$$HAVE" -eq 1'
2aacef
+ExecStart=/bin/sh -x -c 'for g in $$(id -G); do test "$$g" = "1" && exit 0; done; exit 1'
2aacef
+ExecStart=/bin/sh -x -c 'for g in $$(id -G); do test "$$g" = "2" && exit 0; done; exit 1'
2aacef
 Type=oneshot
2aacef
 User=1
2aacef
 SupplementaryGroups=1 2
2aacef
diff --git a/test/test-execute/exec-supplementarygroups-single-group-user.service b/test/test-execute/exec-supplementarygroups-single-group-user.service
2aacef
index aae71d0a30..ee4017e74e 100644
2aacef
--- a/test/test-execute/exec-supplementarygroups-single-group-user.service
2aacef
+++ b/test/test-execute/exec-supplementarygroups-single-group-user.service
2aacef
@@ -3,7 +3,7 @@
2aacef
 Description=Test for Supplementary Group with only one group and uid 1
2aacef
 
2aacef
 [Service]
2aacef
-ExecStart=/bin/sh -x -c 'HAVE=0; for g in $$(id -G); do test "$$g" = "1" && HAVE=1; done; test "$$HAVE" -eq 1'
2aacef
+ExecStart=/bin/sh -x -c 'for g in $$(id -G); do test "$$g" = "1" && exit 0; done; exit 1'
2aacef
 ExecStart=/bin/sh -x -c 'test "$$(id -g)" = "1" && test "$$(id -u)" = "1"'
2aacef
 Type=oneshot
2aacef
 User=1
2aacef
diff --git a/test/test-execute/exec-supplementarygroups-single-group.service b/test/test-execute/exec-supplementarygroups-single-group.service
2aacef
index c870774382..62275201cc 100644
2aacef
--- a/test/test-execute/exec-supplementarygroups-single-group.service
2aacef
+++ b/test/test-execute/exec-supplementarygroups-single-group.service
2aacef
@@ -3,7 +3,7 @@
2aacef
 Description=Test for Supplementary Group with only one group
2aacef
 
2aacef
 [Service]
2aacef
-ExecStart=/bin/sh -x -c 'HAVE=; for g in $$(id -G); do test "$$g" = "1" && HAVE=1; done; test "$$HAVE" -eq 1'
2aacef
+ExecStart=/bin/sh -x -c 'for g in $$(id -G); do test "$$g" = "1" && exit 0; done; exit 1'
2aacef
 ExecStart=/bin/sh -x -c 'test "$$(id -g)" = "1" && test "$$(id -u)" = "0"'
2aacef
 Type=oneshot
2aacef
 Group=1
2aacef
diff --git a/test/test-execute/exec-supplementarygroups.service b/test/test-execute/exec-supplementarygroups.service
2aacef
index 75601eab57..03406c3ee8 100644
2aacef
--- a/test/test-execute/exec-supplementarygroups.service
2aacef
+++ b/test/test-execute/exec-supplementarygroups.service
2aacef
@@ -3,7 +3,7 @@
2aacef
 Description=Test for Supplementary Group
2aacef
 
2aacef
 [Service]
2aacef
-ExecStart=/bin/sh -x -c 'HAVE=0; for g in $$(id -G); do test "$$g" = "%G" && HAVE=1; done; test "$$HAVE" -eq 1'
2aacef
-ExecStart=/bin/sh -x -c 'HAVE=0; for g in $$(id -G); do test "$$g" = "1" && HAVE=1; done; test "$$HAVE" -eq 1'
2aacef
+ExecStart=/bin/sh -x -c 'for g in $$(id -G); do test "$$g" = "%G" && exit 0; done; exit 1'
2aacef
+ExecStart=/bin/sh -x -c 'for g in $$(id -G); do test "$$g" = "1" && exit 0; done; exit 1'
2aacef
 Type=oneshot
2aacef
 SupplementaryGroups=1