Add test for broken escapes in parse_config_...

This commit is contained in:
Esteban Manchado Velázquez 2012-02-20 17:39:43 +01:00 committed by Nick Mathewson
parent 8bb68011f0
commit fa4ca5ddc1

View File

@ -415,6 +415,7 @@ test_util_config_line_escaped_content(void)
char buf3[128];
char buf4[128];
char buf5[128];
char buf6[128];
char *k=NULL, *v=NULL;
const char *str;
@ -444,6 +445,9 @@ test_util_config_line_escaped_content(void)
strlcpy(buf5, "BrokenHex \"\\xg4\"\n"
, sizeof(buf5));
strlcpy(buf6, "BrokenEscape \"\\"
, sizeof(buf6));
str = buf1;
str = parse_config_line_from_str(str, &k, &v);
@ -527,6 +531,12 @@ test_util_config_line_escaped_content(void)
tor_free(k); tor_free(v);
#endif
str = buf6;
str = parse_config_line_from_str(str, &k, &v);
test_eq_ptr(str, NULL);
tor_free(k); tor_free(v);
done:
tor_free(k);
tor_free(v);