pike.git
/
src
/
modules
/
MIME
/
testsuite.in
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/modules/MIME/testsuite.in:138:
test_eq([[MIME.Message("MIME-Version: 1.0\r\n\r\nfoo\r\n")->getencoded()]], "foo\r\n") test_equal([[MIME.Message((string)MIME.Message("foo\r\n", (["mImE-veRsion":"1.0"])))->headers]], (["mime-version":"1.0","content-length":"5"])) test_any([[ string pf_in = "My-Pr3f1x(.0/9)"; MIME.set_boundary_prefix(pf_in); string pf_out = MIME.get_boundary_prefix(); string boundary = MIME.generate_boundary();
-
int nm = sscanf(boundary, pf_out + "
=_.
%d
:
", int n);
+
int nm = sscanf(boundary, pf_out + "%d
%s
", int n
, string suffix
);
return pf_in == pf_out && boundary[0..sizeof(pf_out)-1] == pf_out &&
-
nm ==
1
&& n <= 1000000000;
+
nm ==
2
&& n <= 1000000000
&& suffix == ""
;
]], 1) END_MARKER