]> granicus.if.org Git - neomutt/commitdiff
test: improve test_mutt_str_is_ascii()
authorRichard Russon <rich@flatcap.org>
Sun, 26 May 2019 15:02:23 +0000 (16:02 +0100)
committerRichard Russon <rich@flatcap.org>
Sun, 26 May 2019 16:18:13 +0000 (17:18 +0100)
mutt/string.c
mutt/string2.h
test/string/mutt_str_is_ascii.c

index d372fa87efd17c159e0f5180c26b0a0969274c4d..e3e40870b011d20bb3a99babd2258f0d0db14a79 100644 (file)
@@ -1003,19 +1003,19 @@ int mutt_str_word_casecmp(const char *a, const char *b)
 
 /**
  * mutt_str_is_ascii - Is a string ASCII (7-bit)?
- * @param p   String to examine
- * @param len Length of string
+ * @param str String to examine
+ * @param len Length of string to examine
  * @retval true There are no 8-bit chars
  */
-bool mutt_str_is_ascii(const char *p, size_t len)
+bool mutt_str_is_ascii(const char *str, size_t len)
 {
-  const char *s = p;
-  while (s && ((unsigned int) (s - p) < len))
-  {
-    if ((*s & 0x80) != 0)
+  if (!str)
+    return true;
+
+  for (; (*str != '\0') && (len > 0); str++, len--)
+    if ((*str & 0x80) != 0)
       return false;
-    s++;
-  }
+
   return true;
 }
 
index a0edd243ec6a4096cdedf87a9f0a51c9194fb454..89df8cb45459baad88913eeac638e5d38c8388bd 100644 (file)
@@ -81,7 +81,7 @@ void        mutt_str_dequote_comment(char *s);
 const char *mutt_str_find_word(const char *src);
 const char *mutt_str_getenv(const char *name);
 bool        mutt_str_inline_replace(char *buf, size_t buflen, size_t xlen, const char *rstr);
-bool        mutt_str_is_ascii(const char *p, size_t len);
+bool        mutt_str_is_ascii(const char *str, size_t len);
 bool        mutt_str_is_email_wsp(char c);
 size_t      mutt_str_lws_len(const char *s, size_t n);
 size_t      mutt_str_lws_rlen(const char *s, size_t n);
index 333f1497bc8cc75169a565fe05aeddaffaf834c0..e78648159ef7cd176236d6e2a1a8ffe0e0f02dd1 100644 (file)
 #include "config.h"
 #include "mutt/mutt.h"
 
+struct IsAsciiTest
+{
+  const char *str;
+  int len;
+  bool result;
+};
+
 void test_mutt_str_is_ascii(void)
 {
   // bool mutt_str_is_ascii(const char *p, size_t len);
 
+  struct IsAsciiTest ascii_tests[] =
+  {
+    { NULL,    10, true },
+    { "apple", 0,  true },
+    { "",      10, true },
+    { "apple", 5,  true },
+
+    { "\200apple", 6,  false },
+    { "ap\200ple", 6,  false },
+    { "apple\200", 6,  false },
+    { "apple\200", 5,  true },
+  };
+
   {
-    TEST_CHECK(mutt_str_is_ascii(NULL, 10) == true);
+    for (size_t i = 0; i < mutt_array_size(ascii_tests); i++)
+    {
+      struct IsAsciiTest *t = &ascii_tests[i];
+      TEST_CASE_("%s", NONULL(t->str));
+      bool result = mutt_str_is_ascii(t->str, t->len);
+      TEST_CHECK(result == t->result);
+    }
   }
 }