Skip to content
Snippets Groups Projects
Commit fabeceec authored by Jan Pokorný's avatar Jan Pokorný :lifter_tone2:
Browse files

moddified CertificateControllerTests

parent 0e3e0c8d
No related branches found
No related tags found
2 merge requests!31M2,!22M2 certificate tests
...@@ -2,21 +2,27 @@ package org.fuseri.modulecertificate; ...@@ -2,21 +2,27 @@ package org.fuseri.modulecertificate;
import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.ObjectMapper;
import org.fuseri.model.dto.certificate.CertificateCreateDto; import org.fuseri.model.dto.certificate.CertificateCreateDto;
import org.fuseri.model.dto.certificate.CertificateDto; import org.fuseri.model.dto.certificate.CertificateSimpleDto;
import org.fuseri.model.dto.course.CourseDto; import org.fuseri.model.dto.course.CourseDto;
import org.fuseri.model.dto.course.LanguageTypeDto; import org.fuseri.model.dto.course.LanguageTypeDto;
import org.fuseri.model.dto.course.ProficiencyLevelDto; import org.fuseri.model.dto.course.ProficiencyLevelDto;
import org.fuseri.model.dto.user.AddressDto; import org.fuseri.model.dto.user.AddressDto;
import org.fuseri.model.dto.user.UserDto; import org.fuseri.model.dto.user.UserDto;
import org.fuseri.modulecertificate.service.CertificateController;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
import org.springdoc.core.converters.models.Pageable; import org.mockito.ArgumentMatchers;
import org.mockito.Mockito;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc; import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
import org.springframework.boot.test.context.SpringBootTest; import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.test.mock.mockito.MockBean;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest; import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Pageable;
import org.springframework.http.MediaType; import org.springframework.http.MediaType;
import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.MockMvc;
import java.time.Instant;
import java.util.List; import java.util.List;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*;
...@@ -27,23 +33,42 @@ import static org.springframework.test.web.servlet.result.MockMvcResultMatchers. ...@@ -27,23 +33,42 @@ import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.
@AutoConfigureMockMvc @AutoConfigureMockMvc
class CertificateControllerTests { class CertificateControllerTests {
@Autowired
private ObjectMapper objectMapper;
@Autowired
private MockMvc mockMvc;
private final UserDto USER = new UserDto("novakovat", private final UserDto USER = new UserDto("novakovat",
"novakova@gamil.com", "Tereza", "Nováková", new AddressDto()); "novakova@gamil.com", "Tereza", "Nováková", new AddressDto());
private final CourseDto COURSE = new CourseDto("AJ1", 10, private final CourseDto COURSE = new CourseDto("AJ1", 10,
LanguageTypeDto.ENGLISH, ProficiencyLevelDto.A1); LanguageTypeDto.ENGLISH, ProficiencyLevelDto.A1);
private final CertificateCreateDto certificateCreateDto = new CertificateCreateDto(USER, COURSE);
private final CertificateSimpleDto certificateDto = new CertificateSimpleDto(0L, USER.getId(),
Instant.now(), COURSE.getId(), "", "");
@Autowired
private MockMvc mockMvc;
@MockBean
private CertificateController certificateController;
private static String asJsonString(final Object obj) {
try {
return new ObjectMapper().writeValueAsString(obj);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
@Test @Test
void generateCertificate() throws Exception { void generateCertificate() throws Exception {
Mockito.when(certificateController.generate(ArgumentMatchers.any(CertificateCreateDto.class)))
.thenReturn(certificateDto);
mockMvc.perform(post("/certificates/generate") mockMvc.perform(post("/certificates/generate")
.content(asJsonString(new CertificateCreateDto(USER, COURSE))) .content(asJsonString(certificateCreateDto))
.contentType(MediaType.APPLICATION_JSON)) .contentType(MediaType.APPLICATION_JSON))
.andExpect(status().isOk()); .andExpect(status().isOk())
.andExpect(jsonPath("$.id").value(certificateDto.getId()))
.andExpect(jsonPath("$.userId").value(certificateDto.getUserId()))
.andExpect(jsonPath("$.generatedAt").value(certificateDto.getGeneratedAt().toString()))
.andExpect(jsonPath("$.courseId").value(certificateDto.getCourseId()))
.andExpect(jsonPath("$.certificateFile").value(certificateDto.getCertificateFile()))
.andExpect(jsonPath("$.certificateFileName").value(certificateDto.getCertificateFileName()));
} }
@Test @Test
...@@ -71,16 +96,11 @@ class CertificateControllerTests { ...@@ -71,16 +96,11 @@ class CertificateControllerTests {
@Test @Test
void findCertificate() throws Exception { void findCertificate() throws Exception {
String response = mockMvc.perform(post("/certificates/generate") Mockito.when(certificateController.find(ArgumentMatchers.anyLong())).thenReturn(certificateDto);
.content(asJsonString(new CertificateCreateDto(USER, COURSE)))
.contentType(MediaType.APPLICATION_JSON))
.andExpect(status().isOk()).andReturn().getResponse().getContentAsString();
Long id = objectMapper.readValue(response, CertificateDto.class).getId(); mockMvc.perform(get("/certificates/find").param("id", certificateDto.getId().toString()))
mockMvc.perform(get("/certificates/find").param("id", id.toString()))
.andExpect(status().isOk()) .andExpect(status().isOk())
.andExpect(jsonPath("$.id").value(id)); .andExpect(jsonPath("$.id").value(certificateDto.getId()));
} }
@Test @Test
...@@ -91,6 +111,8 @@ class CertificateControllerTests { ...@@ -91,6 +111,8 @@ class CertificateControllerTests {
@Test @Test
void findCertificatesForUser() throws Exception { void findCertificatesForUser() throws Exception {
Mockito.when(certificateController.findForUser(ArgumentMatchers.anyLong())).thenReturn(List.of(certificateDto));
mockMvc.perform(get("/certificates/findForUser").param("userId", "0")) mockMvc.perform(get("/certificates/findForUser").param("userId", "0"))
.andExpect(status().isOk()) .andExpect(status().isOk())
.andExpect(jsonPath("$").isArray()) .andExpect(jsonPath("$").isArray())
...@@ -105,11 +127,16 @@ class CertificateControllerTests { ...@@ -105,11 +127,16 @@ class CertificateControllerTests {
@Test @Test
void findCertificateIdForUserAndCourse() throws Exception { void findCertificateIdForUserAndCourse() throws Exception {
Mockito.when(certificateController.findForUserAndCourse(ArgumentMatchers.anyLong(),
ArgumentMatchers.anyLong()))
.thenReturn(List.of(certificateDto));
mockMvc.perform(get("/certificates/findForUserAndCourse") mockMvc.perform(get("/certificates/findForUserAndCourse")
.param("userId", "0") .param("userId", "0")
.param("courseId", "0")) .param("courseId", "0"))
.andExpect(status().isOk()) .andExpect(status().isOk())
.andExpect(content().string("[]")); .andExpect(jsonPath("$").isArray())
.andExpect(jsonPath("$").isNotEmpty());
} }
@Test @Test
...@@ -134,8 +161,10 @@ class CertificateControllerTests { ...@@ -134,8 +161,10 @@ class CertificateControllerTests {
@Test @Test
void deleteCertificate() throws Exception { void deleteCertificate() throws Exception {
Mockito.doNothing().when(certificateController).delete(ArgumentMatchers.anyLong());
mockMvc.perform(delete("/certificates/delete") mockMvc.perform(delete("/certificates/delete")
.param("id", "0")) .param("id", String.valueOf(0L)))
.andExpect(status().isOk()); .andExpect(status().isOk());
} }
...@@ -145,31 +174,27 @@ class CertificateControllerTests { ...@@ -145,31 +174,27 @@ class CertificateControllerTests {
.andExpect(status().is4xxClientError()); .andExpect(status().is4xxClientError());
} }
@Test @Test
void findAllCertificates() throws Exception { void findAllCertificates() throws Exception {
mockMvc.perform(post("/certificates/generate") Mockito.when(certificateController.findAllCertificates(ArgumentMatchers.any(Pageable.class)))
.content(asJsonString(new CertificateCreateDto(USER, COURSE))) .thenReturn(Page.empty(PageRequest.of(0, 1)));
.contentType(MediaType.APPLICATION_JSON))
.andExpect(status().isOk());
mockMvc.perform(get("/certificates/findAll") mockMvc.perform(get("/certificates/findAll")
.content("{ \"page\": 0, \"size\": 1, \"sort\": []}") .param("page", "0")
.contentType(MediaType.APPLICATION_JSON)) .param("size", "10"))
.andExpect(status().isOk()); .andExpect(status().isOk())
.andExpect(content().contentType(MediaType.APPLICATION_JSON))
.andExpect(jsonPath("$.content").isEmpty());
} }
@Test @Test
void findAllCertificatesWithoutParam() throws Exception { void findAllCertificatesWithoutParam() throws Exception {
mockMvc.perform(get("/certificates/findAll")) Mockito.when(certificateController.findAllCertificates(ArgumentMatchers.any(Pageable.class)))
.andExpect(status().is4xxClientError()); .thenReturn(Page.empty(PageRequest.of(0, 1)));
}
private static String asJsonString(final Object obj) { mockMvc.perform(get("/certificates/findAll"))
try { .andExpect(status().isOk())
return new ObjectMapper().writeValueAsString(obj); .andExpect(content().contentType(MediaType.APPLICATION_JSON))
} catch (Exception e) { .andExpect(jsonPath("$.content").isEmpty());
throw new RuntimeException(e);
}
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment