use of io.zeebe.client.event.impl.TopicSubscriptionBuilderImpl in project zeebe by zeebe-io.
the class PartitionedTopicSubscriptionTest method shouldCloseSuccessfulSubscriptionIfAnotherSubscriptionCannotBeOpened.
@Test
public void shouldCloseSuccessfulSubscriptionIfAnotherSubscriptionCannotBeOpened() throws Exception {
// given
final int subscriberKey1 = 456;
broker1.stubTopicSubscriptionApi(subscriberKey1);
final ResponseController responseController = broker2.onExecuteCommandRequest(EventType.SUBSCRIBER_EVENT, "SUBSCRIBE").respondWithError().errorCode(ErrorCode.REQUEST_PROCESSING_FAILURE).errorData("foo").registerControlled();
// assuming that subscription to broker 1 is successful
final TopicSubscriptionBuilderImpl builder = (TopicSubscriptionBuilderImpl) client.topics().newSubscription(TOPIC).handler(new RecordingEventHandler()).name("hohoho");
final Future<TopicSubscriberGroup> groupFuture = builder.buildSubscriberGroup();
waitUntil(() -> getOpenSubscriptionRequests(broker1).size() == 1);
// when
// triggering the error response and continuing
responseController.unblockNextResponse();
// then
waitUntil(() -> groupFuture.isDone());
assertFailed(groupFuture);
final List<ControlMessageRequest> closeRequestsBroker1 = getCloseSubscriptionRequests(broker1);
assertThat(closeRequestsBroker1).hasSize(1);
assertThat(closeRequestsBroker1.get(0).getData().get("subscriberKey")).isEqualTo(subscriberKey1);
}
use of io.zeebe.client.event.impl.TopicSubscriptionBuilderImpl in project zeebe by zeebe-io.
the class TopicSubscriptionTest method shouldCloseSubscriptionWhileOpeningSubscriber.
@Test
public void shouldCloseSubscriptionWhileOpeningSubscriber() {
// given
final int subscriberKey = 123;
broker.stubTopicSubscriptionApi(0L);
final ResponseController responseController = broker.onExecuteCommandRequest(EventType.SUBSCRIBER_EVENT, "SUBSCRIBE").respondWith().key(subscriberKey).event().allOf((r) -> r.getCommand()).put("state", "SUBSCRIBED").done().registerControlled();
final TopicSubscriptionBuilderImpl builder = (TopicSubscriptionBuilderImpl) client.topics().newSubscription(clientRule.getDefaultTopicName()).handler(DO_NOTHING).name("foo");
final Future<TopicSubscriberGroup> future = builder.buildSubscriberGroup();
waitUntil(() -> broker.getReceivedCommandRequests().stream().filter(r -> r.eventType() == EventType.SUBSCRIBER_EVENT && "SUBSCRIBE".equals(r.getCommand().get("state"))).count() == 1);
final Thread closingThread = new Thread(client::close);
closingThread.start();
final SubscriptionManager subscriptionManager = ((ZeebeClientImpl) client).getSubscriptionManager();
waitUntil(() -> subscriptionManager.isClosing());
// when
responseController.unblockNextResponse();
// then
waitUntil(() -> future.isDone());
assertThat(future).isDone();
final Optional<ControlMessageRequest> closeRequest = broker.getReceivedControlMessageRequests().stream().filter(c -> c.messageType() == ControlMessageType.REMOVE_TOPIC_SUBSCRIPTION).findFirst();
assertThat(closeRequest).isPresent();
final ControlMessageRequest request = closeRequest.get();
assertThat(request.getData()).containsEntry("subscriberKey", subscriberKey);
}
Aggregations