use of com.datastax.oss.driver.internal.core.channel.DriverChannel in project java-driver by datastax.
the class ControlConnectionEventsTest method should_register_for_all_events_if_topology_requested.
@Test
public void should_register_for_all_events_if_topology_requested() {
// Given
DriverChannel channel1 = newMockDriverChannel(1);
ArgumentCaptor<DriverChannelOptions> optionsCaptor = ArgumentCaptor.forClass(DriverChannelOptions.class);
when(channelFactory.connect(eq(node1), optionsCaptor.capture())).thenReturn(CompletableFuture.completedFuture(channel1));
// When
controlConnection.init(true, false, false);
// Then
await().untilAsserted(() -> {
DriverChannelOptions channelOptions = optionsCaptor.getValue();
assertThat(channelOptions.eventTypes).containsExactly(ProtocolConstants.EventType.SCHEMA_CHANGE, ProtocolConstants.EventType.STATUS_CHANGE, ProtocolConstants.EventType.TOPOLOGY_CHANGE);
assertThat(channelOptions.eventCallback).isEqualTo(controlConnection);
});
}
use of com.datastax.oss.driver.internal.core.channel.DriverChannel in project java-driver by datastax.
the class ControlConnectionEventsTest method should_process_topology_change_events.
@Test
public void should_process_topology_change_events() {
// Given
DriverChannel channel1 = newMockDriverChannel(1);
ArgumentCaptor<DriverChannelOptions> optionsCaptor = ArgumentCaptor.forClass(DriverChannelOptions.class);
when(channelFactory.connect(eq(node1), optionsCaptor.capture())).thenReturn(CompletableFuture.completedFuture(channel1));
controlConnection.init(true, false, false);
await().until(() -> optionsCaptor.getValue() != null);
EventCallback callback = optionsCaptor.getValue().eventCallback;
TopologyChangeEvent event = new TopologyChangeEvent(ProtocolConstants.TopologyChangeType.NEW_NODE, ADDRESS1);
// When
callback.onEvent(event);
// Then
verify(eventBus).fire(TopologyEvent.suggestAdded(ADDRESS1));
}
use of com.datastax.oss.driver.internal.core.channel.DriverChannel in project java-driver by datastax.
the class ControlConnectionTest method should_reconnect_if_channel_goes_down.
@Test
public void should_reconnect_if_channel_goes_down() throws Exception {
// Given
when(reconnectionSchedule.nextDelay()).thenReturn(Duration.ofNanos(1));
DriverChannel channel1 = newMockDriverChannel(1);
DriverChannel channel2 = newMockDriverChannel(2);
MockChannelFactoryHelper factoryHelper = MockChannelFactoryHelper.builder(channelFactory).success(node1, channel1).failure(node1, "mock failure").success(node2, channel2).build();
CompletionStage<Void> initFuture = controlConnection.init(false, false, false);
factoryHelper.waitForCall(node1);
assertThatStage(initFuture).isSuccess(v -> assertThat(controlConnection.channel()).isEqualTo(channel1));
verify(eventBus, VERIFY_TIMEOUT).fire(ChannelEvent.channelOpened(node1));
// When
channel1.close();
// Then
// a reconnection was started
verify(reconnectionSchedule, VERIFY_TIMEOUT).nextDelay();
factoryHelper.waitForCall(node1);
factoryHelper.waitForCall(node2);
await().untilAsserted(() -> assertThat(controlConnection.channel()).isEqualTo(channel2));
verify(eventBus, VERIFY_TIMEOUT).fire(ChannelEvent.channelClosed(node1));
verify(eventBus, VERIFY_TIMEOUT).fire(ChannelEvent.channelOpened(node2));
verify(metadataManager, VERIFY_TIMEOUT).refreshNodes();
verify(loadBalancingPolicyWrapper, VERIFY_TIMEOUT).init();
factoryHelper.verifyNoMoreCalls();
}
use of com.datastax.oss.driver.internal.core.channel.DriverChannel in project java-driver by datastax.
the class ControlConnectionTest method should_close_channel_when_closing.
@Test
public void should_close_channel_when_closing() {
// Given
DriverChannel channel1 = newMockDriverChannel(1);
MockChannelFactoryHelper factoryHelper = MockChannelFactoryHelper.builder(channelFactory).success(node1, channel1).build();
CompletionStage<Void> initFuture = controlConnection.init(false, false, false);
factoryHelper.waitForCall(node1);
assertThatStage(initFuture).isSuccess();
// When
CompletionStage<Void> closeFuture = controlConnection.forceCloseAsync();
// Then
assertThatStage(closeFuture).isSuccess();
verify(channel1, VERIFY_TIMEOUT).forceClose();
factoryHelper.verifyNoMoreCalls();
}
use of com.datastax.oss.driver.internal.core.channel.DriverChannel in project java-driver by datastax.
the class ControlConnectionTest method should_reconnect_if_event_during_reconnection_attempt.
private void should_reconnect_if_event_during_reconnection_attempt(NodeStateEvent event) {
// Given
when(reconnectionSchedule.nextDelay()).thenReturn(Duration.ofNanos(1));
DriverChannel channel1 = newMockDriverChannel(1);
DriverChannel channel2 = newMockDriverChannel(2);
CompletableFuture<DriverChannel> channel2Future = new CompletableFuture<>();
DriverChannel channel3 = newMockDriverChannel(3);
MockChannelFactoryHelper factoryHelper = MockChannelFactoryHelper.builder(channelFactory).success(node1, channel1).pending(node2, channel2Future).success(node1, channel3).build();
CompletionStage<Void> initFuture = controlConnection.init(false, false, false);
factoryHelper.waitForCall(node1);
assertThatStage(initFuture).isSuccess();
await().untilAsserted(() -> assertThat(controlConnection.channel()).isEqualTo(channel1));
verify(eventBus, VERIFY_TIMEOUT).fire(ChannelEvent.channelOpened(node1));
mockQueryPlan(node2, node1);
// channel1 goes down, triggering a reconnection
channel1.close();
verify(eventBus, VERIFY_TIMEOUT).fire(ChannelEvent.channelClosed(node1));
verify(reconnectionSchedule, VERIFY_TIMEOUT).nextDelay();
// the reconnection to node2 is in progress
factoryHelper.waitForCall(node2);
// When
// node2 goes into the new state
eventBus.fire(event);
// the reconnection to node2 completes
channel2Future.complete(channel2);
// Then
// The channel should get closed and we should try the next node
verify(channel2, VERIFY_TIMEOUT).forceClose();
factoryHelper.waitForCall(node1);
}
Aggregations