Search in sources :

Example 6 with SubscriptionCursor

use of org.zalando.nakadi.view.SubscriptionCursor in project nakadi by zalando.

the class HilaAT method whenPatchThenCursorsAreInitializedToDefault.

@Test(timeout = 15000)
public void whenPatchThenCursorsAreInitializedToDefault() throws Exception {
    final EventType et = createEventType();
    publishEvents(et.getName(), 10, i -> "{\"foo\": \"bar\"}");
    Thread.sleep(1000L);
    final Subscription s = createSubscription(RandomSubscriptionBuilder.builder().withEventType(et.getName()).withStartFrom(END).buildSubscriptionBase());
    given().body(MAPPER.writeValueAsString(new ItemsWrapper<>(Collections.emptyList()))).contentType(JSON).patch("/subscriptions/{id}/cursors", s.getId()).then().statusCode(SC_NO_CONTENT);
    final ItemsWrapper<SubscriptionCursor> subscriptionCursors = MAPPER.readValue(given().get("/subscriptions/{id}/cursors", s.getId()).getBody().asString(), new TypeReference<ItemsWrapper<SubscriptionCursor>>() {
    });
    final List<EventTypePartitionView> etStats = MAPPER.readValue(given().get("/event-types/{et}/partitions", et.getName()).getBody().asString(), new TypeReference<List<EventTypePartitionView>>() {
    });
    Assert.assertEquals(subscriptionCursors.getItems().size(), etStats.size());
    subscriptionCursors.getItems().forEach(sCursor -> {
        final boolean offsetSame = etStats.stream().anyMatch(ss -> ss.getPartitionId().equals(sCursor.getPartition()) && ss.getNewestAvailableOffset().equals(sCursor.getOffset()));
        // Check that after patch cursors are the same as END
        Assert.assertTrue(offsetSame);
    });
}
Also used : SubscriptionCursor(org.zalando.nakadi.view.SubscriptionCursor) NakadiTestUtils.createEventType(org.zalando.nakadi.webservice.utils.NakadiTestUtils.createEventType) EventType(org.zalando.nakadi.domain.EventType) EventTypePartitionView(org.zalando.nakadi.view.EventTypePartitionView) List(java.util.List) ImmutableList(com.google.common.collect.ImmutableList) Subscription(org.zalando.nakadi.domain.Subscription) NakadiTestUtils.createSubscription(org.zalando.nakadi.webservice.utils.NakadiTestUtils.createSubscription) ItemsWrapper(org.zalando.nakadi.domain.ItemsWrapper) Test(org.junit.Test)

Example 7 with SubscriptionCursor

use of org.zalando.nakadi.view.SubscriptionCursor in project nakadi by zalando.

the class HilaAT method whenCommitVeryFirstEventThenOk.

@Test(timeout = 5000)
public void whenCommitVeryFirstEventThenOk() throws Exception {
    publishEvent(eventType.getName(), "{\"foo\":\"bar\"}");
    // create session, read from subscription and wait for events to be sent
    final TestStreamingClient client = TestStreamingClient.create(subscription.getId()).start();
    waitFor(() -> assertThat(client.getBatches(), not(empty())));
    // commit and check that status is 204
    final int commitResult = commitCursors(subscription.getId(), ImmutableList.of(new SubscriptionCursor("0", "0", eventType.getName(), "token")), client.getSessionId());
    assertThat(commitResult, equalTo(SC_NO_CONTENT));
}
Also used : SubscriptionCursor(org.zalando.nakadi.view.SubscriptionCursor) TestStreamingClient(org.zalando.nakadi.webservice.utils.TestStreamingClient) Test(org.junit.Test)

Example 8 with SubscriptionCursor

use of org.zalando.nakadi.view.SubscriptionCursor in project nakadi by zalando.

the class HilaAT method whenResetCursorsThenStreamFromResetCursorOffset.

