--- /dev/null
+/* Test of conversion of string to wide string.
+ Copyright (C) 2008-2023 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/>. */
+
+/* Written by Bruno Haible <bruno@clisp.org>, 2008. */
+
+#include <config.h>
+
+#include <stdlib.h>
+
+#include "signature.h"
+SIGNATURE_CHECK (mbstowcs, size_t, (wchar_t *, const char *, size_t));
+
+#include <locale.h>
+#include <stdio.h>
+#include <string.h>
+#include <wchar.h>
+
+#include "macros.h"
+
+int
+main (int argc, char *argv[])
+{
+ wchar_t wc;
+ size_t ret;
+
+ /* configure should already have checked that the locale is supported. */
+ if (setlocale (LC_ALL, "") == NULL)
+ return 1;
+
+ /* Test NUL byte input. */
+ {
+ const char *src;
+
+ src = "";
+ ret = mbstowcs (NULL, src, 0);
+ ASSERT (ret == 0);
+
+ src = "";
+ ret = mbstowcs (NULL, src, 1);
+ ASSERT (ret == 0);
+
+ wc = (wchar_t) 0xBADFACE;
+ src = "";
+ ret = mbstowcs (&wc, src, 0);
+ ASSERT (ret == 0);
+ ASSERT (wc == (wchar_t) 0xBADFACE);
+
+ wc = (wchar_t) 0xBADFACE;
+ src = "";
+ ret = mbstowcs (&wc, src, 1);
+ ASSERT (ret == 0);
+ ASSERT (wc == 0);
+ }
+
+ if (argc > 1)
+ {
+ int unlimited;
+
+ for (unlimited = 0; unlimited < 2; unlimited++)
+ {
+ #define BUFSIZE 10
+ wchar_t buf[BUFSIZE];
+ const char *src;
+
+ {
+ size_t i;
+ for (i = 0; i < BUFSIZE; i++)
+ buf[i] = (wchar_t) 0xBADFACE;
+ }
+
+ switch (argv[1][0])
+ {
+ case '1':
+ /* Locale encoding is ISO-8859-1 or ISO-8859-15. */
+ {
+ char input[] = "B\374\337er"; /* "Büßer" */
+
+ src = input + 1;
+ ret = mbstowcs (NULL, src, unlimited ? BUFSIZE : 1);
+ ASSERT (ret == 4);
+
+ src = input + 1;
+ ret = mbstowcs (buf, src, unlimited ? BUFSIZE : 1);
+ ASSERT (ret == (unlimited ? 4 : 1));
+ ASSERT (wctob (buf[0]) == (unsigned char) '\374');
+ if (unlimited)
+ {
+ ASSERT (wctob (buf[1]) == (unsigned char) '\337');
+ ASSERT (buf[2] == 'e');
+ ASSERT (buf[3] == 'r');
+ ASSERT (buf[4] == 0);
+ ASSERT (buf[5] == (wchar_t) 0xBADFACE);
+ }
+ else
+ ASSERT (buf[1] == (wchar_t) 0xBADFACE);
+ }
+ break;
+
+ case '2':
+ /* Locale encoding is UTF-8. */
+ {
+ char input[] = "B\303\274\303\237er"; /* "Büßer" */
+
+ src = input + 1;
+ ret = mbstowcs (NULL, src, unlimited ? BUFSIZE : 1);
+ ASSERT (ret == 4);
+
+ src = input + 1;
+ ret = mbstowcs (buf, src, unlimited ? BUFSIZE : 1);
+ ASSERT (ret == (unlimited ? 4 : 1));
+ ASSERT (wctob (buf[0]) == EOF);
+ ASSERT (wctob (buf[1]) == EOF);
+ if (unlimited)
+ {
+ ASSERT (buf[2] == 'e');
+ ASSERT (buf[3] == 'r');
+ ASSERT (buf[4] == 0);
+ ASSERT (buf[5] == (wchar_t) 0xBADFACE);
+ }
+ else
+ ASSERT (buf[2] == (wchar_t) 0xBADFACE);
+ }
+ break;
+
+ case '3':
+ /* Locale encoding is EUC-JP. */
+ {
+ char input[] = "<\306\374\313\334\270\354>"; /* "<日本語>" */
+
+ src = input + 1;
+ ret = mbstowcs (NULL, src, unlimited ? BUFSIZE : 1);
+ ASSERT (ret == 4);
+
+ src = input + 1;
+ ret = mbstowcs (buf, src, unlimited ? BUFSIZE : 1);
+ ASSERT (ret == (unlimited ? 4 : 1));
+ ASSERT (wctob (buf[0]) == EOF);
+ ASSERT (wctob (buf[1]) == EOF);
+ ASSERT (wctob (buf[2]) == EOF);
+ if (unlimited)
+ {
+ ASSERT (buf[3] == '>');
+ ASSERT (buf[4] == 0);
+ ASSERT (buf[5] == (wchar_t) 0xBADFACE);
+ }
+ else
+ ASSERT (buf[3] == (wchar_t) 0xBADFACE);
+ }
+ break;
+
+ case '4':
+ /* Locale encoding is GB18030. */
+ {
+ char input[] = "B\250\271\201\060\211\070er"; /* "Büßer" */
+
+ src = input + 1;
+ ret = mbstowcs (NULL, src, unlimited ? BUFSIZE : 1);
+ ASSERT (ret == 4);
+
+ src = input + 1;
+ ret = mbstowcs (buf, src, unlimited ? BUFSIZE : 1);
+ ASSERT (ret == (unlimited ? 4 : 1));
+ ASSERT (wctob (buf[0]) == EOF);
+ if (unlimited)
+ {
+ ASSERT (wctob (buf[1]) == EOF);
+ ASSERT (buf[2] == 'e');
+ ASSERT (buf[3] == 'r');
+ ASSERT (buf[4] == 0);
+ ASSERT (buf[5] == (wchar_t) 0xBADFACE);
+ }
+ else
+ ASSERT (buf[1] == (wchar_t) 0xBADFACE);
+ }
+ break;
+
+ case '5':
+ /* C or POSIX locale. */
+ {
+ char input[] = "n/a";
+
+ src = input;
+ ret = mbstowcs (NULL, src, unlimited ? BUFSIZE : 1);
+ ASSERT (ret == 3);
+
+ src = input;
+ ret = mbstowcs (buf, src, unlimited ? BUFSIZE : 1);
+ ASSERT (ret == (unlimited ? 3 : 1));
+ ASSERT (buf[0] == 'n');
+ if (unlimited)
+ {
+ ASSERT (buf[1] == '/');
+ ASSERT (buf[2] == 'a');
+ ASSERT (buf[3] == 0);
+ ASSERT (buf[4] == (wchar_t) 0xBADFACE);
+ }
+ else
+ ASSERT (buf[1] == (wchar_t) 0xBADFACE);
+ }
+ {
+ int c;
+ char input[2];
+
+ for (c = 0; c < 0x100; c++)
+ if (c != 0)
+ {
+ /* We are testing all nonnull bytes. */
+ input[0] = c;
+ input[1] = '\0';
+
+ src = input;
+ ret = mbstowcs (NULL, src, unlimited ? BUFSIZE : 1);
+ ASSERT (ret == 1);
+
+ buf[0] = buf[1] = (wchar_t) 0xBADFACE;
+ src = input;
+ ret = mbstowcs (buf, src, unlimited ? BUFSIZE : 1);
+ /* POSIX:2018 says: "In the POSIX locale an [EILSEQ] error
+ cannot occur since all byte values are valid characters." */
+ ASSERT (ret == 1);
+ if (c < 0x80)
+ /* c is an ASCII character. */
+ ASSERT (buf[0] == c);
+ else
+ /* On most platforms, the bytes 0x80..0xFF map to U+0080..U+00FF.
+ But on musl libc, the bytes 0x80..0xFF map to U+DF80..U+DFFF. */
+ ASSERT (buf[0] == (btowc (c) == 0xDF00 + c ? btowc (c) : c));
+ }
+ }
+ break;
+
+ default:
+ return 1;
+ }
+ }
+
+ return 0;
+ }
+
+ return 1;
+}