View Javadoc
1   /*
2    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
3    * The software in this package is published under the terms of the CPAL v1.0
4    * license, a copy of which has been included with this distribution in the
5    * LICENSE.txt file.
6    */
7   package org.mule.transport.http.functional;
8   
9   import org.mule.DefaultMuleMessage;
10  import org.mule.api.MuleMessage;
11  import org.mule.module.client.MuleClient;
12  import org.mule.transport.http.HttpConnector;
13  
14  import static org.junit.Assert.assertEquals;
15  import static org.junit.Assert.assertNotNull;
16  
17  public class HttpBadEncodingFunctionalTestCase extends HttpEncodingFunctionalTestCase
18  {
19  
20      @Override
21      public void testSend() throws Exception
22      {
23          MuleClient client = new MuleClient(muleContext);
24          
25          // Send as bytes so that the StringRequestEntity isn't used. If it is used
26          // it will throw an exception and stop us from testing the server side.
27          DefaultMuleMessage msg = new DefaultMuleMessage(TEST_MESSAGE.getBytes(), muleContext);
28          msg.setEncoding("UTFF-912");
29          MuleMessage reply = client.send("clientEndpoint", msg);
30          assertNotNull(reply);
31          assertEquals("500", reply.<Object>getInboundProperty(HttpConnector.HTTP_STATUS_PROPERTY));
32          assertNotNull(reply.getExceptionPayload());
33      }
34  
35  }