X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Frfc822%2Ftest%2Ftestdata.h;h=421b74875a1c37378c95a003dbf44e73a55826d8;hp=ceb3bcd892078e429509d1911988ad5ebbf45ac0;hb=850364146a1cc66a92943f43dc4012d9c70902eb;hpb=de28abde1337e9255812ba720ffeef2c83a25dde diff --git a/ccan/rfc822/test/testdata.h b/ccan/rfc822/test/testdata.h index ceb3bcd8..421b7487 100644 --- a/ccan/rfc822/test/testdata.h +++ b/ccan/rfc822/test/testdata.h @@ -7,6 +7,7 @@ struct testhdr { const char *name, *val; + enum rfc822_header_errors errors; }; struct aexample { @@ -53,11 +54,27 @@ AEXAMPLE(test_msg_nlnl_crlf); const char test_msg_nlnl_mixed_body[] = "Message containing both \n\n and \r\n\r\n inside body\n\r\n"; AEXAMPLE(test_msg_nlnl_mixed); +#define test_msg_space_body_hdrs test_msg_1_hdrs +const char test_msg_space_body_body[] = " Message with LWS at start of body\n"; +AEXAMPLE(test_msg_space_body); + +struct testhdr bad_hdrs_hdrs[] = { + {"From", "Mister From "}, + {"To", "Mizz To "}, + {"X-Bad-\bName", "This header field has bad characters in the name", + .errors = RFC822_HDR_BAD_NAME_CHARS}, + {"Subject", "Some subject"}, + {"Message-ID", "<20110221131559.GA28327@example>"}, +}; +#define bad_hdrs_body test_msg_1_body +AEXAMPLE(bad_hdrs) #define for_each_aexample(_e) \ foreach_ptr((_e), &test_msg_1, &test_msg_empty_body, \ &test_msg_nlnl_lf, &test_msg_nlnl_crlf, \ - &test_msg_nlnl_mixed) + &test_msg_nlnl_mixed, \ + &test_msg_space_body, \ + &bad_hdrs) #define for_each_aexample_buf(_e, _buf, _len) \ for_each_aexample((_e)) \