]> Savannah Git Hosting - gnulib.git/commitdiff
servent: Add tests.
authorCollin Funk <collin.funk1@gmail.com>
Tue, 31 Dec 2024 03:00:01 +0000 (19:00 -0800)
committerCollin Funk <collin.funk1@gmail.com>
Tue, 31 Dec 2024 03:00:01 +0000 (19:00 -0800)
* tests/test-servent.c: New file.
* modules/servent-tests: New file.

ChangeLog
modules/servent-tests [new file with mode: 0644]
tests/test-servent.c [new file with mode: 0644]

index 19be98ae37559381ef71ebb887122693e7be0a0f..8c4b4df53b771ffefdd1ad6fd126ff29ce201edb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2024-12-30  Collin Funk  <collin.funk1@gmail.com>
+
+       servent: Add tests.
+       * tests/test-servent.c: New file.
+       * modules/servent-tests: New file.
+
 2024-12-30  Bruno Haible  <bruno@clisp.org>
 
        mbfile: Support pushback characters also right before EOF.
diff --git a/modules/servent-tests b/modules/servent-tests
new file mode 100644 (file)
index 0000000..90bdc63
--- /dev/null
@@ -0,0 +1,12 @@
+Files:
+tests/test-servent.c
+tests/signature.h
+
+Depends-on:
+
+configure.ac:
+
+Makefile.am:
+TESTS += test-servent
+check_PROGRAMS += test-servent
+test_servent_LDADD = $(LDADD) $(SERVENT_LIB)
diff --git a/tests/test-servent.c b/tests/test-servent.c
new file mode 100644 (file)
index 0000000..5a9997b
--- /dev/null
@@ -0,0 +1,46 @@
+/* Test the servent module.
+   Copyright (C) 2024 Free Software Foundation, Inc.
+
+   This file is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published
+   by the Free Software Foundation, either version 3 of the License,
+   or (at your option) any later version.
+
+   This file 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 General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <https://www.gnu.org/licenses/>.  */
+
+/* Written by Collin Funk <collin.funk1@gmail.com>, 2024.  */
+
+#include <config.h>
+
+/* Specification.  */
+#include <netdb.h>
+
+#include "signature.h"
+SIGNATURE_CHECK (getservbyname, struct servent *,
+                 (char const *, char const *));
+SIGNATURE_CHECK (getservbyport, struct servent *, (int, char const *));
+
+#include <stdio.h>
+#include <arpa/inet.h>
+
+int
+main (void)
+{
+  struct servent *result;
+
+  result = getservbyname ("domain", "tcp");
+  if (result == NULL)
+    fputs ("getservbyname failed\n", stderr);
+
+  result = getservbyport (htons(53), "tcp");
+  if (result == NULL)
+    fputs ("getportbyname failed\n", stderr);
+
+  return 0;
+}