]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
test: add test for errno-list.[ch] 21848/head
authorYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 21 Dec 2021 23:51:41 +0000 (08:51 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 22 Dec 2021 06:29:55 +0000 (15:29 +0900)
src/test/meson.build
src/test/test-errno-list.c [new file with mode: 0644]

index 71d2422caf0699f9ac8b267f71c13cc50a7cb120..9a1c481f226c24662655afc7a32f2b75586eceb3 100644 (file)
@@ -574,6 +574,9 @@ tests += [
         [['src/test/test-arphrd-util.c',
           generated_gperf_headers]],
 
+        [['src/test/test-errno-list.c',
+          generated_gperf_headers]],
+
         [['src/test/test-ip-protocol-list.c',
           shared_generated_gperf_headers]],
 
diff --git a/src/test/test-errno-list.c b/src/test/test-errno-list.c
new file mode 100644 (file)
index 0000000..6c8f384
--- /dev/null
@@ -0,0 +1,33 @@
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
+
+#include <errno.h>
+
+#include "errno-list.h"
+#include "errno-to-name.h"
+#include "macro.h"
+#include "string-util.h"
+#include "tests.h"
+#include "util.h"
+
+TEST(errno_list) {
+        for (size_t i = 0; i < ELEMENTSOF(errno_names); i++) {
+                if (errno_names[i]) {
+                        assert_se(streq(errno_to_name(i), errno_names[i]));
+                        assert_se(errno_from_name(errno_names[i]) == (int) i);
+                }
+        }
+
+#ifdef ECANCELLED
+        /* ECANCELLED is an alias of ECANCELED. */
+        assert_se(streq(errno_to_name(ECANCELLED), "ECANCELED"));
+#endif
+        assert_se(streq(errno_to_name(ECANCELED), "ECANCELED"));
+
+#ifdef EREFUSED
+        /* EREFUSED is an alias of ECONNREFUSED. */
+        assert_se(streq(errno_to_name(EREFUSED), "ECONNREFUSED"));
+#endif
+        assert_se(streq(errno_to_name(ECONNREFUSED), "ECONNREFUSED"));
+}
+
+DEFINE_TEST_MAIN(LOG_INFO);