From c6c1ba8f64fec7df808ffc1b971e9a67747d150e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Thu, 25 May 2017 10:26:29 -0400 Subject: [PATCH] test-timesync: add first test for timesyncd conf parsing We parse the string supplied in NTP_SERVERS during configuration under an assert_se(). Right now we will accept pretty much anything there, but in case we are more picky in the future, add a simple test which checks that we can actually parse whatever is in NTP_SERVERS so that we don't fail the assertion at runtime. --- .gitignore | 1 + Makefile.am | 19 ++++++++++++++ src/timesync/meson.build | 16 +++++++++++ src/timesync/test-timesync.c | 51 ++++++++++++++++++++++++++++++++++++ 4 files changed, 87 insertions(+) create mode 100644 src/timesync/test-timesync.c diff --git a/.gitignore b/.gitignore index f0485330b5..60eda2b8ce 100644 --- a/.gitignore +++ b/.gitignore @@ -293,6 +293,7 @@ /test-tables /test-terminal-util /test-time +/test-timesync /test-tmpfiles /test-udev /test-uid-range diff --git a/Makefile.am b/Makefile.am index 6b418dc7b1..9d8f281a00 100644 --- a/Makefile.am +++ b/Makefile.am @@ -5221,6 +5221,25 @@ systemd_timesyncd_LDADD = \ libsystemd-shared.la \ -lm +test_timesync_SOURCES = \ + src/timesync/test-timesync.c \ + src/timesync/timesyncd-manager.c \ + src/timesync/timesyncd-manager.h \ + src/timesync/timesyncd-conf.c \ + src/timesync/timesyncd-conf.h \ + src/timesync/timesyncd-server.c \ + src/timesync/timesyncd-server.h + +nodist_test_timesync_SOURCES = \ + src/timesync/timesyncd-gperf.c + +test_timesync_LDADD = \ + libsystemd-shared.la \ + -lm + +tests += \ + test-timesync + rootlibexec_PROGRAMS += \ systemd-timesyncd diff --git a/src/timesync/meson.build b/src/timesync/meson.build index ee54c3e449..4391afa93a 100644 --- a/src/timesync/meson.build +++ b/src/timesync/meson.build @@ -24,3 +24,19 @@ if conf.get('ENABLE_TIMESYNCD', false) install_data(timesyncd_conf, install_dir : pkgsysconfdir) endif + +############################################################ + +tests += [ + [['src/timesync/test-timesync.c', + 'src/timesync/timesyncd-manager.c', + 'src/timesync/timesyncd-manager.h', + 'src/timesync/timesyncd-conf.c', + 'src/timesync/timesyncd-conf.h', + 'src/timesync/timesyncd-server.c', + 'src/timesync/timesyncd-server.h', + timesyncd_gperf_c], + [libshared], + [libm], + 'ENABLE_TIMESYNCD'], +] diff --git a/src/timesync/test-timesync.c b/src/timesync/test-timesync.c new file mode 100644 index 0000000000..a5a3433022 --- /dev/null +++ b/src/timesync/test-timesync.c @@ -0,0 +1,51 @@ +/*** + This file is part of systemd. + + Copyright 2017 Zbigniew Jędrzejewski-Szmek + + systemd is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 2.1 of the License, or + (at your option) any later version. + + systemd is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with systemd; If not, see . +***/ + +/* Some unit tests for the helper functions in timesyncd. */ + +#include "log.h" +#include "macro.h" +#include "timesyncd-conf.h" + +static void test_manager_parse_string(void) { + /* Make sure that NTP_SERVERS is configured to something + * that we can actually parse successfully. */ + + _cleanup_(manager_freep) Manager *m = NULL; + + assert_se(manager_new(&m) == 0); + + assert_se(!m->have_fallbacks); + assert_se(manager_parse_server_string(m, SERVER_FALLBACK, NTP_SERVERS) == 0); + assert_se(m->have_fallbacks); + assert_se(manager_parse_fallback_string(m, NTP_SERVERS) == 0); + + assert_se(manager_parse_server_string(m, SERVER_SYSTEM, "time1.foobar.com time2.foobar.com") == 0); + assert_se(manager_parse_server_string(m, SERVER_FALLBACK, "time1.foobar.com time2.foobar.com") == 0); + assert_se(manager_parse_server_string(m, SERVER_LINK, "time1.foobar.com time2.foobar.com") == 0); +} + +int main(int argc, char **argv) { + log_set_max_level(LOG_DEBUG); + log_parse_environment(); + + test_manager_parse_string(); + + return 0; +}