[tor-commits] [tor/master] Add tests for the string_is_utf8_no_bom() function.

nickm at torproject.org nickm at torproject.org
Tue Nov 6 20:34:14 UTC 2018


commit da716fdfbb08952b971882eba1dabca2fef9c7f3
Author: George Kadianakis <desnacked at riseup.net>
Date:   Thu Nov 1 12:55:04 2018 +0200

    Add tests for the string_is_utf8_no_bom() function.
---
 src/test/test_util.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/test/test_util.c b/src/test/test_util.c
index 7bc1b7921..067825113 100644
--- a/src/test/test_util.c
+++ b/src/test/test_util.c
@@ -4024,6 +4024,13 @@ test_util_string_is_utf8(void *ptr)
   tt_int_op(1, OP_EQ, string_is_utf8("ascii\x7f\n", 7));
   tt_int_op(1, OP_EQ, string_is_utf8("Risqu\u00e9=1", 9));
 
+  /* Test the utf8_no_bom function */
+  tt_int_op(0, OP_EQ, string_is_utf8_no_bom("\uFEFF", 3));
+  tt_int_op(0, OP_EQ, string_is_utf8_no_bom("\uFFFE", 3));
+  tt_int_op(0, OP_EQ, string_is_utf8_no_bom("\uFEFFlove", 7));
+  tt_int_op(1, OP_EQ, string_is_utf8_no_bom("loveandrespect",
+                                            strlen("loveandrespect")));
+
   // Validate exactly 'len' bytes.
   tt_int_op(0, OP_EQ, string_is_utf8("\0\x80", 2));
   tt_int_op(0, OP_EQ, string_is_utf8("Risqu\u00e9=1", 6));





More information about the tor-commits mailing list