View Javadoc

1   /*
2    * $Id: JettyHttpBadEncodingFunctionalTestCase.java 19191 2010-08-25 21:05:23Z tcarlson $
3    * --------------------------------------------------------------------------------------
4    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
5    *
6    * The software in this package is published under the terms of the CPAL v1.0
7    * license, a copy of which has been included with this distribution in the
8    * LICENSE.txt file.
9    */
10  
11  package org.mule.transport.servlet.jetty.functional;
12  
13  import org.mule.DefaultMuleMessage;
14  import org.mule.api.MuleMessage;
15  import org.mule.module.client.MuleClient;
16  import org.mule.transport.http.HttpConnector;
17  
18  public class JettyHttpBadEncodingFunctionalTestCase extends JettyHttpEncodingFunctionalTestCase
19  {
20  
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.getInboundProperty(HttpConnector.HTTP_STATUS_PROPERTY));
32          assertNotNull(reply.getExceptionPayload());
33      }
34  
35  }