@Test(timeout = 15000)
public void whenResetCursorsThenStreamFromResetCursorOffset() throws Exception {
    publishEvents(eventType.getName(), 20, i -> "{\"foo\":\"bar\"}");
    final TestStreamingClient client1 = TestStreamingClient.create(subscription.getId()).start();
    waitFor(() -> assertThat(client1.getBatches(), hasSize(10)));
    int statusCode = commitCursors(subscription.getId(), Collections.singletonList(client1.getBatches().get(9).getCursor()), client1.getSessionId());
    Assert.assertEquals(SC_NO_CONTENT, statusCode);
    final List<SubscriptionCursor> resetCursors = Collections.singletonList(client1.getBatches().get(4).getCursor());
    statusCode = given().body(MAPPER.writeValueAsString(new ItemsWrapper<>(resetCursors))).contentType(JSON).patch("/subscriptions/{id}/cursors", subscription.getId()).getStatusCode();
    Assert.assertEquals(SC_NO_CONTENT, statusCode);
    Assert.assertFalse(client1.isRunning());
    Assert.assertTrue(client1.getBatches().stream().anyMatch(streamBatch -> streamBatch.getMetadata() != null && streamBatch.getMetadata().getDebug().equals("Resetting subscription cursors")));
    final TestStreamingClient client2 = TestStreamingClient.create(subscription.getId()).start();
    waitFor(() -> assertThat(client2.getBatches(), hasSize(10)));
    Assert.assertEquals("001-0001-000000000000000005", client2.getBatches().get(0).getCursor().getOffset());
}
Also used : SubscriptionCursor(org.zalando.nakadi.view.SubscriptionCursor) CoreMatchers.is(org.hamcrest.CoreMatchers.is) NakadiTestUtils.createEventType(org.zalando.nakadi.webservice.utils.NakadiTestUtils.createEventType) NakadiTestUtils.getNumberOfAssignedStreams(org.zalando.nakadi.webservice.utils.NakadiTestUtils.getNumberOfAssignedStreams) NakadiTestUtils.publishEvent(org.zalando.nakadi.webservice.utils.NakadiTestUtils.publishEvent) RandomSubscriptionBuilder(org.zalando.nakadi.utils.RandomSubscriptionBuilder) Matchers.not(org.hamcrest.Matchers.not) HttpStatus(org.apache.http.HttpStatus) RestAssured.given(com.jayway.restassured.RestAssured.given) Subscription(org.zalando.nakadi.domain.Subscription) BaseAT(org.zalando.nakadi.webservice.BaseAT) AUTO(org.zalando.nakadi.domain.SubscriptionEventTypeStats.Partition.AssignmentType.AUTO) StringContains(org.hamcrest.core.StringContains) StreamBatch.singleEventBatch(org.zalando.nakadi.webservice.hila.StreamBatch.singleEventBatch) SubscriptionCursorWithoutToken(org.zalando.nakadi.view.SubscriptionCursorWithoutToken) TypeReference(com.fasterxml.jackson.core.type.TypeReference) ImmutableMap(com.google.common.collect.ImmutableMap) JSON(com.jayway.restassured.http.ContentType.JSON) BlacklistService(org.zalando.nakadi.service.BlacklistService) Collectors(java.util.stream.Collectors) NakadiTestUtils.commitCursors(org.zalando.nakadi.webservice.utils.NakadiTestUtils.commitCursors) List(java.util.List) EventTypePartitionView(org.zalando.nakadi.view.EventTypePartitionView) SubscriptionBase(org.zalando.nakadi.domain.SubscriptionBase) Optional(java.util.Optional) SubscriptionCursor(org.zalando.nakadi.view.SubscriptionCursor) SettingsControllerAT(org.zalando.nakadi.webservice.SettingsControllerAT) SC_NO_CONTENT(org.apache.http.HttpStatus.SC_NO_CONTENT) BEGIN(org.zalando.nakadi.domain.SubscriptionBase.InitialPosition.BEGIN) SubscriptionEventTypeStats(org.zalando.nakadi.domain.SubscriptionEventTypeStats) CoreMatchers.equalTo(org.hamcrest.CoreMatchers.equalTo) JsonTestHelper(org.zalando.nakadi.utils.JsonTestHelper) Cursor(org.zalando.nakadi.view.Cursor) MessageFormat.format(java.text.MessageFormat.format) Lists(com.google.common.collect.Lists) JsonConfig(org.zalando.nakadi.config.JsonConfig) ImmutableList(com.google.common.collect.ImmutableList) NakadiTestUtils(org.zalando.nakadi.webservice.utils.NakadiTestUtils) Matchers.hasSize(org.hamcrest.Matchers.hasSize) MatcherAssert.assertThat(org.hamcrest.MatcherAssert.assertThat) END(org.zalando.nakadi.domain.SubscriptionBase.InitialPosition.END) NakadiTestUtils.createSubscription(org.zalando.nakadi.webservice.utils.NakadiTestUtils.createSubscription) Before(org.junit.Before) ItemsWrapper(org.zalando.nakadi.domain.ItemsWrapper) SESSION_ID_UNKNOWN(org.zalando.nakadi.webservice.utils.TestStreamingClient.SESSION_ID_UNKNOWN) EventType(org.zalando.nakadi.domain.EventType) Matchers.empty(org.hamcrest.Matchers.empty) RestAssured.when(com.jayway.restassured.RestAssured.when) ObjectMapper(com.fasterxml.jackson.databind.ObjectMapper) Matchers(org.hamcrest.Matchers) TestUtils.waitFor(org.zalando.nakadi.utils.TestUtils.waitFor) Test(org.junit.Test) IOException(java.io.IOException) DIRECT(org.zalando.nakadi.domain.SubscriptionEventTypeStats.Partition.AssignmentType.DIRECT) TimeUnit(java.util.concurrent.TimeUnit) SC_OK(org.apache.http.HttpStatus.SC_OK) MatcherIgnoringToken.equalToBatchIgnoringToken(org.zalando.nakadi.webservice.hila.StreamBatch.MatcherIgnoringToken.equalToBatchIgnoringToken) NakadiTestUtils.publishEvents(org.zalando.nakadi.webservice.utils.NakadiTestUtils.publishEvents) TestStreamingClient(org.zalando.nakadi.webservice.utils.TestStreamingClient) SC_CONFLICT(org.apache.http.HttpStatus.SC_CONFLICT) Assert(org.junit.Assert) Collections(java.util.Collections) TestStreamingClient(org.zalando.nakadi.webservice.utils.TestStreamingClient) ItemsWrapper(org.zalando.nakadi.domain.ItemsWrapper) Test(org.junit.Test)

