Search in sources :

Example 1 with EventTypeTestBuilder

use of org.zalando.nakadi.utils.EventTypeTestBuilder in project nakadi by zalando.

the class EventTypeControllerTest method whenPUTWithInvalidEnrichmentStrategyThen422.

@Test
public void whenPUTWithInvalidEnrichmentStrategyThen422() throws Exception {
    final EventTypeTestBuilder builder = EventTypeTestBuilder.builder();
    builder.enrichmentStrategies(Lists.newArrayList(EnrichmentStrategyDescriptor.METADATA_ENRICHMENT));
    final EventType original = builder.build();
    builder.enrichmentStrategies(new ArrayList<>());
    final EventType update = builder.build();
    doReturn(original).when(eventTypeRepository).findByName(any());
    putEventType(update, update.getName()).andExpect(status().isUnprocessableEntity()).andExpect(content().contentType("application/problem+json"));
}
Also used : TestUtils.buildDefaultEventType(org.zalando.nakadi.utils.TestUtils.buildDefaultEventType) EventType(org.zalando.nakadi.domain.EventType) EventTypeTestBuilder(org.zalando.nakadi.utils.EventTypeTestBuilder) Test(org.junit.Test)

Example 2 with EventTypeTestBuilder

use of org.zalando.nakadi.utils.EventTypeTestBuilder in project nakadi by zalando.

the class CategoryChangeConstraintTest method cannotChangeCategory.

@Test
public void cannotChangeCategory() throws Exception {
    final EventTypeTestBuilder builder = new EventTypeTestBuilder();
    final EventType oldET = builder.category(EventCategory.BUSINESS).build();
    final EventType newET = builder.category(EventCategory.DATA).build();
    final SchemaEvolutionConstraint constraint = new CategoryChangeConstraint();
    assertThat(constraint.validate(oldET, newET), isPresent());
}
Also used : EventType(org.zalando.nakadi.domain.EventType) EventTypeTestBuilder(org.zalando.nakadi.utils.EventTypeTestBuilder) Test(org.junit.Test)

Example 3 with EventTypeTestBuilder

use of org.zalando.nakadi.utils.EventTypeTestBuilder in project nakadi by zalando.

the class SchemaEvolutionServiceTest method compatibilityModeMigrationAllowedChanges.

@Test
public void compatibilityModeMigrationAllowedChanges() throws Exception {
    final EventTypeTestBuilder builder = EventTypeTestBuilder.builder().compatibilityMode(CompatibilityMode.FORWARD);
    final EventType oldEventType = builder.build();
    final EventType newEventType = builder.compatibilityMode(CompatibilityMode.COMPATIBLE).build();
    Mockito.doReturn(Optional.empty()).when(evolutionConstraint).validate(oldEventType, newEventType);
    final List<SchemaChange.Type> allowedChanges = Lists.newArrayList(DESCRIPTION_CHANGED, TITLE_CHANGED, PROPERTIES_ADDED, REQUIRED_ARRAY_EXTENDED, ADDITIONAL_PROPERTIES_CHANGED, ADDITIONAL_ITEMS_CHANGED);
    final List<SchemaChange.Type> notAllowedChanges = Lists.newArrayList(ID_CHANGED, SCHEMA_REMOVED, TYPE_CHANGED, NUMBER_OF_ITEMS_CHANGED, PROPERTY_REMOVED, DEPENDENCY_ARRAY_CHANGED, DEPENDENCY_SCHEMA_CHANGED, COMPOSITION_METHOD_CHANGED, ATTRIBUTE_VALUE_CHANGED, ENUM_ARRAY_CHANGED, SUB_SCHEMA_CHANGED, DEPENDENCY_SCHEMA_REMOVED, REQUIRED_ARRAY_CHANGED);
    allowedChanges.forEach(changeType -> {
        Mockito.doReturn(MINOR).when(forwardChanges).get(any());
        Mockito.doReturn(Lists.newArrayList(new SchemaChange(changeType, "#/"))).when(schemaDiff).collectChanges(any(), any());
        final EventType eventType;
        try {
            eventType = service.evolve(oldEventType, newEventType);
            assertThat(eventType.getSchema().getVersion(), is(equalTo(new Version("1.1.0"))));
        } catch (final InvalidEventTypeException e) {
            fail();
        }
    });
    notAllowedChanges.forEach(changeType -> {
        Mockito.doReturn(Lists.newArrayList(new SchemaChange(changeType, "#/"))).when(schemaDiff).collectChanges(any(), any());
        try {
            service.evolve(oldEventType, newEventType);
            fail();
        } catch (final InvalidEventTypeException e) {
        }
    });
}
Also used : EventType(org.zalando.nakadi.domain.EventType) InvalidEventTypeException(org.zalando.nakadi.exceptions.InvalidEventTypeException) EventType(org.zalando.nakadi.domain.EventType) Version(org.zalando.nakadi.domain.Version) SchemaChange(org.zalando.nakadi.domain.SchemaChange) EventTypeTestBuilder(org.zalando.nakadi.utils.EventTypeTestBuilder) Test(org.junit.Test)

