]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream commit
authorschwarze@openbsd.org <schwarze@openbsd.org>
Thu, 26 May 2016 19:14:25 +0000 (19:14 +0000)
committerDamien Miller <djm@mindrot.org>
Wed, 8 Jun 2016 01:45:05 +0000 (11:45 +1000)
test the new utf8 module

Upstream-Regress-ID: c923d05a20e84e4ef152cbec947fdc4ce6eabbe3

regress/unittests/Makefile
regress/unittests/utf8/Makefile [new file with mode: 0644]
regress/unittests/utf8/tests.c [new file with mode: 0644]

index d3d90823f90720bdda2d7b1297c3eabd465a99ff..0a95d4b205fba6e1a0e216d2b0e799007265893a 100644 (file)
@@ -1,5 +1,5 @@
-#      $OpenBSD: Makefile,v 1.5 2015/02/16 22:21:03 djm Exp $
+#      $OpenBSD: Makefile,v 1.6 2016/05/26 19:14:25 schwarze Exp $
 REGRESS_FAIL_EARLY= yes
-SUBDIR=        test_helper sshbuf sshkey bitmap kex hostkeys
+SUBDIR=        test_helper sshbuf sshkey bitmap kex hostkeys utf8
 
 .include <bsd.subdir.mk>
diff --git a/regress/unittests/utf8/Makefile b/regress/unittests/utf8/Makefile
new file mode 100644 (file)
index 0000000..b55847c
--- /dev/null
@@ -0,0 +1,12 @@
+#      $OpenBSD: Makefile,v 1.1 2016/05/26 19:14:25 schwarze Exp $
+
+TEST_ENV=      "MALLOC_OPTIONS=AFGJPRX"
+
+PROG=test_utf8
+SRCS=tests.c
+REGRESS_TARGETS=run-regress-${PROG}
+
+run-regress-${PROG}: ${PROG}
+       env ${TEST_ENV} ./${PROG}
+
+.include <bsd.regress.mk>
diff --git a/regress/unittests/utf8/tests.c b/regress/unittests/utf8/tests.c
new file mode 100644 (file)
index 0000000..d18cadc
--- /dev/null
@@ -0,0 +1,63 @@
+/*     $OpenBSD: tests.c,v 1.1 2016/05/26 19:14:25 schwarze Exp $ */
+/*
+ * Regress test for the utf8.h *mprintf() API
+ *
+ * Written by Ingo Schwarze <schwarze@openbsd.org> in 2016
+ * and placed in the public domain.
+ */
+
+#include <locale.h>
+#include <string.h>
+
+#include "test_helper.h"
+
+#include "utf8.h"
+
+void    one(const char *, const char *, int, int, int, const char *);
+
+void
+one(const char *name, const char *mbs, int width,
+    int wantwidth, int wantlen, const char *wants)
+{
+       char     buf[16];
+       int     *wp;
+       int      len;
+
+       if (wantlen == -2)
+               wantlen = strlen(wants);
+       (void)strlcpy(buf, "utf8_", sizeof(buf));
+       (void)strlcat(buf, name, sizeof(buf));
+       TEST_START(buf);
+       wp = wantwidth == -2 ? NULL : &width;
+       len = snmprintf(buf, sizeof(buf), wp, "%s", mbs);
+       ASSERT_INT_EQ(len, wantlen);
+       ASSERT_STRING_EQ(buf, wants);
+       ASSERT_INT_EQ(width, wantwidth);
+       TEST_DONE();
+}
+
+void
+tests(void)
+{
+       char    *loc;
+
+       TEST_START("utf8_setlocale");
+       loc = setlocale(LC_CTYPE, "en_US.UTF-8");
+       ASSERT_PTR_NE(loc, NULL);
+       TEST_DONE();
+
+       one("ascii", "x", -2, -2, -2, "x");
+       one("newline", "a\nb", -2, -2, -2, "a\nb");
+       one("cr", "a\rb", -2, -2, -2, "a\rb");
+       one("tab", "a\tb", -2, -2, -2, "a\tb");
+       one("esc", "\033x", -2, -2, -2, "\\033x");
+       one("inv_badbyte", "\377x", -2, -2, -2, "\\377x");
+       one("inv_nocont", "\341x", -2, -2, -2, "\\341x");
+       one("inv_nolead", "a\200b", -2, -2, -2, "a\\200b");
+       one("sz_ascii", "1234567890123456", -2, -2, 16, "123456789012345");
+       one("sz_esc", "123456789012\033", -2, -2, 16, "123456789012");
+       one("width_ascii", "123", 2, 2, -1, "12");
+       one("width_double", "a\343\201\201", 2, 1, -1, "a");
+       one("double_fit", "a\343\201\201", 3, 3, 4, "a\343\201\201");
+       one("double_spc", "a\343\201\201", 4, 3, 4, "a\343\201\201");
+}