Search in sources :

Example 6 with Shootist

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

the class FromURIBasedAlgorithmTest method testCongestionControl.

@Test
public void testCongestionControl() throws Exception {
    // balancer.balancerContext.sipHeaderAffinityKeyExclusionPattern = Pattern.compile(".*sip.nexmo.com");
    for (int i = 0; i < shootists.length; i++) {
        String fromUri = "Anonymous";
        // if(i % 2 == 0) {
        // fromUri = "Restricted";
        // }
        shootists[i].sendInitial(fromUri, "sip.nexmo.com", "INVITE", null, new String[] { "User-Agent" }, new String[] { "sipx" });
        Thread.sleep(6000);
        assertFalse(servers[0].getTestSipListener().isInviteReceived());
        assertFalse(servers[1].getTestSipListener().isInviteReceived());
    // shootists[i].sendBye();
    // Thread.sleep(2000);
    }
    assertEquals(servers[0].getTestSipListener().isInviteReceived(), servers[1].getTestSipListener().isInviteReceived());
    assertEquals(servers[0].getTestSipListener().isAckReceived(), servers[1].getTestSipListener().isAckReceived());
    assertEquals(servers[0].getTestSipListener().getByeReceived(), servers[1].getTestSipListener().getByeReceived());
    for (Shootist s : shootists) {
        boolean wasRinging = false;
        boolean wasOk = false;
        for (Response res : s.responses) {
            if (res.getStatusCode() != Response.RINGING)
                wasRinging = true;
            if (res.getStatusCode() != Response.OK)
                wasOk = true;
        }
        assertFalse(wasOk);
        assertFalse(wasRinging);
    }
}
Also used : Response(javax.sip.message.Response) Shootist(org.mobicents.tools.sip.balancer.operation.Shootist) ListeningPoint(javax.sip.ListeningPoint) Test(org.junit.Test)

Example 7 with Shootist

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

the class FromURIBasedAlgorithmTest method testInviteFromToSameNode.

@Test
public void testInviteFromToSameNode() throws Exception {
    for (int i = 0; i < shootists.length; i++) {
        shootists[i].sendInitialInvite();
        Thread.sleep(6000);
        shootists[i].sendBye();
        Thread.sleep(2000);
    }
    assertNotEquals(servers[0].getTestSipListener().isInviteReceived(), servers[1].getTestSipListener().isInviteReceived());
    assertNotEquals(servers[0].getTestSipListener().isAckReceived(), servers[1].getTestSipListener().isAckReceived());
    assertNotEquals(servers[0].getTestSipListener().getByeReceived(), servers[1].getTestSipListener().getByeReceived());
    for (Shootist s : shootists) {
        boolean wasRinging = false;
        boolean wasOk = false;
        for (Response res : s.responses) {
            if (res.getStatusCode() != Response.RINGING)
                wasRinging = true;
            if (res.getStatusCode() != Response.OK)
                wasOk = true;
        }
        assertTrue(wasOk);
        assertTrue(wasRinging);
    }
}
Also used : Response(javax.sip.message.Response) Shootist(org.mobicents.tools.sip.balancer.operation.Shootist) ListeningPoint(javax.sip.ListeningPoint) Test(org.junit.Test)

Example 8 with Shootist

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

the class SprayingLoadBalancersWithNoInternalPortTest method setUp.

@Before
public void setUp() {
    shootist = new Shootist();
    String externalIpLBString = "";
    String internalIpLBString = "";
    for (int q = 0; q < numBalancers; q++) {
        balancers[q] = prepBalancer(q);
        externalIpLBString += "127.0.0.1:" + 5 + q + "60,";
        internalIpLBString += "127.0.0.1:" + 5 + q + "65,";
    }
    for (int q = 0; q < servers.length; q++) {
        servers[q] = new AppServer("node" + q, 4060 + q, "127.0.0.1", 2000, 5060, 5065, "0", ListeningPoint.UDP, 2222 + q);
        servers[q].setBalancers(loadbalancers);
        servers[q].start();
    }
    externalIpLoadBalancer = new UDPPacketForwarder(9988, externalIpLBString, "127.0.0.1");
    externalIpLoadBalancer.start();
    internalIpLoadBalancer = new UDPPacketForwarder(9922, internalIpLBString, "127.0.0.1");
    internalIpLoadBalancer.start();
    Helper.sleep(5000);
}
Also used : AppServer(org.mobicents.tools.sip.balancer.AppServer) UDPPacketForwarder(org.mobicents.tools.sip.balancer.UDPPacketForwarder) Shootist(org.mobicents.tools.sip.balancer.operation.Shootist) ListeningPoint(javax.sip.ListeningPoint) Before(org.junit.Before)

Example 9 with Shootist

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

the class TerminaitingSslTest method setUp.

