tests: move web-util related tests to test-web-util.c

This commit is contained in:
Ronny Chevalier 2016-03-02 23:23:55 +01:00
parent b66de1f9d4
commit cd3510707a
4 changed files with 47 additions and 14 deletions

1
.gitignore vendored
View file

@ -276,6 +276,7 @@
/test-util
/test-verbs
/test-watchdog
/test-web-util
/test-xml
/timedatectl
/udevadm

View file

@ -1429,6 +1429,7 @@ tests += \
test-hexdecoct \
test-escape \
test-alloc-util \
test-web-util \
test-string-util \
test-extract-word \
test-parse-util \
@ -1770,6 +1771,12 @@ test_alloc_util_SOURCES = \
test_alloc_util_LDADD = \
libbasic.la
test_web_util_SOURCES = \
src/test/test-web-util.c
test_web_util_LDADD = \
libbasic.la
test_escape_SOURCES = \
src/test/test-escape.c

View file

@ -51,7 +51,6 @@
#include "user-util.h"
#include "util.h"
#include "virt.h"
#include "web-util.h"
#include "xattr-util.h"
static void test_align_power2(void) {
@ -481,18 +480,6 @@ static void test_files_same(void) {
unlink(name_alias);
}
static void test_is_valid_documentation_url(void) {
assert_se(documentation_url_is_valid("http://www.freedesktop.org/wiki/Software/systemd"));
assert_se(documentation_url_is_valid("https://www.kernel.org/doc/Documentation/binfmt_misc.txt"));
assert_se(documentation_url_is_valid("file:/foo/foo"));
assert_se(documentation_url_is_valid("man:systemd.special(7)"));
assert_se(documentation_url_is_valid("info:bar"));
assert_se(!documentation_url_is_valid("foo:"));
assert_se(!documentation_url_is_valid("info:"));
assert_se(!documentation_url_is_valid(""));
}
static void test_file_in_same_dir(void) {
char *t;
@ -942,7 +929,6 @@ int main(int argc, char *argv[]) {
test_log2i();
test_filename_is_valid();
test_files_same();
test_is_valid_documentation_url();
test_file_in_same_dir();
test_close_nointr();
test_unlink_noerrno();

39
src/test/test-web-util.c Normal file
View file

@ -0,0 +1,39 @@
/***
This file is part of systemd.
Copyright 2010 Lennart Poettering
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 <http://www.gnu.org/licenses/>.
***/
#include "macro.h"
#include "web-util.h"
static void test_is_valid_documentation_url(void) {
assert_se(documentation_url_is_valid("http://www.freedesktop.org/wiki/Software/systemd"));
assert_se(documentation_url_is_valid("https://www.kernel.org/doc/Documentation/binfmt_misc.txt"));
assert_se(documentation_url_is_valid("file:/foo/foo"));
assert_se(documentation_url_is_valid("man:systemd.special(7)"));
assert_se(documentation_url_is_valid("info:bar"));
assert_se(!documentation_url_is_valid("foo:"));
assert_se(!documentation_url_is_valid("info:"));
assert_se(!documentation_url_is_valid(""));
}
int main(int argc, char *argv[]) {
test_is_valid_documentation_url();
return 0;
}