Introduce the MemberDepartedEvent class extending MembershipEvent to signal when a peer member departs from the distributed system (cluster).

This commit is contained in:
John Blum
2020-04-27 14:27:45 -07:00
parent afb853646f
commit 0f1dbc175d
2 changed files with 150 additions and 0 deletions

View File

@@ -0,0 +1,69 @@
/*
* Copyright 2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package org.springframework.geode.distributed.event.support;
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verifyNoInteractions;
import org.junit.Test;
import org.apache.geode.distributed.internal.DistributionManager;
import org.springframework.geode.distributed.event.MembershipEvent;
/**
* Unit Tests for {@link MemberDepartedEvent}.
*
* @author John Blum
* @see org.junit.Test
* @see org.mockito.Mockito
* @see org.springframework.geode.distributed.event.MembershipEvent
* @see org.springframework.geode.distributed.event.support.MemberDepartedEvent
* @since 1.3.0
*/
public class MemberDepartedEventUnitTests {
@Test
public void constructMemberDepartedEvent() {
DistributionManager mockDistributionManager = mock(DistributionManager.class);
MemberDepartedEvent event = new MemberDepartedEvent(mockDistributionManager);
assertThat(event).isNotNull();
assertThat(event.getDistributionManager()).isEqualTo(mockDistributionManager);
assertThat(event.isCrashed()).isFalse();
assertThat(event.getType()).isEqualTo(MembershipEvent.Type.MEMBER_DEPARTED);
verifyNoInteractions(mockDistributionManager);
}
@Test
public void setAndGetCrashed() {
DistributionManager mockDistributionManager = mock(DistributionManager.class);
MemberDepartedEvent event = new MemberDepartedEvent(mockDistributionManager);
assertThat(event).isNotNull();
assertThat(event.isCrashed()).isFalse();
assertThat(event.crashed(true)).isEqualTo(event);
assertThat(event.isCrashed()).isTrue();
assertThat(event.crashed(false)).isEqualTo(event);
assertThat(event.isCrashed()).isFalse();
}
}