Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/tests/lib/libc/locale Add test cases for sprintf/sscanf/strt...



details:   https://anonhg.NetBSD.org/src/rev/693785729637
branches:  trunk
changeset: 353981:693785729637
user:      perseant <perseant%NetBSD.org@localhost>
date:      Tue May 30 23:44:02 2017 +0000

description:
Add test cases for sprintf/sscanf/strto{d,l} and the is* and isw* ctype functions, for single-byte encodings

diffstat:

 tests/lib/libc/locale/Makefile       |    5 +-
 tests/lib/libc/locale/t_digittoint.c |  101 +++++++++++++
 tests/lib/libc/locale/t_sprintf.c    |  183 ++++++++++++++++++++++++
 tests/lib/libc/locale/t_wctype.c     |  261 +++++++++++++++++++++++++++++++++++
 4 files changed, 549 insertions(+), 1 deletions(-)

diffs (truncated from 576 to 300 lines):

diff -r 99414b506dd5 -r 693785729637 tests/lib/libc/locale/Makefile
--- a/tests/lib/libc/locale/Makefile    Tue May 30 22:55:26 2017 +0000
+++ b/tests/lib/libc/locale/Makefile    Tue May 30 23:44:02 2017 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2017/05/30 02:11:03 perseant Exp $
+# $NetBSD: Makefile,v 1.8 2017/05/30 23:44:02 perseant Exp $
 
 .include <bsd.own.mk>
 
@@ -15,6 +15,9 @@
 TESTS_C+=      t_wctomb
 TESTS_C+=      t_io
 TESTS_C+=      t_toupper
+#TESTS_C+=     t_digittoint
+TESTS_C+=      t_sprintf
+TESTS_C+=      t_wctype
 
 COPTS.t_wctomb.c += -Wno-stack-protector
 
