Search in sources :

Example 11 with AppServer

use of org.mobicents.tools.sip.balancer.AppServer in project load-balancer by RestComm.

the class InviteTransactionFailover method testAllNodesDead.

@Test
public void testAllNodesDead() throws Exception {
    for (AppServer as : servers) {
        // as.sendCleanShutdownToBalancers();
        as.sendHeartbeat = false;
    }
    Thread.sleep(1000);
    shootist.callerSendsBye = true;
    shootist.sendInitialInvite();
    Thread.sleep(5000);
    assertEquals(500, shootist.responses.get(0).getStatusCode());
    assertNotNull(shootist.responses.get(0).getHeader("Via"));
}
Also used : AppServer(org.mobicents.tools.sip.balancer.AppServer) Test(org.junit.Test)

Example 12 with AppServer

use of org.mobicents.tools.sip.balancer.AppServer in project load-balancer by RestComm.

the class InviteTransactionFailover method testASactingAsUAC.

@Test
public void testASactingAsUAC() throws Exception {
    EventListener failureEventListener = new EventListener() {

        @Override
        public void uasAfterResponse(int statusCode, AppServer source) {
        }

        @Override
        public void uasAfterRequestReceived(String method, AppServer source) {
        // TODO Auto-generated method stub
        }

        @Override
        public void uacAfterRequestSent(String method, AppServer source) {
        // TODO Auto-generated method stub
        }

        @Override
        public void uacAfterResponse(int statusCode, AppServer source) {
            if (statusCode == 180) {
                ringingAppServer = source;
            // source.sendCleanShutdownToBalancers();
            } else if (statusCode == 200) {
                okAppServer = source;
            }
        }
    };
    for (AppServer as : servers) as.setEventListener(failureEventListener);
    shootist.callerSendsBye = true;
    String fromName = "sender";
    String fromHost = "sip-servlets.com";
    SipURI fromAddress = servers[0].protocolObjects.addressFactory.createSipURI(fromName, fromHost);
    String toUser = "replaces";
    String toHost = "sip-servlets.com";
    SipURI toAddress = servers[0].protocolObjects.addressFactory.createSipURI(toUser, toHost);
    SipURI ruri = servers[0].protocolObjects.addressFactory.createSipURI("usera", "127.0.0.1:5033");
    ruri.setLrParam();
    SipURI route = servers[0].protocolObjects.addressFactory.createSipURI("lbint", "127.0.0.1:5065");
    route.setParameter("node_host", "127.0.0.1");
    route.setParameter("node_port", "4060");
    route.setLrParam();
    shootist.start();
    // servers[0].sipListener.sendSipRequest("INVITE", fromAddress, toAddress, null, null, false);
    servers[0].sipListener.sendSipRequest("INVITE", fromAddress, toAddress, null, route, false, null, null, ruri);
    Thread.sleep(16000);
    assertTrue(shootist.inviteRequest.getHeader(RecordRouteHeader.NAME).toString().contains("node_host"));
    assertNotSame(ringingAppServer, okAppServer);
    assertNotNull(ringingAppServer);
    assertNotNull(okAppServer);
}
Also used : AppServer(org.mobicents.tools.sip.balancer.AppServer) EventListener(org.mobicents.tools.sip.balancer.EventListener) SipURI(javax.sip.address.SipURI) Test(org.junit.Test)

Example 13 with AppServer

use of org.mobicents.tools.sip.balancer.AppServer in project load-balancer by RestComm.

the class NoInternalAddressTest method testAllNodesDead.

@Test
public void testAllNodesDead() throws Exception {
    for (AppServer as : servers) {
        // as.sendCleanShutdownToBalancers();
        as.stop();
    // as.sendHeartbeat=false;
    }
    Thread.sleep(1000);
    shootist.callerSendsBye = true;
    shootist.sendInitialInvite();
    Thread.sleep(5000);
    assertEquals(500, shootist.responses.get(0).getStatusCode());
}
Also used : AppServer(org.mobicents.tools.sip.balancer.AppServer) Test(org.junit.Test)

Example 14 with AppServer

use of org.mobicents.tools.sip.balancer.AppServer in project load-balancer by RestComm.

the class NoInternalAddressTest method testServerActingAsUASKillOneNodeFailoverResponse.

