Author: alessio.soldano(a)jboss.com
Date: 2010-04-14 14:08:15 -0400 (Wed, 14 Apr 2010)
New Revision: 11987
Added:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws2307/JBWS2307MTOMTestCase.java
Modified:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws2307/ClientServlet.java
Log:
[JBWS-2997] split testcase
Modified:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws2307/ClientServlet.java
===================================================================
---
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws2307/ClientServlet.java 2010-04-14
17:33:54 UTC (rev 11986)
+++
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws2307/ClientServlet.java 2010-04-14
18:08:15 UTC (rev 11987)
@@ -53,10 +53,13 @@
log.info("service = "+service);
Hello hello = service.getHelloPort();
SOAPBinding binding = (SOAPBinding)((BindingProvider)hello).getBinding();
- log.info("mtom enabled = " + binding.isMTOMEnabled());
- if (!binding.isMTOMEnabled())
+ if ("true".equals(req.getParameter("mtom")))
{
- throw new Exception("Expected mtom enabled because of port-component
configuration in the DD");
+ log.info("mtom enabled = " + binding.isMTOMEnabled());
+ if (!binding.isMTOMEnabled())
+ {
+ throw new Exception("Expected mtom enabled because of port-component
configuration in the DD");
+ }
}
result = hello.getMessageContextTest();
log.info("result = " + result);
Added:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws2307/JBWS2307MTOMTestCase.java
===================================================================
---
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws2307/JBWS2307MTOMTestCase.java
(rev 0)
+++
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws2307/JBWS2307MTOMTestCase.java 2010-04-14
18:08:15 UTC (rev 11987)
@@ -0,0 +1,52 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+ */
+package org.jboss.test.ws.jaxws.jbws2307;
+
+import java.io.BufferedReader;
+import java.io.InputStreamReader;
+import java.net.HttpURLConnection;
+import java.net.URL;
+
+import junit.framework.Test;
+
+import org.jboss.wsf.test.JBossWSTest;
+import org.jboss.wsf.test.JBossWSTestSetup;
+
+/**
+ * JBWS-2307 / JBWS-2997 testcase
+ *
+ * @author alessio.soldano(a)jboss.com
+ */
+public class JBWS2307MTOMTestCase extends JBossWSTest
+{
+ public static Test suite()
+ {
+ return new JBossWSTestSetup(JBWS2307MTOMTestCase.class,
"jaxws-jbws2307-client.war, jaxws-jbws2307-service.war");
+ }
+
+ public void testMTOM() throws Exception
+ {
+ HttpURLConnection con = (HttpURLConnection)new URL("http://" +
getServerHost() +
":8080/jaxws-jbws2307-client/jbws2307?mtom=true").openConnection();
+ BufferedReader isr = new BufferedReader(new
InputStreamReader(con.getInputStream()));
+ assertEquals("true", isr.readLine());
+ }
+}
Property changes on:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws2307/JBWS2307MTOMTestCase.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF