-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUserServiceIntegrationTest.java
154 lines (118 loc) · 4.19 KB
/
UserServiceIntegrationTest.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
package com.example.dnatask.user;
import com.example.dnatask.common.StoreLastEventPublisher;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import java.time.Clock;
import java.time.Instant;
import java.time.ZoneId;
import java.util.List;
import static org.assertj.core.api.Assertions.assertThat;
@SpringBootTest
class UserServiceIntegrationTest {
@Autowired
private UserRepository userRepository;
private Clock fixedClock;
private StoreLastEventPublisher eventPublisher;
private UserService userService;
@BeforeEach
void setUp() {
fixedClock = Clock.fixed(Instant.parse("2022-03-13T09:08:28.000Z"), ZoneId.systemDefault());
eventPublisher = new StoreLastEventPublisher();
userService = new UserConfig()
.userService(userRepository, eventPublisher, fixedClock);
}
@AfterEach
void tearDown() {
userRepository.deleteAll();
}
@Test
void shouldCreateUser() {
// given
String name = "DNA";
// when
long createdUserId = userService.create(new CreateUserRequest(name));
// then
userWasCreated(createdUserId, name);
userCreatedEventWasPublished(name, createdUserId);
}
@Test
void shouldFindAllUsers() {
// given
aExistingUserWith("DNA");
aExistingUserWith("Avenga");
// when
List<User> result = userService.findAll();
assertThat(result)
.hasSize(2);
// TODO flaky tests - list order (e.g. AssertObject pattern)
assertThat(result.get(0).getName())
.isEqualTo("DNA");
assertThat(result.get(1).getName())
.isEqualTo("Avenga");
}
@Test
void shouldUpdateUser() {
// given
long existingUserId = aExistingUser();
String newName = "New Name";
// when
userService.update(existingUserId, newName);
// then
userWasUpdated(existingUserId, newName);
userNameUpdatedEventWasPublished(existingUserId, newName);
}
@Test
void shouldDeleteUser() {
// given
long existingUserId = aExistingUser();
// when
userService.delete(existingUserId);
// then
userWasDeleted();
userDeletedEventWasPublished(existingUserId);
}
private void userWasCreated(long createdUserId, String name) {
assertThat(userService.findAll())
.hasSize(1);
User createdUser = userRepository.findById(createdUserId).orElseThrow();
assertThat(createdUser.getName())
.isEqualTo(name);
}
private void userCreatedEventWasPublished(String name, long createdUserId) {
assertThat(eventPublisher.getLastEvent())
.isExactlyInstanceOf(UserCreated.class);
UserCreated userCreated = (UserCreated) eventPublisher.getLastEvent();
assertThat(userCreated.getAggregateId())
.isEqualTo(createdUserId);
assertThat(userCreated.name())
.isEqualTo(name);
assertThat(userCreated.getWhen())
.isEqualTo(Instant.now(fixedClock));
}
private void userWasUpdated(long userId, String newName) {
User updatedUser = userRepository.findById(userId).orElseThrow();
assertThat(updatedUser.getName())
.isEqualTo(newName);
}
private void userNameUpdatedEventWasPublished(long userId, String newName) {
assertThat(eventPublisher.getLastEvent())
.isEqualTo(new UserNameUpdated(userId, newName, Instant.now(fixedClock)));
}
private void userWasDeleted() {
assertThat(userService.findAll())
.isEmpty();
}
private void userDeletedEventWasPublished(long userId) {
assertThat(eventPublisher.getLastEvent())
.isEqualTo(new UserDeleted(userId, Instant.now(fixedClock)));
}
private long aExistingUser() {
return aExistingUserWith("DNA");
}
private long aExistingUserWith(String name) {
return userRepository.save(new User(name)).getId();
}
}