]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/test/test-hostname-util.c
Merge pull request #11827 from keszybz/pkgconfig-variables
[thirdparty/systemd.git] / src / test / test-hostname-util.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
8fb49443 2
b5efdb8a 3#include "alloc-util.h"
8fb49443
ZJS
4#include "fileio.h"
5#include "hostname-util.h"
07630cea 6#include "string-util.h"
e4de7287 7#include "tmpfile-util.h"
b5efdb8a 8#include "util.h"
8fb49443
ZJS
9
10static void test_hostname_is_valid(void) {
11 assert_se(hostname_is_valid("foobar", false));
12 assert_se(hostname_is_valid("foobar.com", false));
13 assert_se(!hostname_is_valid("foobar.com.", false));
14 assert_se(hostname_is_valid("fooBAR", false));
15 assert_se(hostname_is_valid("fooBAR.com", false));
16 assert_se(!hostname_is_valid("fooBAR.", false));
17 assert_se(!hostname_is_valid("fooBAR.com.", false));
18 assert_se(!hostname_is_valid("fööbar", false));
19 assert_se(!hostname_is_valid("", false));
20 assert_se(!hostname_is_valid(".", false));
21 assert_se(!hostname_is_valid("..", false));
22 assert_se(!hostname_is_valid("foobar.", false));
23 assert_se(!hostname_is_valid(".foobar", false));
24 assert_se(!hostname_is_valid("foo..bar", false));
25 assert_se(!hostname_is_valid("foo.bar..", false));
26 assert_se(!hostname_is_valid("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", false));
2c85bbaa 27 assert_se(!hostname_is_valid("au-xph5-rvgrdsb5hcxc-47et3a5vvkrc-server-wyoz4elpdpe3.openstack.local", false));
8fb49443
ZJS
28
29 assert_se(hostname_is_valid("foobar", true));
30 assert_se(hostname_is_valid("foobar.com", true));
31 assert_se(hostname_is_valid("foobar.com.", true));
32 assert_se(hostname_is_valid("fooBAR", true));
33 assert_se(hostname_is_valid("fooBAR.com", true));
34 assert_se(!hostname_is_valid("fooBAR.", true));
35 assert_se(hostname_is_valid("fooBAR.com.", true));
36 assert_se(!hostname_is_valid("fööbar", true));
37 assert_se(!hostname_is_valid("", true));
38 assert_se(!hostname_is_valid(".", true));
39 assert_se(!hostname_is_valid("..", true));
40 assert_se(!hostname_is_valid("foobar.", true));
41 assert_se(!hostname_is_valid(".foobar", true));
42 assert_se(!hostname_is_valid("foo..bar", true));
43 assert_se(!hostname_is_valid("foo.bar..", true));
44 assert_se(!hostname_is_valid("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", true));
45}
46
47static void test_hostname_cleanup(void) {
48 char *s;
49
50 s = strdupa("foobar");
ae691c1d 51 assert_se(streq(hostname_cleanup(s), "foobar"));
8fb49443 52 s = strdupa("foobar.com");
ae691c1d 53 assert_se(streq(hostname_cleanup(s), "foobar.com"));
8fb49443 54 s = strdupa("foobar.com.");
ae691c1d 55 assert_se(streq(hostname_cleanup(s), "foobar.com"));
d65652f1
ZJS
56 s = strdupa("foo-bar.-com-.");
57 assert_se(streq(hostname_cleanup(s), "foo-bar.com"));
58 s = strdupa("foo-bar-.-com-.");
59 assert_se(streq(hostname_cleanup(s), "foo-bar--com"));
60 s = strdupa("--foo-bar.-com");
61 assert_se(streq(hostname_cleanup(s), "foo-bar.com"));
8fb49443 62 s = strdupa("fooBAR");
ae691c1d 63 assert_se(streq(hostname_cleanup(s), "fooBAR"));
8fb49443 64 s = strdupa("fooBAR.com");
ae691c1d 65 assert_se(streq(hostname_cleanup(s), "fooBAR.com"));
8fb49443 66 s = strdupa("fooBAR.");
ae691c1d 67 assert_se(streq(hostname_cleanup(s), "fooBAR"));
8fb49443 68 s = strdupa("fooBAR.com.");
ae691c1d 69 assert_se(streq(hostname_cleanup(s), "fooBAR.com"));
8fb49443 70 s = strdupa("fööbar");
ae691c1d 71 assert_se(streq(hostname_cleanup(s), "fbar"));
8fb49443 72 s = strdupa("");
ae691c1d 73 assert_se(isempty(hostname_cleanup(s)));
8fb49443 74 s = strdupa(".");
ae691c1d 75 assert_se(isempty(hostname_cleanup(s)));
8fb49443 76 s = strdupa("..");
ae691c1d 77 assert_se(isempty(hostname_cleanup(s)));
8fb49443 78 s = strdupa("foobar.");
ae691c1d 79 assert_se(streq(hostname_cleanup(s), "foobar"));
8fb49443 80 s = strdupa(".foobar");
ae691c1d 81 assert_se(streq(hostname_cleanup(s), "foobar"));
8fb49443 82 s = strdupa("foo..bar");
ae691c1d 83 assert_se(streq(hostname_cleanup(s), "foo.bar"));
8fb49443 84 s = strdupa("foo.bar..");
ae691c1d 85 assert_se(streq(hostname_cleanup(s), "foo.bar"));
8fb49443 86 s = strdupa("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
ae691c1d 87 assert_se(streq(hostname_cleanup(s), "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"));
5fe7a0a7
ZJS
88 s = strdupa("xxxx........xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
89 assert_se(streq(hostname_cleanup(s), "xxxx.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"));
8fb49443
ZJS
90}
91
f35cb39e 92static void test_read_etc_hostname(void) {
8fb49443
ZJS
93 char path[] = "/tmp/hostname.XXXXXX";
94 char *hostname;
95 int fd;
96
646853bd 97 fd = mkostemp_safe(path);
8fb49443
ZJS
98 assert(fd > 0);
99 close(fd);
100
101 /* simple hostname */
7beb3baf 102 assert_se(write_string_file(path, "foo", WRITE_STRING_FILE_CREATE) == 0);
f35cb39e 103 assert_se(read_etc_hostname(path, &hostname) == 0);
8fb49443 104 assert_se(streq(hostname, "foo"));
73974f67 105 hostname = mfree(hostname);
8fb49443
ZJS
106
107 /* with comment */
7beb3baf 108 assert_se(write_string_file(path, "# comment\nfoo", WRITE_STRING_FILE_CREATE) == 0);
f35cb39e 109 assert_se(read_etc_hostname(path, &hostname) == 0);
8fb49443
ZJS
110 assert_se(hostname);
111 assert_se(streq(hostname, "foo"));
73974f67 112 hostname = mfree(hostname);
8fb49443
ZJS
113
114 /* with comment and extra whitespace */
7beb3baf 115 assert_se(write_string_file(path, "# comment\n\n foo ", WRITE_STRING_FILE_CREATE) == 0);
f35cb39e 116 assert_se(read_etc_hostname(path, &hostname) == 0);
8fb49443
ZJS
117 assert_se(hostname);
118 assert_se(streq(hostname, "foo"));
73974f67 119 hostname = mfree(hostname);
8fb49443
ZJS
120
121 /* cleans up name */
7beb3baf 122 assert_se(write_string_file(path, "!foo/bar.com", WRITE_STRING_FILE_CREATE) == 0);
f35cb39e 123 assert_se(read_etc_hostname(path, &hostname) == 0);
8fb49443
ZJS
124 assert_se(hostname);
125 assert_se(streq(hostname, "foobar.com"));
73974f67 126 hostname = mfree(hostname);
8fb49443
ZJS
127
128 /* no value set */
129 hostname = (char*) 0x1234;
7beb3baf 130 assert_se(write_string_file(path, "# nothing here\n", WRITE_STRING_FILE_CREATE) == 0);
f35cb39e 131 assert_se(read_etc_hostname(path, &hostname) == -ENOENT);
8fb49443
ZJS
132 assert_se(hostname == (char*) 0x1234); /* does not touch argument on error */
133
134 /* nonexisting file */
f35cb39e 135 assert_se(read_etc_hostname("/non/existing", &hostname) == -ENOENT);
8fb49443
ZJS
136 assert_se(hostname == (char*) 0x1234); /* does not touch argument on error */
137
138 unlink(path);
139}
140
141int main(int argc, char *argv[]) {
142 log_parse_environment();
143 log_open();
144
145 test_hostname_is_valid();
146 test_hostname_cleanup();
f35cb39e 147 test_read_etc_hostname();
8fb49443
ZJS
148
149 return 0;
150}