summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2014-10-13 10:00:12 +0200
committerAndreas Schneider <asn@cryptomilk.org>2016-01-14 08:04:49 +0100
commit14f1ce2e5b760fff940c102464d05d059a021a9d (patch)
treee1a8226ec9c55e45eff92df6af87960693aae585
parent62b0f58d24c82f5776285de18c6e2f219d54e2e6 (diff)
downloadlibssh-14f1ce2e5b760fff940c102464d05d059a021a9d.tar.gz
libssh-14f1ce2e5b760fff940c102464d05d059a021a9d.tar.xz
libssh-14f1ce2e5b760fff940c102464d05d059a021a9d.zip
torture: Add torture_teardown_sshd_server().
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
-rw-r--r--tests/torture.c44
-rw-r--r--tests/torture.h1
2 files changed, 45 insertions, 0 deletions
diff --git a/tests/torture.c b/tests/torture.c
index 65fbc062..15e8bab8 100644
--- a/tests/torture.c
+++ b/tests/torture.c
@@ -28,6 +28,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
+#include <signal.h>
#ifndef _WIN32
# include <dirent.h>
@@ -927,6 +928,49 @@ void torture_teardown_socket_dir(void **state)
free(s);
}
+void torture_teardown_sshd_server(void **state)
+{
+ struct torture_state *s = *state;
+ char buf[8] = {0};
+ long int tmp;
+ ssize_t rc;
+ pid_t pid;
+ int fd;
+
+ /* read the pidfile */
+ fd = open(s->srv_pidfile, O_RDONLY);
+ if (fd < 0) {
+ goto done;
+ }
+
+ rc = read(fd, buf, sizeof(buf));
+ close(fd);
+ if (rc <= 0) {
+ goto done;
+ }
+
+ buf[sizeof(buf) - 1] = '\0';
+
+ tmp = strtol(buf, NULL, 10);
+ if (tmp == 0 || tmp > 0xFFFF || errno == ERANGE) {
+ goto done;
+ }
+
+ pid = (pid_t)(tmp & 0xFFFF);
+
+ /* Make sure the daemon goes away! */
+ kill(pid, SIGTERM);
+
+ kill(pid, 0);
+ if (rc == 0) {
+ fprintf(stderr,
+ "WARNING the sshd server is still running!\n");
+ }
+
+done:
+ torture_teardown_socket_dir(state);
+}
+
int torture_libssh_verbosity(void){
return verbosity;
}
diff --git a/tests/torture.h b/tests/torture.h
index 071fa76c..efc477aa 100644
--- a/tests/torture.h
+++ b/tests/torture.h
@@ -112,6 +112,7 @@ void torture_setup_socket_dir(void **state);
void torture_setup_sshd_server(void **state);
void torture_teardown_socket_dir(void **state);
+void torture_teardown_sshd_server(void **state);
/*
* This function must be defined in every unit test file.