use of org.neo4j.causalclustering.core.consensus.outcome.Outcome in project neo4j by neo4j.
the class LeaderTest method oldHeartbeatResponseShouldNotPreventStepdown.
@Test
public void oldHeartbeatResponseShouldNotPreventStepdown() throws Exception {
// given
RaftState state = raftState().votingMembers(asSet(myself, member1, member2)).build();
Leader leader = new Leader();
Outcome outcome = leader.handle(new RaftMessages.HeartbeatResponse(member1), state, log());
state.update(outcome);
outcome = leader.handle(new RaftMessages.Timeout.Election(myself), state, log());
state.update(outcome);
assertThat(outcome.getRole(), is(LEADER));
// when
outcome = leader.handle(new RaftMessages.Timeout.Election(myself), state, log());
// then
assertThat(outcome.getRole(), is(FOLLOWER));
}
use of org.neo4j.causalclustering.core.consensus.outcome.Outcome in project neo4j by neo4j.
the class CandidateTest method shouldStayAsCandidateOnReceivingDeniedVoteResponseWithCurrentTerm.
@Test
public void shouldStayAsCandidateOnReceivingDeniedVoteResponseWithCurrentTerm() throws Exception {
// given
RaftState state = newState();
// when
Outcome outcome = CANDIDATE.handler.handle(voteResponse().term(state.term()).from(member1).deny().build(), state, log());
// then
assertEquals(CANDIDATE, outcome.getRole());
}
use of org.neo4j.causalclustering.core.consensus.outcome.Outcome in project neo4j by neo4j.
the class FollowerTest method shouldAcknowledgeHeartbeats.
@Test
public void shouldAcknowledgeHeartbeats() throws Exception {
// given
RaftState state = raftState().myself(myself).term(2).build();
Follower follower = new Follower();
Outcome outcome = follower.handle(new RaftMessages.Heartbeat(state.leader(), 2, 2, 2), state, log());
// then
Collection<RaftMessages.Directed> outgoingMessages = outcome.getOutgoingMessages();
assertTrue(outgoingMessages.contains(new RaftMessages.Directed(state.leader(), new RaftMessages.HeartbeatResponse(myself))));
}
use of org.neo4j.causalclustering.core.consensus.outcome.Outcome in project neo4j by neo4j.
the class FollowerTest method followerShouldTransitToCandidateAndInstigateAnElectionAfterTimeout.
@Test
public void followerShouldTransitToCandidateAndInstigateAnElectionAfterTimeout() throws Exception {
// given
RaftState state = raftState().myself(myself).votingMembers(asSet(myself, member1, member2)).build();
// when
Outcome outcome = new Follower().handle(new Election(myself), state, log());
state.update(outcome);
// then
assertEquals(CANDIDATE, outcome.getRole());
assertNotNull(messageFor(outcome, member1));
assertNotNull(messageFor(outcome, member2));
}
use of org.neo4j.causalclustering.core.consensus.outcome.Outcome in project neo4j by neo4j.
the class FollowerTest method followerLearningAboutHigherCommitCausesValuesTobeAppliedToItsLog.
// TODO move this to outcome tests
@Test
public void followerLearningAboutHigherCommitCausesValuesTobeAppliedToItsLog() throws Exception {
// given
RaftLog entryLog = new InMemoryRaftLog();
entryLog.append(new RaftLogEntry(0, new RaftTestGroup(0)));
RaftState state = raftState().myself(myself).entryLog(entryLog).build();
Follower follower = new Follower();
appendSomeEntriesToLog(state, follower, 3, 0, 1);
// when receiving AppEntries with high leader commit (4)
Outcome outcome = follower.handle(new AppendEntries.Request(myself, 0, 3, 0, new RaftLogEntry[] { new RaftLogEntry(0, ContentGenerator.content()) }, 4), state, log());
state.update(outcome);
// then
assertEquals(4, state.commitIndex());
}
Aggregations