use of org.zalando.nakadi.repository.db.EventTypeCache in project nakadi by zalando.
the class EventStreamControllerTest method setup.
@Before
public void setup() throws NakadiException, UnknownHostException, InvalidCursorException {
EVENT_TYPE.setName(TEST_EVENT_TYPE_NAME);
timeline = buildTimelineWithTopic(TEST_TOPIC);
eventTypeRepository = mock(EventTypeRepository.class);
topicRepositoryMock = mock(TopicRepository.class);
adminService = mock(AdminService.class);
authorizationService = mock(AuthorizationService.class);
when(topicRepositoryMock.topicExists(TEST_TOPIC)).thenReturn(true);
eventStreamFactoryMock = mock(EventStreamFactory.class);
eventTypeCache = mock(EventTypeCache.class);
requestMock = mock(HttpServletRequest.class);
when(requestMock.getRemoteAddr()).thenReturn(InetAddress.getLoopbackAddress().getHostAddress());
when(requestMock.getRemotePort()).thenReturn(12345);
responseMock = mock(HttpServletResponse.class);
metricRegistry = new MetricRegistry();
streamMetrics = new MetricRegistry();
final EventConsumer.LowLevelConsumer eventConsumerMock = mock(EventConsumer.LowLevelConsumer.class);
when(topicRepositoryMock.createEventConsumer(eq(KAFKA_CLIENT_ID), any())).thenReturn(eventConsumerMock);
final ClosedConnectionsCrutch crutch = mock(ClosedConnectionsCrutch.class);
when(crutch.listenForConnectionClose(requestMock)).thenReturn(new AtomicBoolean(true));
blacklistService = Mockito.mock(BlacklistService.class);
Mockito.when(blacklistService.isConsumptionBlocked(any(), any())).thenReturn(false);
final ConsumerLimitingService consumerLimitingService = Mockito.mock(ConsumerLimitingService.class);
when(consumerLimitingService.acquireConnectionSlots(any(), any(), any())).thenReturn(ImmutableList.of());
featureToggleService = mock(FeatureToggleService.class);
timelineService = mock(TimelineService.class);
when(timelineService.getTopicRepository((Timeline) any())).thenReturn(topicRepositoryMock);
when(timelineService.getTopicRepository((EventTypeBase) any())).thenReturn(topicRepositoryMock);
when(timelineService.getTopicRepository((Storage) any())).thenReturn(topicRepositoryMock);
when(timelineService.getActiveTimelinesOrdered(any())).thenReturn(Collections.singletonList(timeline));
when(timelineService.getAllTimelinesOrdered(any())).thenReturn(Collections.singletonList(timeline));
authorizationValidator = mock(AuthorizationValidator.class);
eventTypeChangeListener = mock(EventTypeChangeListener.class);
when(eventTypeChangeListener.registerListener(any(), any())).thenReturn(mock(Closeable.class));
controller = new EventStreamController(eventTypeRepository, timelineService, TestUtils.OBJECT_MAPPER, eventStreamFactoryMock, metricRegistry, streamMetrics, crutch, blacklistService, consumerLimitingService, featureToggleService, new CursorConverterImpl(eventTypeCache, timelineService), authorizationValidator, eventTypeChangeListener, null);
settings = mock(SecuritySettings.class);
when(settings.getAuthMode()).thenReturn(OFF);
when(settings.getAdminClientId()).thenReturn("nakadi");
mockMvc = standaloneSetup(controller).setMessageConverters(new StringHttpMessageConverter(), TestUtils.JACKSON_2_HTTP_MESSAGE_CONVERTER).setCustomArgumentResolvers(new ClientResolver(settings, featureToggleService)).build();
}
use of org.zalando.nakadi.repository.db.EventTypeCache in project nakadi by zalando.
the class NakadiCursorComparatorTest method setupMocks.
@BeforeClass
public static void setupMocks() throws InternalNakadiException, NoSuchEventTypeException {
final EventTypeCache etCache = mock(EventTypeCache.class);
TIMELINE_1.setLatestPosition(new Timeline.KafkaStoragePosition(Collections.singletonList(1L)));
TIMELINE_2.setLatestPosition(new Timeline.KafkaStoragePosition(Collections.singletonList(-1L)));
TIMELINE_3.setLatestPosition(new Timeline.KafkaStoragePosition(Collections.singletonList(2L)));
when(etCache.getTimelinesOrdered(ET)).thenReturn(Arrays.asList(TIMELINE_1, TIMELINE_2, TIMELINE_3, TIMELINE_4));
comparator = new NakadiCursorComparator(etCache);
}
Aggregations