/* * TeleStax, Open Source Cloud Communications * Copyright 2011-2015, Telestax Inc and individual contributors * by the @authors tag. * * This program is free software: you can redistribute it and/or modify * under the terms of the GNU Affero General Public License as * published by the Free Software Foundation; either version 3 of * the License, or (at your option) any later version. * * This program 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/> */ package org.mobicents.tools.smpp.balancer; import static org.junit.Assert.*; import java.util.concurrent.Executors; import java.util.concurrent.ScheduledThreadPoolExecutor; import java.util.concurrent.Semaphore; import java.util.concurrent.ThreadFactory; import java.util.concurrent.ThreadPoolExecutor; import java.util.concurrent.atomic.AtomicInteger; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Test; import org.mobicents.tools.sip.balancer.BalancerRunner; import org.mobicents.tools.smpp.multiplexer.MBalancerDispatcher; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.cloudhopper.smpp.SmppSession; import com.cloudhopper.smpp.impl.DefaultSmppClient; import com.cloudhopper.smpp.impl.DefaultSmppServer; import com.cloudhopper.smpp.type.SmppChannelException; /** * @author Konstantin Nosach (kostyantyn.nosach@telestax.com) */ public class RebindTest { private static final Logger logger = LoggerFactory.getLogger(CommonTest.class); private static ThreadPoolExecutor executor = (ThreadPoolExecutor) Executors.newCachedThreadPool(); private static ScheduledThreadPoolExecutor monitorExecutor = (ScheduledThreadPoolExecutor) Executors.newScheduledThreadPool(1, new ThreadFactory() { private AtomicInteger sequence = new AtomicInteger(0); public Thread newThread(Runnable r) { Thread t = new Thread(r); t.setName("MonitorPool-" + sequence.getAndIncrement()); return t; } }); private static BalancerRunner balancer; private static int clientNumbers = 1; private static int serverNumbers = 3; private static DefaultSmppServer[] serverArray; private static DefaultSmppServerHandler [] serverHandlerArray = new DefaultSmppServerHandler[serverNumbers]; @BeforeClass public static void initialization() { boolean enableSslLbPort = false; boolean terminateTLSTraffic = true; //start lb balancer = new BalancerRunner(); balancer.start(ConfigInit.getLbProperties(enableSslLbPort,terminateTLSTraffic)); // start servers serverArray = new DefaultSmppServer[serverNumbers]; for (int i = 0; i < serverNumbers; i++) { serverHandlerArray[i] = new DefaultSmppServerHandler(); serverArray[i] = new DefaultSmppServer(ConfigInit.getSmppServerConfiguration(i,false), serverHandlerArray[i], executor, monitorExecutor); logger.info("Starting SMPP server..."); try { serverArray[i].start(); } catch (SmppChannelException e) { logger.info("SMPP server does not started"); e.printStackTrace(); } logger.info("SMPP server started"); } try { Thread.sleep(2000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } //tests situation with dropped connection to server(rebind check) @Test public void testDisconnectServers() { Locker locker = new Locker(clientNumbers); // start client new Load(locker, 1).start(); locker.waitForClients(); assertEquals(1, serverHandlerArray[2].getSmsNumber()); assertTrue(((MBalancerDispatcher)balancer.smppBalancerRunner.getBalancerDispatcher()).getUserSpaces().isEmpty()); } @Test public void testRebind() { Locker locker = new Locker(clientNumbers); // start client new Load(locker, 2).start(); locker.waitForClients(); assertEquals(2, serverHandlerArray[0].getSmsNumber()); assertTrue(((MBalancerDispatcher)balancer.smppBalancerRunner.getBalancerDispatcher()).getUserSpaces().isEmpty()); } @AfterClass public static void finalization() { for (int i = 0; i < serverNumbers; i++) { logger.info("Stopping SMPP server " + i + " ..."); serverArray[i].destroy(); logger.info("SMPP server " + i + "stopped"); } executor.shutdownNow(); monitorExecutor.shutdownNow(); balancer.stop(); logger.info("Done. Exiting"); } private class Load extends Thread { private ClientListener listener; private int testNumber; Load(ClientListener listener, int testNumber) { this.listener = listener; this.testNumber = testNumber; } public void run() { DefaultSmppClient client = new DefaultSmppClient(); SmppSession session = null; try { if(testNumber == 1) { session = client.bind(ConfigInit.getSmppSessionConfiguration(1,false),new DefaultSmppClientHandler()); logger.info("stopping server 0"); serverArray[0].stop(); logger.info("stopping server 1"); serverArray[1].stop(); sleep(1000); session.submit(ConfigInit.getSubmitSm(), 12000); sleep(1000); session.unbind(5000); serverArray[0].start(); serverArray[1].start(); } if(testNumber == 2) { session = client.bind(ConfigInit.getSmppSessionConfiguration(1,false),new DefaultSmppClientHandler()); serverArray[0].stop(); serverArray[0].start(); sleep(2000); for(int j = 0; j < 6; j++) { session.submit(ConfigInit.getSubmitSm(), 12000); } sleep(1000); session.unbind(5000); } } catch (Exception e) { logger.error("", e); } if (session != null) { logger.info("Cleaning up session..."); session.destroy(); } logger.info("Shutting down client bootstrap and executors..."); client.destroy(); listener.clientCompleted(); } } private class Locker implements ClientListener { private Semaphore clientsSemaphore; private Locker(int clients) { clientsSemaphore = new Semaphore(1 - clients); } @Override public void clientCompleted() { clientsSemaphore.release(); } public void waitForClients() { try { clientsSemaphore.acquire(); } catch (InterruptedException ex) { } } } }