Author: rsearls
Date: 2014-04-01 08:29:55 -0400 (Tue, 01 Apr 2014)
New Revision: 18555
Added:
stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/encoded/href/MarshallHrefTestCase.java
Modified:
stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/encoded/href/MarshallTestCase.java
Log:
[JBWS-3764] fix of leaks of HRef.
Added:
stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/encoded/href/MarshallHrefTestCase.java
===================================================================
---
stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/encoded/href/MarshallHrefTestCase.java
(rev 0)
+++
stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/encoded/href/MarshallHrefTestCase.java 2014-04-01
12:29:55 UTC (rev 18555)
@@ -0,0 +1,64 @@
+/*
+ * 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.jaxrpc.encoded.href;
+
+import javax.naming.InitialContext;
+import javax.xml.rpc.Service;
+
+import junit.framework.Test;
+
+import org.jboss.wsf.test.JBossWSTest;
+import org.jboss.wsf.test.JBossWSTestSetup;
+
+/**
+ * Test soap encoded href
+ *
+ * @author Thomas.Diesler(a)jboss.org
+ * @since 23-Mar-2007
+ */
+public class MarshallHrefTestCase extends JBossWSTest
+{
+ private static MarshallTest port;
+
+ public static Test suite()
+ {
+ return new JBossWSTestSetup(MarshallHrefTestCase.class,
"jaxrpc-encoded-href.war, jaxrpc-encoded-href-client.jar");
+ }
+
+ protected void setUp() throws Exception
+ {
+ super.setUp();
+ if (port == null)
+ {
+ InitialContext iniCtx = getInitialContext();
+ Service service =
(Service)iniCtx.lookup("java:comp/env/service/TestService");
+ port = (MarshallTest)service.getPort(MarshallTest.class);
+ }
+ }
+
+ public void testHrefMessage() throws Exception
+ {
+ HRefHandler.setHrefEncoding(true);
+ byte[] retObj = port.base64BinaryTest("HandlerReplacesThis".getBytes());
+ assertEquals("HrefEncodedResponse", new String(retObj));
+ }
+}
Modified:
stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/encoded/href/MarshallTestCase.java
===================================================================
---
stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/encoded/href/MarshallTestCase.java 2014-04-01
09:46:30 UTC (rev 18554)
+++
stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/encoded/href/MarshallTestCase.java 2014-04-01
12:29:55 UTC (rev 18555)
@@ -57,14 +57,8 @@
public void testByteArrayTest() throws Exception
{
+ HRefHandler.setHrefEncoding(false);
byte[] retObj = port.base64BinaryTest("Hello World!".getBytes());
assertEquals("Hello World!", new String(retObj));
}
-
- public void testHrefMessage() throws Exception
- {
- HRefHandler.setHrefEncoding(true);
- byte[] retObj = port.base64BinaryTest("HandlerReplacesThis".getBytes());
- assertEquals("HrefEncodedResponse", new String(retObj));
- }
}