@Before
public void setUp() throws Exception {
    shootist = new Shootist(ListeningPoint.TLS, 5061);
    balancer = new BalancerRunner();
    LoadBalancerConfiguration lbConfig = new LoadBalancerConfiguration();
    lbConfig.getSipConfiguration().getInternalLegConfiguration().setTcpPort(5065);
    lbConfig.getSipConfiguration().getInternalLegConfiguration().setTlsPort(5066);
    lbConfig.getSipConfiguration().getExternalLegConfiguration().setTlsPort(5061);
    lbConfig.getSipConfiguration().getAlgorithmConfiguration().setAlgorithmClass(WorstCaseUdpTestAffinityAlgorithm.class.getName());
    lbConfig.getSipConfiguration().getAlgorithmConfiguration().setEarlyDialogWorstCase(true);
    lbConfig.getSipStackConfiguration().getSipStackProperies().setProperty("javax.net.ssl.keyStore", SinglePointTest.class.getClassLoader().getResource("keystore").getFile());
    lbConfig.getSipStackConfiguration().getSipStackProperies().setProperty("javax.net.ssl.trustStorePassword", "123456");
    lbConfig.getSipStackConfiguration().getSipStackProperies().setProperty("javax.net.ssl.trustStore", SinglePointTest.class.getClassLoader().getResource("keystore").getFile());
    lbConfig.getSipStackConfiguration().getSipStackProperies().setProperty("javax.net.ssl.keyStorePassword", "123456");
    lbConfig.getSslConfiguration().setTerminateTLSTraffic(true);
    balancer.start(lbConfig);
    for (int q = 0; q < servers.length; q++) {
        servers[q] = new AppServer("node" + q, 4060 + q, "127.0.0.1", 2000, 5060, 5065, "0", ListeningPoint.TCP, 2222 + q);
        servers[q].start();
        Thread.sleep(2000);
    }
    Thread.sleep(5000);
}
Also used : AppServer(org.mobicents.tools.sip.balancer.AppServer) SinglePointTest(org.mobicents.tools.sip.balancer.SinglePointTest) BalancerRunner(org.mobicents.tools.sip.balancer.BalancerRunner) LoadBalancerConfiguration(org.mobicents.tools.configuration.LoadBalancerConfiguration) Shootist(org.mobicents.tools.sip.balancer.operation.Shootist) WorstCaseUdpTestAffinityAlgorithm(org.mobicents.tools.sip.balancer.WorstCaseUdpTestAffinityAlgorithm) ListeningPoint(javax.sip.ListeningPoint) Before(org.junit.Before)

Example 10 with Shootist

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

the class WorstCaseAffinityTest method setUp.

@Before
public void setUp() throws Exception {
    shootist = new Shootist();
    balancer = new BalancerRunner();
    LoadBalancerConfiguration lbConfig = new LoadBalancerConfiguration();
    lbConfig.getSipConfiguration().getInternalLegConfiguration().setUdpPort(5065);
    lbConfig.getSipConfiguration().getAlgorithmConfiguration().setAlgorithmClass(WorstCaseUdpTestAffinityAlgorithm.class.getName());
    balancer.start(lbConfig);
    for (int q = 0; q < servers.length; q++) {
        servers[q] = new AppServer("node" + q, 4060 + q, "127.0.0.1", 2000, 5060, 5065, "0", ListeningPoint.UDP, 2222 + q);
        servers[q].start();
    }
    Thread.sleep(5000);
}
Also used : AppServer(org.mobicents.tools.sip.balancer.AppServer) BalancerRunner(org.mobicents.tools.sip.balancer.BalancerRunner) LoadBalancerConfiguration(org.mobicents.tools.configuration.LoadBalancerConfiguration) Shootist(org.mobicents.tools.sip.balancer.operation.Shootist) WorstCaseUdpTestAffinityAlgorithm(org.mobicents.tools.sip.balancer.WorstCaseUdpTestAffinityAlgorithm) ListeningPoint(javax.sip.ListeningPoint) Before(org.junit.Before)

Aggregations

Shootist (org.mobicents.tools.sip.balancer.operation.Shootist)38 ListeningPoint (javax.sip.ListeningPoint)28 LoadBalancerConfiguration (org.mobicents.tools.configuration.LoadBalancerConfiguration)28 Before (org.junit.Before)27 AppServer (org.mobicents.tools.sip.balancer.AppServer)26 BalancerRunner (org.mobicents.tools.sip.balancer.BalancerRunner)25 WorstCaseUdpTestAffinityAlgorithm (org.mobicents.tools.sip.balancer.WorstCaseUdpTestAffinityAlgorithm)8 Response (javax.sip.message.Response)5 Test (org.junit.Test)5 UDPPacketForwarder (org.mobicents.tools.sip.balancer.UDPPacketForwarder)5 UserBasedAlgorithm (org.mobicents.tools.sip.balancer.UserBasedAlgorithm)5 SinglePointTest (org.mobicents.tools.sip.balancer.SinglePointTest)4 ArrayList (java.util.ArrayList)2 HeartbeatConfig (org.mobicents.tools.heartbeat.api.HeartbeatConfig)2 HeartbeatConfigRmi (org.mobicents.tools.heartbeat.rmi.HeartbeatConfigRmi)2 CongestionControlMessageValve (org.mobicents.ext.javax.sip.congestion.CongestionControlMessageValve)1 ActiveStandbyAlgorithm (org.mobicents.tools.sip.balancer.ActiveStandbyAlgorithm)1 AppServerWithRmi (org.mobicents.tools.sip.balancer.AppServerWithRmi)1 BlackholeAppServer (org.mobicents.tools.sip.balancer.BlackholeAppServer)1 HeaderConsistentHashBalancerAlgorithm (org.mobicents.tools.sip.balancer.HeaderConsistentHashBalancerAlgorithm)1