]> Savannah Git Hosting - gnulib.git/commitdiff
strcasecmp_l: Add tests.
authorBruno Haible <bruno@clisp.org>
Sun, 16 Feb 2025 21:32:19 +0000 (22:32 +0100)
committerBruno Haible <bruno@clisp.org>
Sun, 16 Feb 2025 21:32:19 +0000 (22:32 +0100)
* tests/test-strcasecmp_l.c: New file.
* modules/strcasecmp_l-tests: New file.

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

index 0ffa42d3e7d909d54a661f65fe84e1a97eecd690..a8731ea5ff9ec9a0e369d9a5b3717a1661d19ec4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2025-02-16  Bruno Haible  <bruno@clisp.org>
 
+       strcasecmp_l: Add tests.
+       * tests/test-strcasecmp_l.c: New file.
+       * modules/strcasecmp_l-tests: New file.
+
        strcasecmp_l: New module.
        * lib/strings.in.h: Include <locale.h>.
        (strcasecmp_l): New declaration.
diff --git a/modules/strcasecmp_l-tests b/modules/strcasecmp_l-tests
new file mode 100644 (file)
index 0000000..b096df6
--- /dev/null
@@ -0,0 +1,16 @@
+Files:
+tests/test-strcasecmp_l.c
+tests/signature.h
+tests/macros.h
+m4/musl.m4
+
+Depends-on:
+newlocale
+freelocale
+
+configure.ac:
+gl_MUSL_LIBC
+
+Makefile.am:
+TESTS += test-strcasecmp_l
+check_PROGRAMS += test-strcasecmp_l
diff --git a/tests/test-strcasecmp_l.c b/tests/test-strcasecmp_l.c
new file mode 100644 (file)
index 0000000..6202634
--- /dev/null
@@ -0,0 +1,88 @@
+/* Test of strcasecmp_l() function.
+   Copyright (C) 2020-2025 Free Software Foundation, Inc.
+
+   This program 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 program 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/>.  */
+
+#include <config.h>
+
+#include <strings.h>
+#include <locale.h>
+
+#include "signature.h"
+SIGNATURE_CHECK (strcasecmp_l, int, (const char *, const char *, locale_t));
+
+#include <stdio.h>
+
+#include "macros.h"
+
+static void
+test_single_locale_common (locale_t locale)
+{
+  ASSERT (strcasecmp_l ("paragraph", "Paragraph", locale) == 0);
+
+  ASSERT (strcasecmp_l ("paragrapH", "parAgRaph", locale) == 0);
+
+  ASSERT (strcasecmp_l ("paragraph", "paraLyzed", locale) < 0);
+  ASSERT (strcasecmp_l ("paraLyzed", "paragraph", locale) > 0);
+
+  ASSERT (strcasecmp_l ("para", "paragraph", locale) < 0);
+  ASSERT (strcasecmp_l ("paragraph", "para", locale) > 0);
+}
+
+int
+main ()
+{
+  {
+    locale_t locale = newlocale (LC_ALL_MASK, "C", NULL);
+    ASSERT (locale != NULL);
+
+    test_single_locale_common (locale);
+
+    freelocale (locale);
+  }
+#if !MUSL_LIBC /* musl libc has no unibyte locales */
+  {
+# if defined _WIN32 && !defined __CYGWIN__
+    locale_t locale = newlocale (LC_ALL_MASK, "French_France.1252", NULL);
+# else
+    locale_t locale = newlocale (LC_ALL_MASK, "fr_FR.ISO-8859-1", NULL);
+    if (locale == NULL)
+      locale = newlocale (LC_ALL_MASK, "fr_FR.ISO8859-1", NULL);
+# endif
+    if (locale != NULL)
+      {
+        test_single_locale_common (locale);
+
+        /* Locale encoding is ISO-8859-1 or ISO-8859-15.  */
+
+        /* U+00C9 LATIN CAPITAL LETTER E WITH ACUTE */
+        /* U+00E9 LATIN SMALL LETTER E WITH ACUTE */
+        ASSERT (strcasecmp_l ("Fej\311r", "Fej\351r", locale) == 0);
+        ASSERT (strcasecmp_l ("Fej\351r", "Fej\311r", locale) == 0);
+        ASSERT (strcasecmp_l ("Fejer", "Fej\311r", locale) < 0);
+        ASSERT (strcasecmp_l ("Fej\311r", "Fejer", locale) > 0);
+
+        /* Compare with U+00D7 MULTIPLICATION SIGN */
+        ASSERT (strcasecmp_l ("Fej\311r", "Fej\327", locale) > 0);
+        ASSERT (strcasecmp_l ("Fej\327", "Fej\311r", locale) < 0);
+        ASSERT (strcasecmp_l ("Fej\351r", "Fej\327", locale) > 0);
+        ASSERT (strcasecmp_l ("Fej\327", "Fej\351r", locale) < 0);
+
+        freelocale (locale);
+      }
+  }
+#endif
+
+  return test_exit_status;
+}