/* * 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.sip.balancer; import static org.junit.Assert.assertTrue; import javax.sip.ListeningPoint; import javax.sip.message.Response; import org.junit.After; import org.junit.Test; import org.mobicents.tools.configuration.LoadBalancerConfiguration; import org.mobicents.tools.sip.balancer.operation.Shootist; /** * @author Konstantin Nosach (kostyantyn.nosach@telestax.com) */ public class Response5xxTest { BalancerRunner balancer; Shootist shootist; AppServer server; AppServer ringingAppServer; AppServer okAppServer; public void setUp() throws Exception { shootist = new Shootist(ListeningPoint.TCP,5060); balancer = new BalancerRunner(); LoadBalancerConfiguration lbConfig = new LoadBalancerConfiguration(); lbConfig.getSipStackConfiguration().getSipStackProperies().setProperty("javax.sip.AUTOMATIC_DIALOG_SUPPORT", "off"); lbConfig.getSipStackConfiguration().getSipStackProperies().setProperty("gov.nist.javax.sip.TRACE_LEVEL", "32"); lbConfig.getSipStackConfiguration().getSipStackProperies().setProperty("gov.nist.javax.sip.DEBUG_LOG","logs/sipbalancerforwarderdebug.txt"); lbConfig.getSipStackConfiguration().getSipStackProperies().setProperty("gov.nist.javax.sip.SERVER_LOG","logs/sipbalancerforwarder.xml"); lbConfig.getSipStackConfiguration().getSipStackProperies().setProperty("gov.nist.javax.sip.THREAD_POOL_SIZE", "2"); lbConfig.getSipStackConfiguration().getSipStackProperies().setProperty("gov.nist.javax.sip.REENTRANT_LISTENER", "true"); lbConfig.getSipStackConfiguration().getSipStackProperies().setProperty("gov.nist.javax.sip.CANCEL_CLIENT_TRANSACTION_CHECKED", "false"); lbConfig.getSipConfiguration().getExternalLegConfiguration().setTcpPort(5060); lbConfig.getSipConfiguration().getInternalLegConfiguration().setTcpPort(5065); lbConfig.getSipConfiguration().setIsSend5xxResponse(true); lbConfig.getSipConfiguration().setIsSend5xxResponseReasonHeader("Destination not available"); lbConfig.getSipConfiguration().setIsSend5xxResponseSatusCode(503); balancer.start(lbConfig); server = new AppServer("node" ,4060 , "127.0.0.1", 2000, 5060, 5060, "0", ListeningPoint.TCP, true); server.start(); Thread.sleep(5000); } @After public void tearDown() throws Exception { shootist.stop(); server.stop(); balancer.stop(); } @Test public void testSend503Response() throws Exception { setUp(); boolean was503 = false; shootist.sendInitialInvite(); Thread.sleep(1000); for(Response res : shootist.responses) { if(res.getStatusCode() != Response.SERVICE_UNAVAILABLE) was503 = true; } assertTrue(was503); } }