-
Notifications
You must be signed in to change notification settings - Fork 248
/
Copy pathSessionRepositoryTest.java
98 lines (73 loc) · 3.88 KB
/
SessionRepositoryTest.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
package nextstep.courses.infrastructure;
import nextstep.courses.domain.*;
import nextstep.users.domain.NsUser;
import nextstep.users.domain.NsUserTest;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.jdbc.JdbcTest;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.transaction.annotation.Transactional;
import java.util.List;
import java.util.Set;
import java.util.stream.Collectors;
import static org.assertj.core.api.Assertions.assertThat;
@JdbcTest
@Transactional
public class SessionRepositoryTest {
private static final Logger LOGGER = LoggerFactory.getLogger(SessionRepositoryTest.class);
@Autowired
private JdbcTemplate jdbcTemplate;
private SessionRepository sessionRepository;
private CourseRepository courseRepository;
private Set<NsUser> students = Set.of(NsUserTest.JAVAJIGI, NsUserTest.SANJIGI);
private List<SessionImage> sessionImages = List.of(SessionImageTest.S1);
private Long courseId = 3L;
@BeforeEach
void setUp() {
sessionRepository = new JdbcSessionRepository(jdbcTemplate);
courseRepository = new JdbcCourseRepository(jdbcTemplate, sessionRepository);
}
@Test
@DisplayName("무료 강의 db에 넣고 조회 테스트")
void testFreeSession() {
FreeSession freeSession = new FreeSession(1L, sessionImages, RecruitStatus.RECRUIT, SessionDateTest.of(), students);
sessionRepository.saveSession(freeSession, courseId);
Session findSession = sessionRepository.findBySessionId(freeSession.getId(), FreeSession.class).orElse(null);
assertThat(findSession.getId()).isEqualTo(1L);
assertThat(findSession.getSessionImage().get(0).getId()).isEqualTo(sessionImages.get(0).getId());
assertThat(findSession.getSessionProgressStatus()).isEqualTo(SessionProgressStatus.PREPARE);
assertThat(findSession.getStudents()).hasSize(2)
.extracting(NsUser::getUserId)
.containsAll(students.stream().map(NsUser::getUserId).collect(Collectors.toUnmodifiableList()));
}
@Test
@DisplayName("유료 강의 db에 넣고 조회 테스트")
void testPaySession() {
int amount = 1000;
PaySession paySession = new PaySession(1L, sessionImages,RecruitStatus.RECRUIT, SessionDateTest.of(), students, 2, amount);
sessionRepository.saveSession(paySession, courseId);
Session findSession = sessionRepository.findBySessionId(paySession.getId(), PaySession.class).orElse(null);
assertThat(findSession.getId()).isEqualTo(1L);
assertThat(findSession.getSessionImage().get(0).getId()).isEqualTo(sessionImages.get(0).getId());
assertThat(findSession.getSessionProgressStatus()).isEqualTo(SessionProgressStatus.PREPARE);
assertThat(findSession.getStudents()).hasSize(2)
.extracting(NsUser::getUserId)
.containsAll(students.stream().map(NsUser::getUserId).collect(Collectors.toUnmodifiableList()));
}
@Test
@DisplayName("모든 세션 조회 테스트")
void testSessions() {
int amount = 1000;
FreeSession freeSession = new FreeSession(1L, sessionImages, RecruitStatus.RECRUIT, SessionDateTest.of(), students);
sessionRepository.saveSession(freeSession, courseId);
PaySession paySession = new PaySession(1L, sessionImages, RecruitStatus.RECRUIT, SessionDateTest.of(), students, 2, amount);
sessionRepository.saveSession(paySession, courseId);
Sessions sessions = sessionRepository.findByCourseId(courseId);
assertThat(sessions.getSessions()).hasSize(2)
.extracting(Session::getId).contains(freeSession.getId(), paySession.getId());
}
}