-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
NewRequiredPropertyTests.java
70 lines (55 loc) · 1.79 KB
/
NewRequiredPropertyTests.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package io.eventdriven.eventsversioning.simplemappings;
import io.eventdriven.eventsversioning.serialization.Serializer;
import io.eventdriven.eventsversioning.v1.ShoppingCartEvent;
import org.junit.jupiter.api.Test;
import java.util.UUID;
import static org.junit.jupiter.api.Assertions.*;
public class NewRequiredPropertyTests {
public enum ShoppingCartStatus {
Pending,
Opened,
Confirmed,
Cancelled
}
public record ShoppingCartOpened(
UUID shoppingCartId,
UUID clientId,
// Adding new not required property as nullable
ShoppingCartStatus status
) {
public ShoppingCartOpened {
if (status == null) {
status = ShoppingCartStatus.Opened;
}
}
}
@Test
public void Should_BeForwardCompatible()
{
// Given
var oldEvent = new ShoppingCartEvent.ShoppingCartOpened(UUID.randomUUID(), UUID.randomUUID());
var bytes = Serializer.serialize(oldEvent);
// When
var result = Serializer.deserialize(ShoppingCartOpened.class, bytes);
// Then
assertTrue(result.isPresent());
var event = result.get();
assertEquals(oldEvent.shoppingCartId(), event.shoppingCartId());
assertEquals(oldEvent.clientId(), event.clientId());
assertEquals(ShoppingCartStatus.Opened, event.status());
}
@Test
public void Should_BeBackwardCompatible()
{
// Given
var event = new ShoppingCartOpened(UUID.randomUUID(), UUID.randomUUID(), ShoppingCartStatus.Pending);
var bytes = Serializer.serialize(event);
// When
var result = Serializer.deserialize(ShoppingCartEvent.ShoppingCartOpened.class, bytes);
// Then
assertTrue(result.isPresent());
var oldEvent = result.get();
assertEquals(event.shoppingCartId(), oldEvent.shoppingCartId());
assertEquals(event.clientId(), oldEvent.clientId());
}
}