Search in sources :

Example 16 with LeaderLatch

use of org.apache.curator.framework.recipes.leader.LeaderLatch in project incubator-atlas by apache.

the class ActiveInstanceElectorServiceTest method testElectionIsRejoinedWhenStateUpdateFails.

@Test
public void testElectionIsRejoinedWhenStateUpdateFails() throws Exception {
    when(configuration.containsKey(HAConfiguration.ATLAS_SERVER_HA_ENABLED_KEY)).thenReturn(true);
    when(configuration.getBoolean(HAConfiguration.ATLAS_SERVER_HA_ENABLED_KEY)).thenReturn(true);
    when(configuration.getStringArray(HAConfiguration.ATLAS_SERVER_IDS)).thenReturn(new String[] { "id1" });
    when(configuration.getString(HAConfiguration.ATLAS_SERVER_ADDRESS_PREFIX + "id1")).thenReturn("127.0.0.1:21000");
    when(configuration.getString(HAConfiguration.ATLAS_SERVER_HA_ZK_ROOT_KEY, HAConfiguration.ATLAS_SERVER_ZK_ROOT_DEFAULT)).thenReturn(HAConfiguration.ATLAS_SERVER_ZK_ROOT_DEFAULT);
    LeaderLatch leaderLatch = mock(LeaderLatch.class);
    when(curatorFactory.leaderLatchInstance("id1", HAConfiguration.ATLAS_SERVER_ZK_ROOT_DEFAULT)).thenReturn(leaderLatch);
    doThrow(new AtlasBaseException()).when(activeInstanceState).update("id1");
    ActiveInstanceElectorService activeInstanceElectorService = new ActiveInstanceElectorService(configuration, new HashSet<ActiveStateChangeHandler>(), curatorFactory, activeInstanceState, serviceState);
    activeInstanceElectorService.start();
    activeInstanceElectorService.isLeader();
    InOrder inOrder = inOrder(leaderLatch, curatorFactory);
    inOrder.verify(leaderLatch).close();
    inOrder.verify(curatorFactory).leaderLatchInstance("id1", HAConfiguration.ATLAS_SERVER_ZK_ROOT_DEFAULT);
    inOrder.verify(leaderLatch).addListener(activeInstanceElectorService);
    inOrder.verify(leaderLatch).start();
}
Also used : AtlasBaseException(org.apache.atlas.exception.AtlasBaseException) InOrder(org.mockito.InOrder) LeaderLatch(org.apache.curator.framework.recipes.leader.LeaderLatch) ActiveStateChangeHandler(org.apache.atlas.listener.ActiveStateChangeHandler) Test(org.testng.annotations.Test)

Aggregations

LeaderLatch (org.apache.curator.framework.recipes.leader.LeaderLatch)16 ActiveStateChangeHandler (org.apache.atlas.listener.ActiveStateChangeHandler)10 Test (org.testng.annotations.Test)10 HashSet (java.util.HashSet)3 AtlasBaseException (org.apache.atlas.exception.AtlasBaseException)3 LeaderLatchListener (org.apache.curator.framework.recipes.leader.LeaderLatchListener)2 InOrder (org.mockito.InOrder)2 JobSystemException (com.dangdang.ddframe.job.exception.JobSystemException)1 IOException (java.io.IOException)1 AtomicReference (java.util.concurrent.atomic.AtomicReference)1 CuratorFramework (org.apache.curator.framework.CuratorFramework)1 Participant (org.apache.curator.framework.recipes.leader.Participant)1