Example 4 with EventTypeTestBuilder

use of org.zalando.nakadi.utils.EventTypeTestBuilder in project nakadi by zalando.

the class SchemaEvolutionServiceTest method whenIncompatibleModeAllowMajorChanges.

@Test
public void whenIncompatibleModeAllowMajorChanges() throws Exception {
    final EventTypeTestBuilder builder = EventTypeTestBuilder.builder().compatibilityMode(CompatibilityMode.NONE);
    final EventType oldEventType = builder.build();
    final EventType newEventType = builder.build();
    Mockito.doReturn(Optional.empty()).when(evolutionConstraint).validate(oldEventType, newEventType);
    Mockito.doReturn(MAJOR).when(forwardChanges).get(any());
    Mockito.doReturn(Lists.newArrayList(new SchemaChange(TITLE_CHANGED, "#/"))).when(schemaDiff).collectChanges(any(), any());
    final EventType eventType = service.evolve(oldEventType, newEventType);
    assertThat(eventType.getSchema().getVersion(), is(equalTo(new Version("2.0.0"))));
    verify(evolutionConstraint).validate(oldEventType, newEventType);
}
Also used : EventType(org.zalando.nakadi.domain.EventType) Version(org.zalando.nakadi.domain.Version) SchemaChange(org.zalando.nakadi.domain.SchemaChange) EventTypeTestBuilder(org.zalando.nakadi.utils.EventTypeTestBuilder) Test(org.junit.Test)

Example 5 with EventTypeTestBuilder

use of org.zalando.nakadi.utils.EventTypeTestBuilder in project nakadi by zalando.

the class SchemaEvolutionServiceTest method whenPatchChangesBumpVersion.

@Test
public void whenPatchChangesBumpVersion() throws Exception {
    final EventTypeTestBuilder builder = EventTypeTestBuilder.builder();
    final EventType oldEventType = builder.build();
    final EventType newEventType = builder.build();
    Mockito.doReturn(Optional.empty()).when(evolutionConstraint).validate(oldEventType, newEventType);
    Mockito.doReturn(PATCH).when(compatibleChanges).get(any());
    Mockito.doReturn(Lists.newArrayList(new SchemaChange(TITLE_CHANGED, "#/"))).when(schemaDiff).collectChanges(any(), any());
    final EventType eventType = service.evolve(oldEventType, newEventType);
    assertThat(eventType.getSchema().getVersion(), is(equalTo(new Version("1.0.1"))));
    verify(evolutionConstraint).validate(oldEventType, newEventType);
}
Also used : EventType(org.zalando.nakadi.domain.EventType) Version(org.zalando.nakadi.domain.Version) SchemaChange(org.zalando.nakadi.domain.SchemaChange) EventTypeTestBuilder(org.zalando.nakadi.utils.EventTypeTestBuilder) Test(org.junit.Test)

Aggregations

Test (org.junit.Test)14 EventType (org.zalando.nakadi.domain.EventType)14 EventTypeTestBuilder (org.zalando.nakadi.utils.EventTypeTestBuilder)14 Version (org.zalando.nakadi.domain.Version)6 SchemaChange (org.zalando.nakadi.domain.SchemaChange)5 InvalidEventTypeException (org.zalando.nakadi.exceptions.InvalidEventTypeException)1 TestUtils.buildDefaultEventType (org.zalando.nakadi.utils.TestUtils.buildDefaultEventType)1 SchemaEvolutionIncompatibility (org.zalando.nakadi.validation.schema.SchemaEvolutionIncompatibility)1