use of com.hedera.mirror.grpc.domain.TopicMessageFilter in project hedera-mirror-node by hashgraph.
the class TopicMessageServiceTest method noMessages.
@Test
void noMessages() {
TopicMessageFilter filter = TopicMessageFilter.builder().topicId(topicId).build();
topicMessageService.subscribeTopic(filter).as(StepVerifier::create).thenAwait(Duration.ofMillis(100)).expectNextCount(0L).thenCancel().verify(Duration.ofMillis(500));
}
use of com.hedera.mirror.grpc.domain.TopicMessageFilter in project hedera-mirror-node by hashgraph.
the class TopicMessageServiceTest method missingMessagesFromListenerAllRetrieved.
@Test
void missingMessagesFromListenerAllRetrieved() {
TopicMessageFilter filter = TopicMessageFilter.builder().startTime(Instant.EPOCH).topicId(topicId).build();
missingMessagesFromListenerTest(filter, Flux.just(topicMessage(5), topicMessage(6), topicMessage(7)));
topicMessageService.subscribeTopic(filter).map(TopicMessage::getSequenceNumber).as(StepVerifier::create).expectNext(1L, 2L, 3L, 4L, 5L, 6L, 7L, 8L, 9L, 10L).thenCancel().verify(Duration.ofMillis(700));
}
use of com.hedera.mirror.grpc.domain.TopicMessageFilter in project hedera-mirror-node by hashgraph.
the class TopicMessageServiceTest method historicalMessagesWithEndTimeEquals.
@Test
void historicalMessagesWithEndTimeEquals() {
TopicMessage topicMessage1 = domainBuilder.topicMessage().block();
TopicMessage topicMessage2 = domainBuilder.topicMessage().block();
TopicMessage topicMessage3 = domainBuilder.topicMessage().block();
TopicMessage topicMessage4 = domainBuilder.topicMessage().block();
TopicMessageFilter filter = TopicMessageFilter.builder().startTime(Instant.EPOCH).endTime(topicMessage4.getConsensusTimestampInstant()).topicId(topicId).build();
topicMessageService.subscribeTopic(filter).as(StepVerifier::create).expectNext(topicMessage1, topicMessage2, topicMessage3).expectComplete().verify(Duration.ofMillis(500));
}
use of com.hedera.mirror.grpc.domain.TopicMessageFilter in project hedera-mirror-node by hashgraph.
the class TopicMessageServiceTest method topicNotFoundWithCheckTopicExistsFalse.
@Test
void topicNotFoundWithCheckTopicExistsFalse() {
grpcProperties.setCheckTopicExists(false);
TopicMessageFilter filter = TopicMessageFilter.builder().topicId(EntityId.of(999L, EntityType.TOPIC)).build();
topicMessageService.subscribeTopic(filter).as(StepVerifier::create).expectSubscription().expectNoEvent(Duration.ofMillis(500)).thenCancel().verify(Duration.ofMillis(100));
grpcProperties.setCheckTopicExists(true);
}
use of com.hedera.mirror.grpc.domain.TopicMessageFilter in project hedera-mirror-node by hashgraph.
the class TopicMessageServiceTest method incomingMessagesWithLimit.
@Test
void incomingMessagesWithLimit() {
TopicMessageFilter filter = TopicMessageFilter.builder().limit(2).startTime(Instant.EPOCH).topicId(topicId).build();
topicMessageService.subscribeTopic(filter).map(TopicMessage::getSequenceNumber).as(StepVerifier::create).thenAwait(Duration.ofMillis(100)).then(() -> domainBuilder.topicMessages(3, future).blockLast()).expectNext(1L, 2L).expectComplete().verify(Duration.ofMillis(500));
}
Aggregations