mirror of
https://github.com/systemd/systemd.git
synced 2024-12-23 21:35:11 +03:00
tests: move web-util related tests to test-web-util.c
This commit is contained in:
parent
b66de1f9d4
commit
cd3510707a
1
.gitignore
vendored
1
.gitignore
vendored
@ -276,6 +276,7 @@
|
|||||||
/test-util
|
/test-util
|
||||||
/test-verbs
|
/test-verbs
|
||||||
/test-watchdog
|
/test-watchdog
|
||||||
|
/test-web-util
|
||||||
/test-xml
|
/test-xml
|
||||||
/timedatectl
|
/timedatectl
|
||||||
/udevadm
|
/udevadm
|
||||||
|
@ -1429,6 +1429,7 @@ tests += \
|
|||||||
test-hexdecoct \
|
test-hexdecoct \
|
||||||
test-escape \
|
test-escape \
|
||||||
test-alloc-util \
|
test-alloc-util \
|
||||||
|
test-web-util \
|
||||||
test-string-util \
|
test-string-util \
|
||||||
test-extract-word \
|
test-extract-word \
|
||||||
test-parse-util \
|
test-parse-util \
|
||||||
@ -1770,6 +1771,12 @@ test_alloc_util_SOURCES = \
|
|||||||
test_alloc_util_LDADD = \
|
test_alloc_util_LDADD = \
|
||||||
libbasic.la
|
libbasic.la
|
||||||
|
|
||||||
|
test_web_util_SOURCES = \
|
||||||
|
src/test/test-web-util.c
|
||||||
|
|
||||||
|
test_web_util_LDADD = \
|
||||||
|
libbasic.la
|
||||||
|
|
||||||
test_escape_SOURCES = \
|
test_escape_SOURCES = \
|
||||||
src/test/test-escape.c
|
src/test/test-escape.c
|
||||||
|
|
||||||
|
@ -51,7 +51,6 @@
|
|||||||
#include "user-util.h"
|
#include "user-util.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
#include "virt.h"
|
#include "virt.h"
|
||||||
#include "web-util.h"
|
|
||||||
#include "xattr-util.h"
|
#include "xattr-util.h"
|
||||||
|
|
||||||
static void test_align_power2(void) {
|
static void test_align_power2(void) {
|
||||||
@ -481,18 +480,6 @@ static void test_files_same(void) {
|
|||||||
unlink(name_alias);
|
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) {
|
static void test_file_in_same_dir(void) {
|
||||||
char *t;
|
char *t;
|
||||||
|
|
||||||
@ -942,7 +929,6 @@ int main(int argc, char *argv[]) {
|
|||||||
test_log2i();
|
test_log2i();
|
||||||
test_filename_is_valid();
|
test_filename_is_valid();
|
||||||
test_files_same();
|
test_files_same();
|
||||||
test_is_valid_documentation_url();
|
|
||||||
test_file_in_same_dir();
|
test_file_in_same_dir();
|
||||||
test_close_nointr();
|
test_close_nointr();
|
||||||
test_unlink_noerrno();
|
test_unlink_noerrno();
|
||||||
|
39
src/test/test-web-util.c
Normal file
39
src/test/test-web-util.c
Normal 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;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user