-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathPaymentServiceTest.java
79 lines (60 loc) · 2.33 KB
/
PaymentServiceTest.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
package com.bravo.user.service;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.IntStream;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.test.mock.mockito.MockBean;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit.jupiter.SpringExtension;
import com.bravo.user.App;
import com.bravo.user.dao.model.Payment;
import com.bravo.user.dao.model.mapper.ResourceMapper;
import com.bravo.user.dao.repository.PaymentRepository;
import com.bravo.user.model.dto.PaymentDto;
@ContextConfiguration(classes = { App.class })
@ExtendWith(SpringExtension.class)
@SpringBootTest
class PaymentServiceTest {
@Autowired
private PaymentService paymentService;
@MockBean
private ResourceMapper resourceMapper;
@MockBean
private PaymentRepository paymentRepository;
private List<PaymentDto> dtoPayments;
@BeforeEach
public void beforeEach() {
final List<Integer> ids = IntStream.range(1, 10).boxed().collect(Collectors.toList());
final List<Payment> daoPayments = ids.stream()
.map(id -> createPayment(Integer.toString(id))).collect(Collectors.toList());
when(paymentRepository.findByUserId(anyString())).thenReturn(daoPayments);
this.dtoPayments = ids.stream().map(id -> createPaymentDto(Integer.toString(id)))
.collect(Collectors.toList());
when(resourceMapper.convertPayments(daoPayments)).thenReturn(dtoPayments);
}
@Test
void retrieveByUserId() {
final String userId = "123a-456b";
final List<PaymentDto> results = paymentService.retrieveByUserId(userId);
assertEquals(dtoPayments, results);
verify(paymentRepository).findByUserId(userId);
}
private Payment createPayment(final String id) {
final Payment payment = new Payment();
payment.setId(id);
return payment;
}
private PaymentDto createPaymentDto(final String id) {
final PaymentDto payment = new PaymentDto();
payment.setId(id);
return payment;
}
}