Package org.hornetq.tests.integration.client

Source Code of org.hornetq.tests.integration.client.ServerLocatorConnectTest$Connector

/*
* Copyright 2009 Red Hat, Inc.
*  Red Hat licenses this file to you under the Apache License, version
*  2.0 (the "License"); you may not use this file except in compliance
*  with the License.  You may obtain a copy of the License at
*     http://www.apache.org/licenses/LICENSE-2.0
*  Unless required by applicable law or agreed to in writing, software
*  distributed under the License is distributed on an "AS IS" BASIS,
*  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
*  implied.  See the License for the specific language governing
*  permissions and limitations under the License.
*/

package org.hornetq.tests.integration.client;

import org.hornetq.api.core.HornetQException;
import org.hornetq.api.core.client.ClientSessionFactory;
import org.hornetq.api.core.client.HornetQClient;
import org.hornetq.api.core.client.ServerLocator;
import org.hornetq.core.client.impl.ClientSessionFactoryInternal;
import org.hornetq.core.client.impl.ServerLocatorInternal;
import org.hornetq.core.config.Configuration;
import org.hornetq.core.server.HornetQServer;
import org.hornetq.tests.util.ServiceTestBase;

import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;

/**
* User: andy
* Date: Sep 15, 2010
* Time: 2:27:07 PM
* * @author <a href="mailto:andy.taylor@jboss.com">Andy Taylor</a>
*/
public class ServerLocatorConnectTest extends ServiceTestBase
{
   private HornetQServer server;

   @Override
   protected void setUp() throws Exception
   {
      super.setUp();
      Configuration configuration = createDefaultConfig(isNetty());
      server = createServer(false, configuration);
      server.start();
   }

   @Override
   protected void tearDown() throws Exception
   {
      server.stop();
      super.tearDown();
   }

   public void testSingleConnectorSingleServer() throws Exception
   {

      ServerLocator locator = HornetQClient.createServerLocatorWithoutHA(createTransportConfiguration(isNetty(), false, generateParams(0, isNetty())));
      ClientSessionFactory csf = locator.createSessionFactory();
      csf.close();
      locator.close();
   }

   public void testSingleConnectorSingleServerConnect() throws Exception
   {
      ServerLocatorInternal locator = (ServerLocatorInternal) HornetQClient.createServerLocatorWithoutHA(createTransportConfiguration(isNetty(), false, generateParams(0, isNetty())));
      ClientSessionFactoryInternal csf = (ClientSessionFactoryInternal) locator.connect();
      assertNotNull(csf);
      assertEquals(csf.numConnections(), 1);
      locator.close();
   }

   public void testMultipleConnectorSingleServerConnect() throws Exception
   {
      ServerLocatorInternal locator = (ServerLocatorInternal) HornetQClient.createServerLocatorWithoutHA(
            createTransportConfiguration(isNetty(), false, generateParams(0, isNetty())),
            createTransportConfiguration(isNetty(), false, generateParams(1, isNetty())),
            createTransportConfiguration(isNetty(), false, generateParams(2, isNetty())),
            createTransportConfiguration(isNetty(), false, generateParams(3, isNetty())),
            createTransportConfiguration(isNetty(), false, generateParams(4, isNetty()))
      );
      ClientSessionFactoryInternal csf = (ClientSessionFactoryInternal) locator.connect();
      assertNotNull(csf);
      assertEquals(csf.numConnections(), 1);
      locator.close();
   }

   public void testMultipleConnectorSingleServerConnectReconnect() throws Exception
   {
      ServerLocatorInternal locator = (ServerLocatorInternal) HornetQClient.createServerLocatorWithoutHA(
            createTransportConfiguration(isNetty(), false, generateParams(0, isNetty())),
            createTransportConfiguration(isNetty(), false, generateParams(1, isNetty())),
            createTransportConfiguration(isNetty(), false, generateParams(2, isNetty())),
            createTransportConfiguration(isNetty(), false, generateParams(3, isNetty())),
            createTransportConfiguration(isNetty(), false, generateParams(4, isNetty()))
      );
      locator.setReconnectAttempts(-1);
      ClientSessionFactoryInternal csf = (ClientSessionFactoryInternal) locator.connect();
      assertNotNull(csf);
      assertEquals(csf.numConnections(), 1);
      locator.close();
   }

   public void testMultipleConnectorSingleServerNoConnect() throws Exception
   {
      ServerLocatorInternal locator = (ServerLocatorInternal) HornetQClient.createServerLocatorWithoutHA(
            createTransportConfiguration(isNetty(), false, generateParams(1, isNetty())),
            createTransportConfiguration(isNetty(), false, generateParams(2, isNetty())),
            createTransportConfiguration(isNetty(), false, generateParams(3, isNetty())),
            createTransportConfiguration(isNetty(), false, generateParams(4, isNetty())),
            createTransportConfiguration(isNetty(), false, generateParams(5, isNetty()))
      );
      ClientSessionFactoryInternal csf = null;
      try
      {
         csf = (ClientSessionFactoryInternal) locator.connect();
      }
      catch (Exception e)
      {
         assertTrue(e instanceof HornetQException);
         assertEquals(((HornetQException)e).getCode(), HornetQException.NOT_CONNECTED);
      }
      assertNull(csf);
      locator.close();
   }

   public void testMultipleConnectorSingleServerNoConnectAttemptReconnect() throws Exception
   {
      ServerLocatorInternal locator = (ServerLocatorInternal) HornetQClient.createServerLocatorWithoutHA(
            createTransportConfiguration(isNetty(), false, generateParams(1, isNetty())),
            createTransportConfiguration(isNetty(), false, generateParams(2, isNetty())),
            createTransportConfiguration(isNetty(), false, generateParams(3, isNetty())),
            createTransportConfiguration(isNetty(), false, generateParams(4, isNetty())),
            createTransportConfiguration(isNetty(), false, generateParams(5, isNetty()))
      );
      locator.setReconnectAttempts(-1);
      ClientSessionFactoryInternal csf = null;
      CountDownLatch countDownLatch = new CountDownLatch(1);
      Connector target = new Connector(locator, countDownLatch);
      Thread t = new Thread(target);
      t.start();
      //let them get started
      Thread.sleep(500);
      locator.close();
      assertTrue(countDownLatch.await(5, TimeUnit.SECONDS));
      assertNull(target.csf);
   }

   public boolean isNetty()
   {
      return false;
   }

   static class Connector implements Runnable
   {
      private ServerLocatorInternal locator;
      ClientSessionFactory csf = null;
      CountDownLatch latch;
      Exception e;
      public Connector(ServerLocatorInternal locator, CountDownLatch latch)
      {
         this.locator = locator;
         this.latch = latch;
      }

      public void run()
      {
         try
         {
            csf = locator.connect();
         }
         catch (Exception e)
         {
            this.e = e;
         }
         latch.countDown();
      }
   }
}
TOP

Related Classes of org.hornetq.tests.integration.client.ServerLocatorConnectTest$Connector

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.