This repository was archived by the owner on Jan 11, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStudyQueryServiceTest.java
More file actions
2000 lines (1570 loc) · 86.7 KB
/
StudyQueryServiceTest.java
File metadata and controls
2000 lines (1570 loc) · 86.7 KB
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package com.example.spot.service.study;
import static org.junit.jupiter.api.Assertions.*;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.anyList;
import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import static org.mockito.internal.verification.VerificationModeFactory.times;
import com.example.spot.api.exception.handler.MemberHandler;
import com.example.spot.api.exception.handler.StudyHandler;
import com.example.spot.domain.Member;
import com.example.spot.domain.Region;
import com.example.spot.domain.Theme;
import com.example.spot.domain.enums.*;
import com.example.spot.domain.mapping.MemberStudy;
import com.example.spot.domain.mapping.MemberTheme;
import com.example.spot.domain.mapping.PreferredRegion;
import com.example.spot.domain.mapping.PreferredStudy;
import com.example.spot.domain.mapping.RegionStudy;
import com.example.spot.domain.mapping.StudyTheme;
import com.example.spot.domain.study.Study;
import com.example.spot.repository.MemberRepository;
import com.example.spot.repository.MemberStudyRepository;
import com.example.spot.repository.MemberThemeRepository;
import com.example.spot.repository.PreferredRegionRepository;
import com.example.spot.repository.PreferredStudyRepository;
import com.example.spot.repository.RegionStudyRepository;
import com.example.spot.repository.StudyRepository;
import com.example.spot.repository.StudyThemeRepository;
import com.example.spot.repository.ThemeRepository;
import com.example.spot.web.dto.search.SearchRequestStudyDTO;
import com.example.spot.web.dto.search.SearchRequestStudyWithThemeDTO;
import com.example.spot.web.dto.search.SearchResponseDTO.MyPageDTO;
import com.example.spot.web.dto.search.SearchResponseDTO.StudyPreviewDTO;
import com.example.spot.web.dto.study.response.StudyInfoResponseDTO.StudyInfoDTO;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.junit.jupiter.MockitoExtension;
import org.mockito.junit.jupiter.MockitoSettings;
import org.mockito.quality.Strictness;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Pageable;
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.context.SecurityContext;
import org.springframework.security.core.context.SecurityContextHolder;
@ExtendWith(MockitoExtension.class)
@MockitoSettings(strictness = Strictness.LENIENT)
class StudyQueryServiceTest {
@Mock
private MemberRepository memberRepository;
// 스터디 관련 조회
@Mock
private StudyRepository studyRepository;
@Mock
private MemberStudyRepository memberStudyRepository;
@Mock
private PreferredStudyRepository preferredStudyRepository;
// 관심사 관련 조회
@Mock
private ThemeRepository themeRepository;
@Mock
private StudyThemeRepository studyThemeRepository;
@Mock
private MemberThemeRepository memberThemeRepository;
// 지역 관련 조회
@Mock
private PreferredRegionRepository preferredRegionRepository;
@Mock
private RegionStudyRepository regionStudyRepository;
@InjectMocks
private StudyQueryServiceImpl studyQueryService;
private static Study study1;
private static Study study2;
private static Study study3;
private static Member member;
private static Pageable pageable;
private static Theme theme1;
private static Theme theme2;
private static MemberTheme memberTheme1;
private static MemberTheme memberTheme2;
private static StudyTheme studyTheme1;
private static StudyTheme studyTheme2;
private static SearchRequestStudyDTO request;
private static SearchRequestStudyWithThemeDTO requestWithTheme;
private static Region region1;
private static Region region2;
private static PreferredRegion preferredRegion1;
private static PreferredRegion preferredRegion2;
private static RegionStudy regionStudy1;
private static RegionStudy regionStudy2;
private static PreferredStudy preferredStudy1;
private static PreferredStudy preferredStudy2;
private static MemberStudy memberStudy1;
private static MemberStudy memberStudy2;
@BeforeEach
void setUp() {
initStudy();
member = getMember();
pageable = PageRequest.of(0, 10);
theme1 = getTheme(1L, ThemeType.어학);
theme2 = getTheme(2L, ThemeType.공모전);
memberTheme1 = MemberTheme.builder().member(member).theme(theme1).build();
memberTheme2 = MemberTheme.builder().member(member).theme(theme2).build();
studyTheme1 = new StudyTheme(theme1, study1);
studyTheme2 = new StudyTheme(theme2, study2);
region1 = getRegion("송산면", "4159034000");
region2 = getRegion("봉담읍", "4159025300");
preferredRegion1 = PreferredRegion.builder().member(member).region(region1).build();
preferredRegion2 = PreferredRegion.builder().member(member).region(region2).build();
regionStudy1 = RegionStudy.builder().region(region1).study(study1).build();
regionStudy2 = RegionStudy.builder().region(region2).study(study2).build();
preferredStudy1 = getPreferredStudy(member, study1);
preferredStudy2 = getPreferredStudy(member, study2);
memberStudy1 = getMemberStudy(member, study1);
memberStudy2 = getMemberStudy(member, study2);
study1.addMemberStudy(memberStudy1);
request = getSearchRequestStudyDTO();
requestWithTheme = getSearchRequestStudyWithThemeDTO();
// 사용자 인증 정보 생성
Authentication authentication = new UsernamePasswordAuthenticationToken("1", null, Collections.emptyList());
// SecurityContext 생성 및 설정
SecurityContext securityContext = SecurityContextHolder.createEmptyContext();
securityContext.setAuthentication(authentication);
SecurityContextHolder.setContext(securityContext);
when(memberRepository.existsById(member.getId())).thenReturn(true);
when(memberThemeRepository.findAllByMemberId(member.getId())).thenReturn(List.of(memberTheme1, memberTheme2));
when(studyThemeRepository.findAllByTheme(any())).thenReturn(List.of(studyTheme1, studyTheme2));
when(studyRepository.countStudyByConditionsAndThemeTypesAndNotInIds(any(), any(), any(), any()))
.thenReturn(2L);
when(studyRepository.findByStudyTheme(anyList())).thenReturn(List.of(study1, study2));
}
@Test
void getStudyInfo() {
// given
// when
// then
}
@Test
void getMyPageStudyCount() {
}
/* -------------------------------------------------------- 스터디 상세 정보 조회 ------------------------------------------------------------------------*/
@Test
@DisplayName("스터디 상세 정보 조회 - 성공")
void 스터디_상세_정보_조회_성공() {
// given
Long studyId = 1L;
when(studyRepository.findById(studyId)).thenReturn(Optional.ofNullable(study1));
// when
StudyInfoDTO result = studyQueryService.getStudyInfo(studyId);
// then
assertNotNull(result);
assertEquals(result.getStudyId(), study1.getId());
assertEquals(result.getStudyName(), study1.getTitle());
verify(studyRepository).findById(studyId);
}
@Test
@DisplayName("스터디 상세 정보 조회 - 찾는 스터디가 없는 경우")
void 스터디_상세_정보_조회_시_스터디가_없는_경우() {
// given
Long studyId = 1L;
when(studyRepository.findById(studyId)).thenReturn(Optional.empty());
// when & then
assertThrows(StudyHandler.class, () -> {
studyQueryService.getStudyInfo(studyId);
});
verify(studyRepository).findById(studyId);
}
@Test
@DisplayName("스터디 상세 정보 조회 - 스터디의 소유자가 없는 경우 (스터디 삭제..등)")
void 스터디_상세_정보_조회_시_스터디의_소유자가_없는_경우() {
// given
Long studyId = 2L;
when(studyRepository.findById(studyId)).thenReturn(Optional.ofNullable(study2));
// when & then
assertThrows(StudyHandler.class, () -> {
studyQueryService.getStudyInfo(studyId);
});
verify(studyRepository).findById(studyId);
}
/* -------------------------------------------------------- 마이페이지 스터디 갯수 조회 ------------------------------------------------------------------------*/
@Test
@DisplayName("마이페이지 스터디 갯수 조회 - 성공")
void 마이페이지_스터디_갯수_조회_성공() {
// given
Long memberId = 1L;
when(memberRepository.findById(memberId)).thenReturn(Optional.of(member));
when(memberStudyRepository.countByMemberIdAndStatusAndStudy_Status(memberId, ApplicationStatus.APPLIED, Status.ON)).thenReturn(2L);
when(memberStudyRepository.countByMemberIdAndStatusAndStudy_Status(memberId, ApplicationStatus.APPROVED, Status.ON)).thenReturn(1L);
when(memberStudyRepository.countByMemberIdAndIsOwnedAndStudy_Status(memberId, true, Status.ON)).thenReturn(3L);
// when
MyPageDTO myPageStudyCount = studyQueryService.getMyPageStudyCount(memberId);
// then
assertNotNull(myPageStudyCount);
assertEquals(member.getName(), myPageStudyCount.getName());
assertEquals(2, myPageStudyCount.getAppliedStudies());
assertEquals(1, myPageStudyCount.getOngoingStudies());
assertEquals(3, myPageStudyCount.getMyRecruitingStudies());
}
@Test
@DisplayName("마이페이지 스터디 갯수 조회 - 유효하지 않은 사용자인 경우")
void 마이페이지_스터디_갯수_조회_시_유효하지_않은_사용자인_경우() {
// given
Long memberId = 1L;
when(memberRepository.findById(memberId)).thenReturn(Optional.empty());
// when & then
assertThrows(MemberHandler.class, () -> {
studyQueryService.getMyPageStudyCount(memberId);
});
}
/* -------------------------------------------------------- 검색 조건 없는 스터디 검색 ------------------------------------------------------------------------*/
@Test
@DisplayName("검색 조건 없는 스터디 검색 - 성공")
void 검색_조건_없는_스터디_검색() {
// given
when(studyRepository.findAllStudy(StudySortBy.ALL, pageable)).thenReturn(List.of(study1, study2));
when(studyRepository.count()).thenReturn(2L);
// when
StudyPreviewDTO studies = studyQueryService.findStudies(pageable, StudySortBy.ALL);
// then
assertNotNull(studies);
assertEquals(2, studies.getTotalElements());
assertEquals(study1.getTitle(), studies.getContent().get(0).getTitle());
}
@Test
@DisplayName("검색 조건 없는 스터디 검색 - 페이징 테스트")
void 검색_조건_없는_스터디_검색_페이징(){
//given
List<Study> studies = List.of(study1, study2);
when(studyRepository.findAllStudy(any(), any()))
.thenReturn(studies);
when(studyRepository.count())
.thenReturn(2L);
// when
StudyPreviewDTO result = studyQueryService.findStudies(
PageRequest.of(0, 10), StudySortBy.ALL);
// then
assertEquals(10, result.getSize());
assertEquals(2, result.getTotalElements());
assertEquals(2, result.getContent().size());
}
@Test
@DisplayName("검색 조건 없는 스터디 검색 - 조회된 스터디가 없을 경우")
void 검색_조건_없는_스터디_검색_시_스터디가_없는_경우() {
// given
when(studyRepository.findAllStudy(StudySortBy.ALL, pageable)).thenReturn(List.of());
when(studyRepository.count()).thenReturn(0L);
// when & then
assertThrows(StudyHandler.class, () -> {
studyQueryService.findStudies(pageable, StudySortBy.ALL);
});
}
/* -------------------------------------------------------- 검색 조건 있는 스터디 검색 ------------------------------------------------------------------------*/
@Test
@DisplayName("검색 조건 있는 스터디 검색 - 성공")
void 검색_조건_있는_스터디_검색() {
// given
SearchRequestStudyDTO request = getSearchRequestStudyDTO();
Map<String, Object> conditions = getStringObjectMap();
when(studyRepository.findAllStudyByConditions(conditions, StudySortBy.ALL, pageable)).thenReturn(List.of(study1, study2));
when(studyRepository.countStudyByConditions(conditions, StudySortBy.ALL)).thenReturn(2L);
// when
StudyPreviewDTO studies = studyQueryService.findStudiesByConditions(pageable, request, StudySortBy.ALL);
// then
assertNotNull(studies);
assertEquals(2, studies.getTotalElements());
assertEquals(study1.getTitle(), studies.getContent().get(0).getTitle());
}
@Test
@DisplayName("검색 조건 있는 스터디 검색 - 페이징 테스트")
void 검색_조건_있는_스터디_검색_페이징(){
//given
List<Study> studies = List.of(study1, study2);
SearchRequestStudyDTO request = getSearchRequestStudyDTO();
Map<String, Object> conditions = getStringObjectMap();
when(studyRepository.findAllStudyByConditions(conditions, StudySortBy.ALL, pageable))
.thenReturn(studies);
when(studyRepository.countStudyByConditions(conditions, StudySortBy.ALL))
.thenReturn(2L);
// when
StudyPreviewDTO result = studyQueryService.findStudiesByConditions(
PageRequest.of(0, 10), request, StudySortBy.ALL);
// then
assertEquals(10, result.getSize());
assertEquals(2, result.getTotalElements());
assertEquals(2, result.getContent().size());
}
@Test
@DisplayName("검색 조건 있는 스터디 검색 - 조회된 스터디가 없을 경우")
void 검색_조건_있는_스터디_검색_시_스터디가_없는_경우() {
// given
SearchRequestStudyDTO request = getSearchRequestStudyDTO();
Map<String, Object> conditions = getStringObjectMap();
when(studyRepository.findAllStudyByConditions(conditions, StudySortBy.ALL, pageable)).thenReturn(List.of());
when(studyRepository.countStudyByConditions(conditions, StudySortBy.ALL)).thenReturn(0L);
// when & then
assertThrows(StudyHandler.class, () -> {
studyQueryService.findStudiesByConditions(pageable, request, StudySortBy.ALL);
});
}
/* -------------------------------------------------------- 추천 스터디 조회 ------------------------------------------------------------------------*/
@Test
@DisplayName("추천 스터디 조회 - 추천 스터디가 있는 경우")
void findRecommendStudies() {
// given
// Mock the memberThemeRepository to return a list of MemberTheme
when(memberThemeRepository.findAllByMemberId(member.getId())).thenReturn(List.of(memberTheme1, memberTheme2));
when(preferredRegionRepository.findAllByMemberId(member.getId())).thenReturn(List.of(preferredRegion1, preferredRegion2));
when(studyThemeRepository.findAllByTheme(theme1)).thenReturn(List.of(studyTheme1));
when(studyThemeRepository.findAllByTheme(theme2)).thenReturn(List.of(studyTheme2));
when(regionStudyRepository.findAllByRegion(region1)).thenReturn(List.of(regionStudy1));
when(regionStudyRepository.findAllByRegion(region2)).thenReturn(List.of(regionStudy2));
// Mocking the studyRepository to return studies based on the study themes
when(studyRepository.findByStudyThemeAndNotInIds(anyList(), anyList())).thenReturn(List.of(study1, study2));
when(studyRepository.findByRegionStudyAndNotInIds(anyList(), anyList())).thenReturn(List.of(study1, study2));
when(memberRepository.existsById(member.getId())).thenReturn(true);
// when
StudyPreviewDTO result = studyQueryService.findRecommendStudies(member.getId());
// then
assertNotNull(result);
assertEquals(2, result.getSize()); // Assuming StudyPreviewDTO has a getStudies method
verify(memberThemeRepository).findAllByMemberId(member.getId());
verify(studyThemeRepository, times(1)).findAllByTheme(theme1);
verify(studyThemeRepository, times(1)).findAllByTheme(theme2);
verify(studyRepository).findByStudyThemeAndNotInIds(anyList(), anyList());
}
@Test
@DisplayName("추천 스터디 조회 - 추천 스터디가 없는 경우")
void findRecommendStudiesOnFail() {
// given
when(memberThemeRepository.findAllByMemberId(member.getId())).thenReturn(List.of(memberTheme1, memberTheme2));
when(preferredRegionRepository.findAllByMemberId(member.getId())).thenReturn(List.of(preferredRegion1, preferredRegion2));
when(studyThemeRepository.findAllByTheme(theme1)).thenReturn(List.of(studyTheme1));
when(studyThemeRepository.findAllByTheme(theme2)).thenReturn(List.of(studyTheme2));
when(regionStudyRepository.findAllByRegion(region1)).thenReturn(List.of(regionStudy1));
when(regionStudyRepository.findAllByRegion(region2)).thenReturn(List.of(regionStudy2));
// Mocking the studyRepository to return studies based on the study themes
when(studyRepository.findByStudyThemeAndNotInIds(anyList(), anyList())).thenReturn(List.of());
when(studyRepository.findByRegionStudyAndNotInIds(anyList(), anyList())).thenReturn(List.of());
when(memberRepository.existsById(member.getId())).thenReturn(true);
// when & then
assertThrows(StudyHandler.class, () -> {
studyQueryService.findRecommendStudies(member.getId());
});
verify(memberThemeRepository).findAllByMemberId(member.getId());
verify(studyThemeRepository, times(1)).findAllByTheme(theme1);
verify(studyThemeRepository, times(1)).findAllByTheme(theme2);
verify(studyRepository).findByStudyThemeAndNotInIds(anyList(), anyList());
}
@Test
@DisplayName("추천 스터디 조회 - 회원의 관심 테마에 해당하는 스터디가 없는 경우")
void 추천_스터디_조회_시_회원의_관심_테마에_해당하는_스터디가_없는_경우() {
// given
when(memberThemeRepository.findAllByMemberId(member.getId())).thenReturn(List.of(memberTheme1, memberTheme2));
when(preferredRegionRepository.findAllByMemberId(member.getId())).thenReturn(List.of(preferredRegion1, preferredRegion2));
when(studyThemeRepository.findAllByTheme(theme1)).thenReturn(List.of());
when(studyThemeRepository.findAllByTheme(theme2)).thenReturn(List.of());
when(regionStudyRepository.findAllByRegion(region1)).thenReturn(List.of(regionStudy1));
when(regionStudyRepository.findAllByRegion(region2)).thenReturn(List.of(regionStudy2));
// when & then
assertThrows(StudyHandler.class, () -> {
studyQueryService.findRecommendStudies(member.getId());
});
verify(memberThemeRepository).findAllByMemberId(member.getId());
verify(studyThemeRepository, times(1)).findAllByTheme(theme1);
verify(studyThemeRepository, times(1)).findAllByTheme(theme2);
}
@Test
@DisplayName("추천 스터디 조회 - 회원의 관심 지역에 해당하는 스터디가 없는 경우")
void 추천_스터디_조회_시_회원의_관심_지역에_해당하는_스터디가_없는_경우() {
// given
when(memberThemeRepository.findAllByMemberId(member.getId())).thenReturn(List.of(memberTheme1, memberTheme2));
when(preferredRegionRepository.findAllByMemberId(member.getId())).thenReturn(List.of(preferredRegion1, preferredRegion2));
when(studyThemeRepository.findAllByTheme(theme1)).thenReturn(List.of(studyTheme1));
when(studyThemeRepository.findAllByTheme(theme2)).thenReturn(List.of(studyTheme2));
when(regionStudyRepository.findAllByRegion(region1)).thenReturn(List.of());
when(regionStudyRepository.findAllByRegion(region2)).thenReturn(List.of());
// when & then
assertThrows(StudyHandler.class, () -> {
studyQueryService.findRecommendStudies(member.getId());
});
verify(memberThemeRepository).findAllByMemberId(member.getId());
verify(studyThemeRepository, times(1)).findAllByTheme(theme1);
verify(studyThemeRepository, times(1)).findAllByTheme(theme2);
}
// 유효하지 않은 사용자인 경우
@Test
@DisplayName("추천 스터디 조회 - 유효하지 않은 사용자인 경우")
void findRecommendStudiesOnInvalidUser() {
// given
Member member = getMember();
// when & then
when(memberRepository.existsById(member.getId())).thenReturn(false);
assertThrows(MemberHandler.class, () -> {
studyQueryService.findRecommendStudies(member.getId());
});
}
// 사용자의 관심사가 없는 경우
@Test
@DisplayName("추천 스터디 조회 - 사용자의 관심사가 없는 경우")
void findRecommendStudiesOnNoInterest() {
// given
Member member = getMember();
Long memberId = member.getId();
// Mock the memberThemeRepository to return an empty list
when(memberThemeRepository.findAllByMemberId(memberId)).thenReturn(List.of());
// when & then
assertThrows(MemberHandler.class, () -> {
studyQueryService.findRecommendStudies(memberId);
});
}
@Test
@DisplayName("추천 스터디 조회 - 사용자의 관심 지역이 없는 경우")
void findRecommendStudiesOnNoRegion() {
// given
Member member = getMember();
Long memberId = member.getId();
// Mock the preferredRegionRepository to return an empty list
when(preferredRegionRepository.findAllByMemberId(memberId)).thenReturn(List.of());
// when & then
assertThrows(MemberHandler.class, () -> {
studyQueryService.findRecommendStudies(memberId);
});
}
/* -------------------------------------------------------- 관심 Best 스터디 조회 ------------------------------------------------------------------------*/
@Test
@DisplayName("관심 Best 스터디 조회 - 성공")
void 관심_BEST_스터디_조회_성공(){
// given
when(studyRepository.findAllStudyByConditions(any(), any(), any()))
.thenReturn(List.of(study1, study2));
// when
StudyPreviewDTO result = studyQueryService.findInterestedStudies(member.getId());
// then
assertNotNull(result);
assertEquals(2, result.getTotalElements());
assertEquals(study1.getTitle(), result.getContent().get(0).getTitle());
}
@Test
@DisplayName("관심 Best 스터디 조회 - 추천 스터디가 조회되지 않는 경우 ")
void 관심_BEST_스터디_조회_시_추천_스터디가_없는_경우(){
// given
when(studyRepository.findAllStudyByConditions(any(), any(), any()))
.thenReturn(List.of());
// when & then
assertThrows(StudyHandler.class, () ->
studyQueryService.findInterestedStudies(member.getId()));
}
/* -------------------------------------------------------- 내 관심사 스터디 조회 ------------------------------------------------------------------------*/
@Test
@DisplayName("내 전체 관심사 스터디 조회 - 내 전체 관심사와 검색 조건에 해당하는 스터디가 없는 경우")
void findInterestStudiesByConditionsAllOnFail() {
// given
StudySortBy sortBy = StudySortBy.ALL;
List<Long> studyIds = List.of();
Map<String, Object> searchConditions = getStringObjectMap();
when(memberThemeRepository.findAllByMemberId(member.getId()))
.thenReturn(List.of(memberTheme1, memberTheme2));
when(studyThemeRepository.findAllByTheme(theme1))
.thenReturn(List.of(studyTheme1));
when(studyThemeRepository.findAllByTheme(theme2))
.thenReturn(List.of(studyTheme2));
when(studyRepository.countStudyByConditionsAndThemeTypesAndNotInIds(
searchConditions, List.of(studyTheme1, studyTheme2), sortBy, studyIds))
.thenReturn(2L);
when(memberRepository.existsById(member.getId())).thenReturn(true);
when(studyRepository.findStudyByConditionsAndThemeTypesAndNotInIds(
searchConditions, sortBy, pageable, List.of(studyTheme1, studyTheme2), studyIds))
.thenReturn(List.of());
// when & then
assertThrows(StudyHandler.class, () -> {
studyQueryService.findInterestStudiesByConditionsAll(pageable, member.getId(), request, sortBy);
});
// then
verify(memberThemeRepository).findAllByMemberId(member.getId());
verify(studyThemeRepository, times(1)).findAllByTheme(theme1);
verify(studyThemeRepository, times(1)).findAllByTheme(theme2);
}
@Test
@DisplayName("내 전체 관심사 스터디 조회 - 내 전체 관심사와 검색 조건에 해당하는 스터디가 없는 경우")
void 전체_테마_스터디_조회_시_테마에_해당하는_스터디가_없는_경우() {
// given
StudySortBy sortBy = StudySortBy.ALL;
when(memberThemeRepository.findAllByMemberId(member.getId()))
.thenReturn(List.of(memberTheme1, memberTheme2));
when(studyThemeRepository.findAllByTheme(theme1))
.thenReturn(List.of());
when(studyThemeRepository.findAllByTheme(theme2))
.thenReturn(List.of());
// when & then
assertThrows(StudyHandler.class, () -> {
studyQueryService.findInterestStudiesByConditionsAll(pageable, member.getId(), request, sortBy);
});
// then
verify(memberThemeRepository).findAllByMemberId(member.getId());
verify(studyThemeRepository, times(1)).findAllByTheme(theme1);
verify(studyThemeRepository, times(1)).findAllByTheme(theme2);
}
@Test
@DisplayName("내 전체 관심사 스터디 조회 - 내 전체 관심사에 해당하는 스터디가 있는 경우")
void findInterestStudiesByConditionsAll() {
// given
List<Long> studyIds = List.of();
StudySortBy sortBy = StudySortBy.ALL;
// Mock conditions
Map<String, Object> searchConditions = getStringObjectMap();
when(memberThemeRepository.findAllByMemberId(member.getId()))
.thenReturn(List.of(memberTheme1, memberTheme2));
when(studyThemeRepository.findAllByTheme(theme1))
.thenReturn(List.of(studyTheme1));
when(studyThemeRepository.findAllByTheme(theme2))
.thenReturn(List.of(studyTheme2));
when(studyRepository.countStudyByConditionsAndThemeTypesAndNotInIds(
searchConditions, List.of(studyTheme1, studyTheme2), sortBy, studyIds))
.thenReturn(2L);
when(studyRepository.findStudyByConditionsAndThemeTypesAndNotInIds(
searchConditions, sortBy, pageable, List.of(studyTheme1, studyTheme2), studyIds))
.thenReturn(List.of(study1, study2));
when(memberRepository.existsById(member.getId())).thenReturn(true);
// when
StudyPreviewDTO result = studyQueryService.findInterestStudiesByConditionsAll(pageable, member.getId(), request, sortBy);
// then
assertNotNull(result);
assertEquals(2, result.getTotalElements()); // Assuming StudyPreviewDTO has a getSize method
verify(memberThemeRepository).findAllByMemberId(member.getId());
verify(studyThemeRepository, times(1)).findAllByTheme(theme1);
verify(studyThemeRepository, times(1)).findAllByTheme(theme2);
verify(studyRepository).countStudyByConditionsAndThemeTypesAndNotInIds(searchConditions, List.of(studyTheme1, studyTheme2), sortBy, studyIds);
verify(studyRepository).findStudyByConditionsAndThemeTypesAndNotInIds(searchConditions, sortBy, pageable, List.of(studyTheme1, studyTheme2), studyIds);
}
@Test
@DisplayName("내 전체 관심사 스터디 조회 - 페이징 테스트")
void shouldReturnPagedStudies(){
//given
List<Study> studies = List.of(study1, study2);
when(memberThemeRepository.findAllByMemberId(any())).thenReturn(List.of(memberTheme1, memberTheme2));
when(studyRepository.findStudyByConditionsAndThemeTypesAndNotInIds(any(), any(), any(), any(), any()))
.thenReturn(studies);
when(studyRepository.countStudyByConditionsAndThemeTypesAndNotInIds(any(), any(), any(), any()))
.thenReturn(2L);
when(memberRepository.existsById(any())).thenReturn(true);
// when
StudyPreviewDTO result = studyQueryService.findInterestStudiesByConditionsAll(
PageRequest.of(0, 10), 1L, getSearchRequestStudyDTO(), StudySortBy.ALL);
// then
assertEquals(10, result.getSize());
assertEquals(2, result.getTotalElements());
assertEquals(2, result.getContent().size());
}
@Test
@DisplayName("내 전체 관심사 스터디 조회 - 검색 조건에 따른 스터디 필터링 테스트")
void shouldFilterStudiesBasedOnSearchConditions(){
// given
when(memberRepository.existsById(member.getId())).thenReturn(true);
when(memberThemeRepository.findAllByMemberId(member.getId())).thenReturn(List.of(memberTheme1, memberTheme2));
when(studyThemeRepository.findAllByTheme(any())).thenReturn(List.of(studyTheme1, studyTheme2));
when(studyRepository.countStudyByConditionsAndThemeTypesAndNotInIds(any(), any(), any(), any()))
.thenReturn(1L);
when(studyRepository.findStudyByConditionsAndThemeTypesAndNotInIds(any(), any(), any(), any(), any()))
.thenReturn(List.of(study1));
// when
// 검색 조건이 안맞는 경우, 검색 조건에 맞는 스터디가 조회 되면 안됨.
StudyPreviewDTO result = studyQueryService.findInterestStudiesByConditionsAll(
pageable, member.getId(), getSearchRequestStudyDTO(), StudySortBy.ALL);
// then
assertEquals(1, result.getTotalElements());
assertEquals(study1.getTitle(), result.getContent().get(0).getTitle());
}
@Test
@DisplayName("내 전체 관심사 스터디 조회 - 정렬 조건에 따른 스터디 필터링 테스트(조회수 순)")
void shouldFilterStudiesBasedOnSortConditionsByHit(){
// given
StudySortBy sortBy = StudySortBy.HIT;
when(memberRepository.existsById(member.getId())).thenReturn(true);
when(memberThemeRepository.findAllByMemberId(member.getId())).thenReturn(List.of(memberTheme1, memberTheme2));
when(studyThemeRepository.findAllByTheme(any())).thenReturn(List.of(studyTheme1, studyTheme2));
when(studyRepository.countStudyByConditionsAndThemeTypesAndNotInIds(any(), any(), any(), any()))
.thenReturn(2L);
when(studyRepository.findStudyByConditionsAndThemeTypesAndNotInIds(any(), any(), any(), any(), any()))
.thenReturn(List.of(study1, study2));
// when
StudyPreviewDTO result = studyQueryService.findInterestStudiesByConditionsAll(
pageable, member.getId(), getSearchRequestStudyDTO(), sortBy);
// then
assertEquals(2, result.getTotalElements());
assertEquals(study1.getTitle(), result.getContent().get(0).getTitle());
assertEquals(study2.getTitle(), result.getContent().get(1).getTitle());
}
@Test
@DisplayName("내 전체 관심사 스터디 조회 - 정렬 조건에 따른 스터디 필터링 테스트(좋아요 순)")
void shouldFilterStudiesBasedOnSortConditionsByLiked(){
// given
StudySortBy sortBy = StudySortBy.LIKED;
when(memberRepository.existsById(member.getId())).thenReturn(true);
when(memberThemeRepository.findAllByMemberId(member.getId())).thenReturn(List.of(memberTheme1, memberTheme2));
when(studyThemeRepository.findAllByTheme(any())).thenReturn(List.of(studyTheme1, studyTheme2));
when(studyRepository.countStudyByConditionsAndThemeTypesAndNotInIds(any(), any(), any(), any()))
.thenReturn(2L);
when(studyRepository.findStudyByConditionsAndThemeTypesAndNotInIds(any(), any(), any(), any(), any()))
.thenReturn(List.of(study2, study1));
// when
StudyPreviewDTO result = studyQueryService.findInterestStudiesByConditionsAll(
pageable, member.getId(), getSearchRequestStudyDTO(), sortBy);
// then
assertEquals(2, result.getTotalElements());
assertEquals(study2.getTitle(), result.getContent().get(0).getTitle());
assertEquals(study1.getTitle(), result.getContent().get(1).getTitle());
}
@Test
@DisplayName("내 전체 관심사 스터디 조회 - 회원의 관심 분야가 없는 경우")
void findInterestStudiesByConditionsAllOnNoInterest() {
// given
StudySortBy sortBy = StudySortBy.ALL;
when(memberRepository.existsById(member.getId())).thenReturn(true);
when(memberThemeRepository.findAllByMemberId(member.getId())).thenReturn(List.of());
// when & then
assertThrows(MemberHandler.class, () -> {
studyQueryService.findInterestStudiesByConditionsAll(pageable, member.getId(), request, sortBy);
});
}
/* -------------------------------------------------------- 내 특정 관심사 스터디 조회 ------------------------------------------------------------------------*/
@Test
@DisplayName("내 특정 관심사 스터디 조회 - 내 특정 관심사에 해당하는 스터디가 있는 경우")
void findInterestStudiesByConditionsSpecific() {
// given
ThemeType themeType = ThemeType.어학;
StudySortBy sortBy = StudySortBy.ALL;
List<Long> studyIds = List.of();
// Mock conditions
Map<String, Object> searchConditions = getStringObjectMap();
when(memberThemeRepository.findAllByMemberId(member.getId()))
.thenReturn(List.of(memberTheme1));
when(studyThemeRepository.findAllByTheme(theme1))
.thenReturn(List.of(studyTheme1));
// Only studyTheme1 should match
when(studyRepository.countStudyByConditionsAndThemeTypesAndNotInIds(
searchConditions, List.of(studyTheme1), sortBy, studyIds))
.thenReturn(1L);
when(memberRepository.existsById(member.getId())).thenReturn(true);
// Adjusting the mock to match the specific test data
when(studyRepository.findStudyByConditionsAndThemeTypesAndNotInIds(
searchConditions, sortBy, pageable, List.of(studyTheme1), studyIds))
.thenReturn(List.of(study1));
// when
StudyPreviewDTO result = studyQueryService.findInterestStudiesByConditionsSpecific(pageable, member.getId(), request, themeType, sortBy);
// then
assertNotNull(result);
assertEquals(1, result.getTotalElements()); // Verify the count matches expected result
verify(memberThemeRepository).findAllByMemberId(member.getId());
verify(studyThemeRepository).findAllByTheme(theme1); // Ensure the correct theme is queried
verify(studyRepository).countStudyByConditionsAndThemeTypesAndNotInIds(searchConditions, List.of(studyTheme1), sortBy, studyIds);
verify(studyRepository).findStudyByConditionsAndThemeTypesAndNotInIds(searchConditions, sortBy, pageable, List.of(studyTheme1),studyIds);
}
@Test
@DisplayName("내 특정 관심사 스터디 조회 - 내 특정 관심사와 검색 조건에 해당하는 스터디가 없는 경우")
void 특정_테마_스터디_조회_시_테마에_해당하는_스터디가_없는_경우() {
// given
StudySortBy sortBy = StudySortBy.ALL;
when(memberThemeRepository.findAllByMemberId(member.getId()))
.thenReturn(List.of(memberTheme1, memberTheme2));
when(studyThemeRepository.findAllByTheme(theme1))
.thenReturn(List.of());
when(studyThemeRepository.findAllByTheme(theme2))
.thenReturn(List.of());
// when & then
assertThrows(StudyHandler.class, () -> {
studyQueryService.findInterestStudiesByConditionsSpecific(pageable, member.getId(), request, ThemeType.어학, sortBy);
});
// then
verify(memberThemeRepository).findAllByMemberId(member.getId());
verify(studyThemeRepository, times(2)).findAllByTheme(any());
}
@Test
@DisplayName("내 특정 관심사 스터디 조회 - 내 특정 관심사에 해당하는 스터디가 없는 경우")
void findInterestStudiesByConditionsSpecificOnFail() {
// given
StudySortBy sortBy = StudySortBy.ALL;
ThemeType themeType = ThemeType.어학;
List<Long> studyIds = List.of();
// Mock conditions
Map<String, Object> searchConditions = getStringObjectMap();
when(memberThemeRepository.findAllByMemberId(member.getId()))
.thenReturn(List.of(memberTheme1));
when(studyThemeRepository.findAllByTheme(theme1))
.thenReturn(List.of(studyTheme1));
// Only studyTheme1 should match
when(studyRepository.countStudyByConditionsAndThemeTypesAndNotInIds(
searchConditions, List.of(studyTheme1), sortBy, studyIds))
.thenReturn(0L);
// Adjusting the mock to match the specific test data
when(studyRepository.findStudyByConditionsAndThemeTypesAndNotInIds(
searchConditions, sortBy, pageable, List.of(studyTheme1), studyIds))
.thenReturn(List.of());
when(memberRepository.existsById(member.getId())).thenReturn(true);
// when & then
assertThrows(StudyHandler.class, () -> {
studyQueryService.findInterestStudiesByConditionsSpecific(pageable, member.getId(), request, themeType, sortBy);
});
verify(memberThemeRepository).findAllByMemberId(member.getId());
verify(studyThemeRepository).findAllByTheme(theme1); // Ensure the correct theme is queried
verify(studyRepository).countStudyByConditionsAndThemeTypesAndNotInIds(searchConditions, List.of(studyTheme1), sortBy, studyIds);
verify(studyRepository).findStudyByConditionsAndThemeTypesAndNotInIds(searchConditions, sortBy, pageable, List.of(studyTheme1),studyIds);
}
@Test
@DisplayName("내 특정 관심사 스터디 조회 - 페이징 테스트")
void shouldReturnPagedStudiesInSpecificTheme(){
//given
List<Study> studies = List.of(study1, study3);
when(memberThemeRepository.findAllByMemberId(any())).thenReturn(List.of(memberTheme1));
when(studyRepository.findStudyByConditionsAndThemeTypesAndNotInIds(any(), any(), any(), any(), any()))
.thenReturn(studies);
when(studyRepository.countStudyByConditionsAndThemeTypesAndNotInIds(any(), any(), any(), any()))
.thenReturn(2L);
when(memberRepository.existsById(any())).thenReturn(true);
// when
StudyPreviewDTO result = studyQueryService.findInterestStudiesByConditionsSpecific(
PageRequest.of(0, 10), 1L, getSearchRequestStudyDTO(), ThemeType.어학, StudySortBy.ALL);
// then
assertEquals(10, result.getSize());
assertEquals(2, result.getTotalElements());
assertEquals(2, result.getContent().size());
}
@Test
@DisplayName("내 특정 관심사 스터디 조회 - 검색 조건에 따른 스터디 필터링 테스트")
void shouldFilterStudiesBasedOnSearchConditionsInSpecificTheme(){
// given
when(memberRepository.existsById(member.getId())).thenReturn(true);
when(memberThemeRepository.findAllByMemberId(member.getId())).thenReturn(List.of(memberTheme1));
when(studyThemeRepository.findAllByTheme(any())).thenReturn(List.of(studyTheme1));
when(studyRepository.countStudyByConditionsAndThemeTypesAndNotInIds(any(), any(), any(), any()))
.thenReturn(2L);
when(studyRepository.findStudyByConditionsAndThemeTypesAndNotInIds(any(), any(), any(), any(), any()))
.thenReturn(List.of(study1, study3));
// when
// 검색 조건이 안맞는 경우, 검색 조건에 맞는 스터디가 조회 되면 안됨.
StudyPreviewDTO result = studyQueryService.findInterestStudiesByConditionsSpecific(
pageable, member.getId(), getSearchRequestStudyDTO(), ThemeType.어학, StudySortBy.ALL);
// then
assertEquals(2, result.getTotalElements());
assertEquals(study1.getTitle(), result.getContent().get(0).getTitle());
assertEquals(study3.getTitle(), result.getContent().get(1).getTitle());
}
@Test
@DisplayName("내 특정 관심사 스터디 조회 - 정렬 조건에 따른 스터디 필터링 테스트(조회수 순)")
void shouldFilterStudiesInSpecificThemeBasedOnSortConditionsByHit(){
// given
StudySortBy sortBy = StudySortBy.HIT;
when(memberRepository.existsById(member.getId())).thenReturn(true);
when(memberThemeRepository.findAllByMemberId(member.getId())).thenReturn(List.of(memberTheme1, memberTheme2));
when(studyThemeRepository.findAllByTheme(any())).thenReturn(List.of(studyTheme1, studyTheme2));
when(studyRepository.countStudyByConditionsAndThemeTypesAndNotInIds(any(), any(), any(), any()))
.thenReturn(3L);
when(studyRepository.findStudyByConditionsAndThemeTypesAndNotInIds(any(), any(), any(), any(), any()))
.thenReturn(List.of(study1, study3, study2));
// when
StudyPreviewDTO result = studyQueryService.findInterestStudiesByConditionsSpecific(
pageable, member.getId(), getSearchRequestStudyDTO(), ThemeType.어학, sortBy);
// then
assertEquals(3, result.getTotalElements());
assertEquals(study1.getTitle(), result.getContent().get(0).getTitle());
assertEquals(study3.getTitle(), result.getContent().get(1).getTitle());
assertEquals(study2.getTitle(), result.getContent().get(2).getTitle());
}
@Test
@DisplayName("내 특정 관심사 스터디 조회 - 정렬 조건에 따른 스터디 필터링 테스트(좋아요 순)")
void shouldFilterStudiesInSpecificThemeBasedOnSortConditionsByLiked(){
// given
StudySortBy sortBy = StudySortBy.LIKED;
when(memberRepository.existsById(member.getId())).thenReturn(true);
when(memberThemeRepository.findAllByMemberId(member.getId())).thenReturn(List.of(memberTheme1, memberTheme2));
when(studyThemeRepository.findAllByTheme(any())).thenReturn(List.of(studyTheme1, studyTheme2));
when(studyRepository.countStudyByConditionsAndThemeTypesAndNotInIds(any(), any(), any(), any()))
.thenReturn(3L);
when(studyRepository.findStudyByConditionsAndThemeTypesAndNotInIds(any(), any(), any(), any(), any()))
.thenReturn(List.of(study2, study1, study3));
// when
StudyPreviewDTO result = studyQueryService.findInterestStudiesByConditionsAll(
pageable, member.getId(), getSearchRequestStudyDTO(), sortBy);
// then
assertEquals(3, result.getTotalElements());
assertEquals(study2.getTitle(), result.getContent().get(0).getTitle());
}