Base64 default constructor behaviour changed to enable chunking in 1.4
----------------------------------------------------------------------
Key: CODEC-97
URL: https://issues.apache.org/jira/browse/CODEC-97
Project: Commons Codec
Issue Type: Bug
Affects Versions: 1.4
Reporter: Matt Ryall
Attachments: Base64Test-mryall-1.patch
The following test passes in commons-codec 1.3 but fails in 1.4:
{code}
public void testObjectEncode() throws Exception {
Base64 b64 = new Base64();
assertEquals("SGVsbG8gV29ybGQ=", new String(b64.encode("Hello
World".getBytes())));
}
{code}
Commons-codec 1.3 returns "SGVsbG8gV29ybGQ=".
Commons-codec 1.4 returns "SGVsbG8gV29ybGQ=\r\n".
I'd understand if you want to close this as "Won't Fix", since the behaviour
wasn't documented before (the constructor wasn't even present!) and now it is.
However, there is still no test for this behaviour on trunk as far as I can
tell, so it would be good to add one so it doesn't change again in the future.
I'll attach a patch for Base64Test which you can apply on trunk which will do
so.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.