// private void _BAD_testInviteTx() throws Exception {
// ProtocolObjects senderProtocolObjects = new ProtocolObjects("forward-udp-sender",
// "gov.nist", "udp", false, null);
// TestSipListener sender = new TestSipListener(5080, 5060, senderProtocolObjects, true);
// SipProvider senderProvider = sender.createProvider();
// 
// 
// senderProvider.addSipListener(sender);
// 
// senderProtocolObjects.start();
// 
// String fromName = "forward-tcp-sender";
// String fromSipAddress = "sip-servlets.com";
// SipURI fromAddress = senderProtocolObjects.addressFactory.createSipURI(
// fromName, fromSipAddress);
// 
// String toSipAddress = "sip-servlets.com";
// String toUser = "forward-receiver";
// SipURI toAddress = senderProtocolObjects.addressFactory.createSipURI(
// toUser, toSipAddress);
// 
// sender.sendSipRequest("INVITE", fromAddress, toAddress, null, null, false);
// Thread.sleep(20000);
// }
@Test
public void testServerActingAsUASKillOneNodeFailoverResponse() throws Exception {
    EventListener failureEventListener = new EventListener() {

        boolean once = false;

        @Override
        public synchronized void uasAfterResponse(int statusCode, final AppServer source) {
            if (!once) {
                once = true;
                new Thread() {

                    public void run() {
                        source.stop();
                    // source.sendCleanShutdownToBalancers();
                    }
                }.start();
            }
        }

        @Override
        public void uasAfterRequestReceived(String method, AppServer source) {
        // TODO Auto-generated method stub
        }

        @Override
        public void uacAfterRequestSent(String method, AppServer source) {
        // TODO Auto-generated method stub
        }

        @Override
        public void uacAfterResponse(int statusCode, AppServer source) {
        // TODO Auto-generated method stub
        }
    };
    for (AppServer as : servers) as.setEventListener(failureEventListener);
    shootist.callerSendsBye = true;
    shootist.sendInitialInvite();
    Thread.sleep(10000);
    if (balancer.getNodes().size() != 1)
        fail("Expected one dead node");
}
Also used : AppServer(org.mobicents.tools.sip.balancer.AppServer) EventListener(org.mobicents.tools.sip.balancer.EventListener) Test(org.junit.Test)

Example 15 with AppServer

use of org.mobicents.tools.sip.balancer.AppServer in project load-balancer by RestComm.

the class NoInternalAddressTest method testASactingAsUAC.

@Test
public void testASactingAsUAC() throws Exception {
    EventListener failureEventListener = new EventListener() {

        @Override
        public void uasAfterResponse(int statusCode, AppServer source) {
        }

        @Override
        public void uasAfterRequestReceived(String method, AppServer source) {
        // TODO Auto-generated method stub
        }

        @Override
        public void uacAfterRequestSent(String method, AppServer source) {
        // TODO Auto-generated method stub
        }

        @Override
        public void uacAfterResponse(int statusCode, AppServer source) {
            if (statusCode == 180) {
                ringingAppServer = source;
                // source.sendCleanShutdownToBalancers();
                source.stop();
            } else if (statusCode == 200) {
                okAppServer = source;
            }
        }
    };
    for (AppServer as : servers) as.setEventListener(failureEventListener);
    shootist.callerSendsBye = true;
    String fromName = "sender";
    String fromHost = "sip-servlets.com";
    SipURI fromAddress = servers[0].protocolObjects.addressFactory.createSipURI(fromName, fromHost);
    String toUser = "replaces";
    String toHost = "sip-servlets.com";
    SipURI toAddress = servers[0].protocolObjects.addressFactory.createSipURI(toUser, toHost);
    SipURI ruri = servers[0].protocolObjects.addressFactory.createSipURI("usera", "127.0.0.1:5033");
    ruri.setLrParam();
    SipURI route = servers[0].protocolObjects.addressFactory.createSipURI("lbaddress_noInternalPort", "127.0.0.1:5060");
    route.setParameter("node_host", "127.0.0.1");
    route.setParameter("node_port", "4060");
    route.setLrParam();
    shootist.start();
    // servers[0].sipListener.sendSipRequest("INVITE", fromAddress, toAddress, null, null, false);
    servers[0].sipListener.sendSipRequest("INVITE", fromAddress, toAddress, null, route, false, null, null, ruri);
    Thread.sleep(16000);
    assertTrue(shootist.inviteRequest.getHeader(RecordRouteHeader.NAME).toString().contains("node_host"));
    assertNotSame(ringingAppServer, okAppServer);
    assertNotNull(ringingAppServer);
    assertNotNull(okAppServer);
}
Also used : AppServer(org.mobicents.tools.sip.balancer.AppServer) EventListener(org.mobicents.tools.sip.balancer.EventListener) SipURI(javax.sip.address.SipURI) Test(org.junit.Test)

Aggregations

AppServer (org.mobicents.tools.sip.balancer.AppServer)72 Test (org.junit.Test)41 EventListener (org.mobicents.tools.sip.balancer.EventListener)37 ListeningPoint (javax.sip.ListeningPoint)27 Before (org.junit.Before)26 BalancerRunner (org.mobicents.tools.sip.balancer.BalancerRunner)26 Shootist (org.mobicents.tools.sip.balancer.operation.Shootist)26 LoadBalancerConfiguration (org.mobicents.tools.configuration.LoadBalancerConfiguration)24 SipURI (javax.sip.address.SipURI)16 SinglePointTest (org.mobicents.tools.sip.balancer.SinglePointTest)11 WorstCaseUdpTestAffinityAlgorithm (org.mobicents.tools.sip.balancer.WorstCaseUdpTestAffinityAlgorithm)7 UDPPacketForwarder (org.mobicents.tools.sip.balancer.UDPPacketForwarder)5 UserBasedAlgorithm (org.mobicents.tools.sip.balancer.UserBasedAlgorithm)5 ArrayList (java.util.ArrayList)2 SipException (javax.sip.SipException)2 Response (javax.sip.message.Response)2 CongestionControlMessageValve (org.mobicents.ext.javax.sip.congestion.CongestionControlMessageValve)1 Node (org.mobicents.tools.heartbeat.api.Node)1 ActiveStandbyAlgorithm (org.mobicents.tools.sip.balancer.ActiveStandbyAlgorithm)1 HeaderConsistentHashBalancerAlgorithm (org.mobicents.tools.sip.balancer.HeaderConsistentHashBalancerAlgorithm)1