From 63447f1153093c883b2488e53f46ff581d904e6a Mon Sep 17 00:00:00 2001 From: Ronny Chevalier Date: Fri, 30 Oct 2015 13:51:51 +0100 Subject: test-execute: add test for PrivateNetwork --- Makefile.am | 1 + src/test/test-execute.c | 13 +++++++++++++ test/exec-privatenetwork-yes.service | 6 ++++++ 3 files changed, 20 insertions(+) create mode 100644 test/exec-privatenetwork-yes.service diff --git a/Makefile.am b/Makefile.am index 00b9e86346..cd5ea6f32c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1566,6 +1566,7 @@ EXTRA_DIST += \ test/exec-workingdirectory.service \ test/exec-umask-0177.service \ test/exec-umask-default.service \ + test/exec-privatenetwork-yes.service \ test/bus-policy/hello.conf \ test/bus-policy/methods.conf \ test/bus-policy/ownerships.conf \ diff --git a/src/test/test-execute.c b/src/test/test-execute.c index afbaa12e94..fb0cb3fdc4 100644 --- a/src/test/test-execute.c +++ b/src/test/test-execute.c @@ -178,6 +178,18 @@ static void test_exec_capabilityboundingset(Manager *m) { test(m, "exec-capabilityboundingset-invert.service", 0, CLD_EXITED); } +static void test_exec_privatenetwork(Manager *m) { + int r; + + r = find_binary("ip", NULL); + if (r < 0) { + log_error_errno(r, "Skipping test_exec_privatenetwork, could not find ip binary: %m"); + return; + } + + test(m, "exec-privatenetwork-yes.service", 0, CLD_EXITED); +} + int main(int argc, char *argv[]) { test_function_t tests[] = { test_exec_workingdirectory, @@ -185,6 +197,7 @@ int main(int argc, char *argv[]) { test_exec_ignoresigpipe, test_exec_privatetmp, test_exec_privatedevices, + test_exec_privatenetwork, test_exec_systemcallfilter, test_exec_systemcallerrornumber, test_exec_user, diff --git a/test/exec-privatenetwork-yes.service b/test/exec-privatenetwork-yes.service new file mode 100644 index 0000000000..494712e6a7 --- /dev/null +++ b/test/exec-privatenetwork-yes.service @@ -0,0 +1,6 @@ +[Unit] +Description=Test for PrivateNetwork + +[Service] +ExecStart=/bin/sh -c 'i=$(ip link | grep ": " | grep -v lo); echo $i; exit $(test -z $i)' +PrivateNetwork=yes -- cgit v1.2.3-54-g00ecf