You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hc.apache.org by "Oleg Kalnichevski (JIRA)" <ji...@apache.org> on 2012/12/27 17:22:12 UTC

[jira] [Resolved] (HTTPCORE-324) EntityUtils does not provide default charset when charset name provided is null

     [ https://issues.apache.org/jira/browse/HTTPCORE-324?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Oleg Kalnichevski resolved HTTPCORE-324.
----------------------------------------

       Resolution: Fixed
    Fix Version/s: 4.3-alpha2

Fixed in SVN trunk and 4.2.x branch.

Oleg
                
> EntityUtils does not provide default charset when charset name provided is null
> -------------------------------------------------------------------------------
>
>                 Key: HTTPCORE-324
>                 URL: https://issues.apache.org/jira/browse/HTTPCORE-324
>             Project: HttpComponents HttpCore
>          Issue Type: Bug
>    Affects Versions: 4.2.3
>            Reporter: Zefi
>            Priority: Minor
>             Fix For: 4.3-alpha2
>
>
> Javadoc for EntityUtils.toString(HttpEntity, String) says "If defaultCharset is null, the default "ISO-8859-1" is used", but it actually throws IllegalArgumentException.
> Here's a test case to prove this:
> @Test
> public void shouldNotFailWhenNullCharsetStringIsGiven() throws Exception {
>     try {
>         EntityUtils.toString(Mockito.mock(HttpEntity.class), (String) null);
>     } catch (IllegalArgumentException ex) {
>         if (ex.getMessage().equals("Null charset name")) {
>             throw new AssertionError("Should supply null charset with default");
>         }
>     }
> }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@hc.apache.org
For additional commands, e-mail: dev-help@hc.apache.org