use of org.neo4j.causalclustering.load_balancing.LoadBalancingProcessor in project neo4j by neo4j.
the class ServerShufflingProcessorTest method shouldShuffleServers.
@Test
public void shouldShuffleServers() throws Exception {
// given
LoadBalancingProcessor delegate = mock(LoadBalancingPlugin.class);
List<Endpoint> routers = asList(Endpoint.route(new AdvertisedSocketAddress("route", 1)), Endpoint.route(new AdvertisedSocketAddress("route", 2)));
List<Endpoint> writers = asList(Endpoint.write(new AdvertisedSocketAddress("write", 3)), Endpoint.write(new AdvertisedSocketAddress("write", 4)), Endpoint.write(new AdvertisedSocketAddress("write", 5)));
List<Endpoint> readers = asList(Endpoint.read(new AdvertisedSocketAddress("read", 6)), Endpoint.read(new AdvertisedSocketAddress("read", 7)), Endpoint.read(new AdvertisedSocketAddress("read", 8)), Endpoint.read(new AdvertisedSocketAddress("read", 9)));
long ttl = 1000;
LoadBalancingProcessor.Result result = new LoadBalancingResult(new ArrayList<>(routers), new ArrayList<>(writers), new ArrayList<>(readers), ttl);
when(delegate.run(any())).thenReturn(result);
ServerShufflingProcessor plugin = new ServerShufflingProcessor(delegate);
boolean completeShuffle = false;
for (// we try many times to make false negatives extremely unlikely
int i = 0; // we try many times to make false negatives extremely unlikely
i < 1000; // we try many times to make false negatives extremely unlikely
i++) {
// when
LoadBalancingProcessor.Result shuffledResult = plugin.run(Collections.emptyMap());
// then: should still contain the same endpoints
assertThat(shuffledResult.routeEndpoints(), containsInAnyOrder(routers.toArray()));
assertThat(shuffledResult.writeEndpoints(), containsInAnyOrder(writers.toArray()));
assertThat(shuffledResult.readEndpoints(), containsInAnyOrder(readers.toArray()));
assertEquals(shuffledResult.getTimeToLiveMillis(), ttl);
// but possibly in a different order
boolean readersEqual = shuffledResult.readEndpoints().equals(readers);
boolean writersEqual = shuffledResult.writeEndpoints().equals(writers);
boolean routersEqual = shuffledResult.routeEndpoints().equals(routers);
if (!readersEqual && !writersEqual && !routersEqual) {
// we don't stop until it is completely different
completeShuffle = true;
break;
}
}
assertTrue(completeShuffle);
}
Aggregations