diff -r 99414b506dd5 -r 693785729637 tests/lib/libc/locale/t_digittoint.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/lib/libc/locale/t_digittoint.c      Tue May 30 23:44:02 2017 +0000
@@ -0,0 +1,101 @@
+/* $NetBSD: t_digittoint.c,v 1.1 2017/05/30 23:44:02 perseant Exp $ */
+
+/*-
+ * Copyright (c) 2017 The NetBSD Foundation, Inc.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to The NetBSD Foundation
+ * by Konrad Schroder
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <sys/cdefs.h>
+__COPYRIGHT("@(#) Copyright (c) 2017\
+ The NetBSD Foundation, inc. All rights reserved.");
+__RCSID("$NetBSD: t_digittoint.c,v 1.1 2017/05/30 23:44:02 perseant Exp $");
+
+#include <locale.h>
+#include <stdio.h>
+#include <string.h>
+#include <vis.h>
+#include <ctype.h>
+
+#include <atf-c.h>
+
+static struct test {
+       const char *locale;
+       const char *digits;
+} tests[] = {
+       {
+               "C",
+               "0123456789AbcDeF",
+       }, {
+               "en_US.UTF-8",
+               "0123456789AbcDeF",
+       }, {
+               "ru_RU.KOI-8",
+               "0123456789AbcDeF",
+       }, {
+               NULL,
+               NULL,
+       }
+};
+
+static void
+h_digittoint(const struct test *t)
+{
+       int i;
+
+       ATF_REQUIRE_STREQ(setlocale(LC_ALL, "C"), "C");
+       printf("Trying locale %s...\n", t->locale);
+       ATF_REQUIRE(setlocale(LC_CTYPE, t->locale) != NULL);
+
+       for (i = 0; i < 16; i++) {
+               printf(" char %2.2x in position %d\n", t->digits[i], i);
+               ATF_REQUIRE_EQ(digittoint(t->digits[i]), i);
+       }
+}
+
+ATF_TC(digittoint);
+
+ATF_TC_HEAD(digittoint, tc)
+{
+       atf_tc_set_md_var(tc, "descr",
+               "Checks digittoint under diferent locales");
+}
+
+ATF_TC_BODY(digittoint, tc)
+{
+       struct test *t;
+
+       for (t = &tests[0]; t->locale != NULL; ++t)
+               h_digittoint(t);
+}
+
+ATF_TP_ADD_TCS(tp)
+{
+
+       ATF_TP_ADD_TC(tp, digittoint);
+
+       return atf_no_error();
+}
diff -r 99414b506dd5 -r 693785729637 tests/lib/libc/locale/t_sprintf.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/lib/libc/locale/t_sprintf.c Tue May 30 23:44:02 2017 +0000
@@ -0,0 +1,183 @@
+/* $NetBSD: t_sprintf.c,v 1.1 2017/05/30 23:44:02 perseant Exp $ */
+
+/*-
+ * Copyright (c) 2017 The NetBSD Foundation, Inc.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to The NetBSD Foundation
+ * by Konrad Schroder
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <sys/cdefs.h>
+__COPYRIGHT("@(#) Copyright (c) 2017\
+ The NetBSD Foundation, inc. All rights reserved.");
+__RCSID("$NetBSD: t_sprintf.c,v 1.1 2017/05/30 23:44:02 perseant Exp $");
+
+#include <locale.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <limits.h>
+#include <ctype.h>
+
+#include <atf-c.h>
+
+static struct test {
+       const char *locale;
+       const int int_value;
+       const char *int_result;
+       const char *int_input;
+       const double double_value;
+       const char *double_result;
+       const char *double_input;
+} tests[] = {
+       {
+               "C",
+               -12345,
+               "-12,345",
+               "-12345",
+               -12345.6789,
+               "-12,345.678900",
+               "-12345.678900",
+       }, {
+               "en_US.UTF-8",
+               -12345,
+               "-12,345",
+               "-12345",
+               -12345.6789,
+               "-12,345.678900",
+               "-12345.678900",
+       }, {
+               "fr_FR.ISO8859-1",
+               -12345,
+               "-12\240345",
+               "-12345",
+               -12345.6789,
+               "-12\240345,678900",
+               "-12345,678900",
+       }, {
+               NULL,
+               0,
+               NULL,
+               NULL,
+               0.0,
+               NULL,
+               NULL,
+       }
+};
+
+static void
+h_sprintf(const struct test *t)
+{
+       char buf[1024];
+
+       ATF_REQUIRE_STREQ(setlocale(LC_ALL, "C"), "C");
+       printf("Trying locale %s...\n", t->locale);
+       ATF_REQUIRE(setlocale(LC_NUMERIC, t->locale) != NULL);
+
+       sprintf(buf, "%'f", t->double_value);
+       ATF_REQUIRE_STREQ(buf, t->double_result);
+
+       sprintf(buf, "%'d", t->int_value);
+       ATF_REQUIRE_STREQ(buf, t->int_result);
+}
+
+static void
+h_strto(const struct test *t)
+{
+       ATF_REQUIRE_STREQ(setlocale(LC_ALL, "C"), "C");
+       printf("Trying locale %s...\n", t->locale);
+       ATF_REQUIRE(setlocale(LC_NUMERIC, t->locale) != NULL);
+
+       ATF_REQUIRE_EQ((int)strtol(t->int_input, NULL, 10), t->int_value);
+       ATF_REQUIRE_EQ(strtod(t->double_input, NULL), t->double_value);
+}
+
+static void
+h_sscanf(const struct test *t)
+{
+       int int_reported;
+       double double_reported;
+
+       ATF_REQUIRE_STREQ(setlocale(LC_ALL, "C"), "C");
+       printf("Trying locale %s...\n", t->locale);
+       ATF_REQUIRE(setlocale(LC_NUMERIC, t->locale) != NULL);
+
+       sscanf(t->int_input, "%d", &int_reported);
+       ATF_REQUIRE_EQ(int_reported, t->int_value);
+       sscanf(t->double_input, "%lf", &double_reported);
+       ATF_REQUIRE_EQ(double_reported, t->double_value);
+}
+
+ATF_TC(sprintf);
+ATF_TC_HEAD(sprintf, tc)
+{
+       atf_tc_set_md_var(tc, "descr",
+               "Checks sprintf %%'d and %%'f under diferent locales");
+}
+ATF_TC_BODY(sprintf, tc)
+{
+       struct test *t;
+
+       for (t = &tests[0]; t->locale != NULL; ++t)
+               h_sprintf(t);
+}
+
+ATF_TC(strto);
+ATF_TC_HEAD(strto, tc)
+{
+       atf_tc_set_md_var(tc, "descr",
+               "Checks strtol and strtod under diferent locales");
+}
+ATF_TC_BODY(strto, tc)
+{
+       struct test *t;
+
+       for (t = &tests[0]; t->locale != NULL; ++t)
+               h_strto(t);
+}
+
+ATF_TC(sscanf);
+ATF_TC_HEAD(sscanf, tc)
+{
+       atf_tc_set_md_var(tc, "descr",
+               "Checks sscanf under diferent locales");
+}
+ATF_TC_BODY(sscanf, tc)
+{
+       struct test *t;
+
+       for (t = &tests[0]; t->locale != NULL; ++t)
+               h_sscanf(t);



Home | Main Index | Thread Index | Old Index