-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1088 from bounswe/backend/test-profile-improvements
added last activities test and improved edit profile tests
- Loading branch information
Showing
1 changed file
with
106 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,14 @@ | |
import static org.mockito.Mockito.*; | ||
import static org.junit.jupiter.api.Assertions.*; | ||
|
||
import com.app.gamereview.dto.request.review.GetAllReviewsFilterRequestDto; | ||
import com.app.gamereview.dto.request.vote.GetAllVotesFilterRequestDto; | ||
import com.app.gamereview.dto.response.profile.GetLastActivitiesResponseDto; | ||
import com.app.gamereview.dto.response.review.GetAllReviewsResponseDto; | ||
import com.app.gamereview.enums.ActivityType; | ||
import com.app.gamereview.enums.UserRole; | ||
import com.app.gamereview.enums.VoteChoice; | ||
import com.app.gamereview.enums.VoteType; | ||
import com.app.gamereview.model.*; | ||
import com.app.gamereview.repository.*; | ||
import com.app.gamereview.dto.request.profile.EditProfileRequestDto; | ||
|
@@ -17,6 +24,8 @@ | |
import org.mockito.Mock; | ||
import org.mockito.MockitoAnnotations; | ||
|
||
import java.time.LocalDateTime; | ||
import java.util.List; | ||
import java.util.Optional; | ||
|
||
public class ProfileServiceTests { | ||
|
@@ -34,6 +43,15 @@ public class ProfileServiceTests { | |
|
||
@Mock | ||
private UserRepository userRepository; | ||
@Mock | ||
private ReviewService reviewService; | ||
@Mock | ||
private VoteService voteService; | ||
|
||
@Mock | ||
private CommentService commentService; | ||
@Mock | ||
private PostService postService; | ||
|
||
@InjectMocks | ||
private ProfileService profileService; | ||
|
@@ -151,6 +169,37 @@ public void testGetProfilePrivateProfileAccessDenied() { | |
profileService.getProfile(profileUserId, nonOwnerUser.getEmail()); | ||
}, "Expected BadRequestException for accessing a private profile by a non-owner and non-admin user"); | ||
} | ||
@Test | ||
public void testEditProfileUsernameAlreadyTaken() { | ||
String profileId = "profileId"; | ||
String userId = "user1"; | ||
String existingUsername = "existingUsername"; | ||
String newUsername = "newUsername"; | ||
|
||
Profile mockProfile = new Profile(); | ||
mockProfile.setUserId(userId); | ||
|
||
when(profileRepository.findById(profileId)).thenReturn(Optional.of(mockProfile)); | ||
|
||
User existingUser = new User(); | ||
existingUser.setId("existingUserId"); | ||
existingUser.setUsername(newUsername); | ||
when(userRepository.findByUsername(newUsername)).thenReturn(Optional.of(existingUser)); | ||
|
||
User mockUser = new User(); | ||
mockUser.setId(userId); | ||
mockUser.setUsername(existingUsername); | ||
|
||
when(userRepository.findById(userId)).thenReturn(Optional.of(mockUser)); | ||
|
||
EditProfileRequestDto request = new EditProfileRequestDto(); | ||
request.setUsername(newUsername); | ||
|
||
assertThrows(BadRequestException.class, () -> { | ||
profileService.editProfile(profileId, request, mockUser); | ||
}, "Expected BadRequestException for attempting to use an already taken username"); | ||
} | ||
|
||
|
||
@Test | ||
public void testGetProfileSuccess() { | ||
|
@@ -174,4 +223,61 @@ public void testGetProfileSuccess() { | |
assertEquals(userId, mockProfile.getUserId(), "The profile should match the requested user id"); | ||
assertFalse(mockProfile.getIsPrivate(), "The profile should be public"); | ||
} | ||
@Test | ||
public void testGetLastActivities() { | ||
User user = new User(); | ||
user.setId("userId"); | ||
user.setEmail("[email protected]"); | ||
|
||
GetAllReviewsFilterRequestDto reviewFilter = new GetAllReviewsFilterRequestDto(); | ||
reviewFilter.setReviewedBy(user.getId()); | ||
reviewFilter.setSortBy("CREATION_DATE"); | ||
|
||
GetAllVotesFilterRequestDto voteFilter = new GetAllVotesFilterRequestDto(); | ||
voteFilter.setVotedBy(user.getId()); | ||
|
||
GetAllReviewsResponseDto mockReview = new GetAllReviewsResponseDto(); | ||
mockReview.setId("reviewId"); | ||
mockReview.setGameId("gameId"); | ||
mockReview.setReviewDescription("This is a review"); | ||
mockReview.setCreatedAt(LocalDateTime.parse("2023-01-01T12:00:00")); | ||
|
||
Vote mockVote = new Vote(); | ||
mockVote.setId("voteId"); | ||
mockVote.setTypeId("reviewId"); | ||
mockVote.setVoteType(VoteType.REVIEW); | ||
mockVote.setChoice(VoteChoice.UPVOTE); | ||
mockVote.setVotedBy(user.getId()); | ||
mockVote.setCreatedAt(LocalDateTime.parse("2023-01-02T12:00:00")); | ||
|
||
Comment mockComment = new Comment(); | ||
mockComment.setId("commentId"); | ||
mockComment.setPost("postId"); | ||
mockComment.setCommentContent("This is a comment"); | ||
mockComment.setCreatedAt(LocalDateTime.parse("2023-01-04T12:00:00")); | ||
|
||
// Mock post data | ||
Post mockPost = new Post(); | ||
mockPost.setId("postId"); | ||
mockPost.setForum("forumId"); | ||
mockPost.setPostContent("This is a post"); | ||
mockPost.setCreatedAt(LocalDateTime.parse("2023-01-05T12:00:00")); | ||
|
||
when(reviewService.getAllReviews(any(), any())).thenReturn(List.of(mockReview)); | ||
when(voteService.getAllVotes(any())).thenReturn(List.of(mockVote)); | ||
when(commentService.getUserCommentList(any())).thenReturn(List.of(mockComment)); | ||
when(postService.getUserPostList(any())).thenReturn(List.of(mockPost)); | ||
|
||
List<GetLastActivitiesResponseDto> lastActivities = profileService.getLastActivities(user); | ||
System.out.println(lastActivities); | ||
assertNotNull(lastActivities, "The result should not be null"); | ||
assertEquals(4, lastActivities.size(), "There should be four activity"); | ||
for (int i = 1; i < lastActivities.size(); i++) { | ||
GetLastActivitiesResponseDto currentActivity = lastActivities.get(i); | ||
GetLastActivitiesResponseDto previousActivity = lastActivities.get(i - 1); | ||
|
||
// Check that the current activity's creation date is equal to or after the previous one | ||
assertFalse(currentActivity.getCreatedAt().isAfter(previousActivity.getCreatedAt()), "Activities should be sorted in descending order based on creation date"); | ||
} | ||
} | ||
} |