Example 9 with SubscriptionCursor

use of org.zalando.nakadi.view.SubscriptionCursor in project nakadi by zalando.

the class HilaAT method whenWindowSizeIsSetItIsConsidered.

@Test(timeout = 15000)
public void whenWindowSizeIsSetItIsConsidered() throws Exception {
    publishEvents(eventType.getName(), 15, i -> "{\"foo\":\"bar\"}");
    final TestStreamingClient client = TestStreamingClient.create(URL, subscription.getId(), "max_uncommitted_events=5").start();
    waitFor(() -> assertThat(client.getBatches(), hasSize(5)));
    SubscriptionCursor cursorToCommit = client.getBatches().get(4).getCursor();
    commitCursors(subscription.getId(), ImmutableList.of(cursorToCommit), client.getSessionId());
    waitFor(() -> assertThat(client.getBatches(), hasSize(10)));
    cursorToCommit = client.getBatches().get(6).getCursor();
    commitCursors(subscription.getId(), ImmutableList.of(cursorToCommit), client.getSessionId());
    waitFor(() -> assertThat(client.getBatches(), hasSize(12)));
}
Also used : SubscriptionCursor(org.zalando.nakadi.view.SubscriptionCursor) TestStreamingClient(org.zalando.nakadi.webservice.utils.TestStreamingClient) Test(org.junit.Test)

Example 10 with SubscriptionCursor

use of org.zalando.nakadi.view.SubscriptionCursor in project nakadi by zalando.

the class HilaAT method whenStreamTimeoutReachedSessionIsClosed.

@Test(timeout = 15000)
public void whenStreamTimeoutReachedSessionIsClosed() throws Exception {
    publishEvent(eventType.getName(), "{\"foo\":\"bar\"}");
    final TestStreamingClient client = TestStreamingClient.create(URL, subscription.getId(), "stream_timeout=3").start();
    waitFor(() -> assertThat(client.getBatches(), hasSize(1)));
    // to check that stream_timeout works we need to commit everything we consumed, in other case
    // Nakadi will first wait till commit_timeout exceeds
    final SubscriptionCursor lastBatchCursor = client.getBatches().get(client.getBatches().size() - 1).getCursor();
    commitCursors(subscription.getId(), ImmutableList.of(lastBatchCursor), client.getSessionId());
    waitFor(() -> assertThat(client.isRunning(), is(false)), 5000);
}
Also used : SubscriptionCursor(org.zalando.nakadi.view.SubscriptionCursor) TestStreamingClient(org.zalando.nakadi.webservice.utils.TestStreamingClient) Test(org.junit.Test)

Aggregations

SubscriptionCursor (org.zalando.nakadi.view.SubscriptionCursor)16 Test (org.junit.Test)14 TestStreamingClient (org.zalando.nakadi.webservice.utils.TestStreamingClient)10 Subscription (org.zalando.nakadi.domain.Subscription)6 NakadiTestUtils.createSubscription (org.zalando.nakadi.webservice.utils.NakadiTestUtils.createSubscription)6 IOException (java.io.IOException)5 List (java.util.List)5 EventType (org.zalando.nakadi.domain.EventType)5 ImmutableList (com.google.common.collect.ImmutableList)4 Collectors (java.util.stream.Collectors)3 MatcherAssert.assertThat (org.hamcrest.MatcherAssert.assertThat)3 Matchers.hasSize (org.hamcrest.Matchers.hasSize)3 Before (org.junit.Before)3 ItemsWrapper (org.zalando.nakadi.domain.ItemsWrapper)3 ObjectMapper (com.fasterxml.jackson.databind.ObjectMapper)2 ImmutableMap (com.google.common.collect.ImmutableMap)2 JSON (com.jayway.restassured.http.ContentType.JSON)2 Optional (java.util.Optional)2 CoreMatchers.equalTo (org.hamcrest.CoreMatchers.equalTo)2 SubscriptionBase (org.zalando.nakadi.domain.SubscriptionBase)2