Package org.jboss.test.ws.jaxrpc.samples.dynamichandler

Source Code of org.jboss.test.ws.jaxrpc.samples.dynamichandler.DynamicHandlerTestCase

/*
* 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.samples.dynamichandler;

import java.util.Iterator;
import java.util.List;

import javax.naming.InitialContext;
import javax.xml.namespace.QName;
import javax.xml.rpc.handler.HandlerInfo;
import javax.xml.rpc.handler.HandlerRegistry;

import junit.framework.Test;

import org.jboss.ws.core.jaxrpc.client.ServiceExt;
import org.jboss.wsf.test.JBossWSTest;
import org.jboss.wsf.test.JBossWSTestSetup;

/**
* Test dynamic handlers
*
* @author Thomas.Diesler@jboss.org
* @since 20-Jul-2005
*/
public class DynamicHandlerTestCase extends JBossWSTest
{
   public final String TARGET_ENDPOINT_ADDRESS = "http://" + getServerHost() + ":8080/jaxrpc-samples-dynamichandler";
   private static final String TARGET_NAMESPACE = "http://org.jboss.ws/samples/dynamichandler";

   private static ServiceExt service;
   private static HandlerTestService endpoint;

   public static Test suite()
   {
      return new JBossWSTestSetup(DynamicHandlerTestCase.class, "jaxrpc-samples-dynamichandler.war, jaxrpc-samples-dynamichandler-client.jar");
   }

   protected void setUp() throws Exception
   {
      super.setUp();

      if (endpoint == null)
      {
         InitialContext iniCtx = getInitialContext();
         service = (ServiceExt)iniCtx.lookup("java:comp/env/service/TestService");
         endpoint = (HandlerTestService)service.getPort(HandlerTestService.class);
      }
   }

   public void testStaticHandlers() throws Exception
   {
      String res = endpoint.testHandlers("InitalMessage");
      assertEquals("InitalMessage|ClientRequest|ServerRequest|ServerResponse|ClientResponse", res);
   }

   public void testRemoveClientHandlers() throws Exception
   {
      HandlerRegistry registry = service.getDynamicHandlerRegistry();
      QName portName = new QName(TARGET_NAMESPACE, "HandlerTestServicePort");

      List infos = registry.getHandlerChain(portName);
      Iterator it = infos.iterator();
      while (it.hasNext())
      {
         HandlerInfo info = (HandlerInfo)it.next();
         if (info.getHandlerClass() == ClientSideHandler.class)
            it.remove();
      }
      registry.setHandlerChain(portName, infos);

      String res = endpoint.testHandlers("InitalMessage");
      assertEquals("InitalMessage|ServerRequest|ServerResponse", res);
   }
}
TOP

Related Classes of org.jboss.test.ws.jaxrpc.samples.dynamichandler.DynamicHandlerTestCase

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.