diff --git a/application/model/src/main/java/org/fuseri/model/dto/lecture/LectureDto.java b/application/model/src/main/java/org/fuseri/model/dto/lecture/LectureDto.java index fce976e1bd7293253a3c433bfda793271597c969..b10a5cb1c067c1da84ffa40e8cf6c19da845594c 100644 --- a/application/model/src/main/java/org/fuseri/model/dto/lecture/LectureDto.java +++ b/application/model/src/main/java/org/fuseri/model/dto/lecture/LectureDto.java @@ -17,11 +17,11 @@ public class LectureDto extends DomainObjectDto { @Future(message = "Lecture start date and time must be in the future") @NotNull(message = "Lecture start date and time cannot be null") - private LocalDateTime from; + private LocalDateTime lectureFrom; @Future(message = "Lecture end date and time must be in the future") @NotNull(message = "Lecture end date and time cannot be null") - private LocalDateTime to; + private LocalDateTime lectureTo; @NotBlank(message = "Lecture topic cannot be blank") @Size(max = 255, message = "Lecture topic must be no more than {max} characters") @@ -41,8 +41,8 @@ public class LectureDto extends DomainObjectDto { private List<Long> studentIds; public LectureDto(LocalDateTime from, LocalDateTime to, String topic, Integer capacity, Long lecturerId, Long courseId) { - this.from = from; - this.to = to; + this.lectureFrom = from; + this.lectureTo = to; this.topic = topic; this.capacity = capacity; this.lecturerId = lecturerId; @@ -52,7 +52,7 @@ public class LectureDto extends DomainObjectDto { @AssertTrue(message = "Lecture start datetime must be before Lecture end datetime") private boolean isFromDateBeforeToDate() { - if (from == null || to == null) return true; - return from.isBefore(to); + if (lectureFrom == null || lectureTo == null) return true; + return lectureFrom.isBefore(lectureTo); } } diff --git a/application/module-language-school/src/test/java/org/fuseri/modulelanguageschool/lecture/LectureControllerTest.java b/application/module-language-school/src/test/java/org/fuseri/modulelanguageschool/lecture/LectureControllerTest.java index 79a08b69c25ee64b02a59ac418b26345bbb11fb5..f6164836b671143323b9c72b0937b262b5f32cd2 100644 --- a/application/module-language-school/src/test/java/org/fuseri/modulelanguageschool/lecture/LectureControllerTest.java +++ b/application/module-language-school/src/test/java/org/fuseri/modulelanguageschool/lecture/LectureControllerTest.java @@ -52,8 +52,8 @@ public class LectureControllerTest { .content(asJsonString(lectureCreateDto)) .contentType(MediaType.APPLICATION_JSON)) .andExpect(status().isOk()) - .andExpect(jsonPath("$.from").isNotEmpty()) - .andExpect(jsonPath("$.to").isNotEmpty()) + .andExpect(jsonPath("$.lectureFrom").isNotEmpty()) + .andExpect(jsonPath("$.lectureTo").isNotEmpty()) .andExpect(jsonPath("$.topic").value("Learning how to spell deprecated")) .andExpect(jsonPath("$.capacity").value("10")) .andExpect(jsonPath("$.lecturerId").value("0")) @@ -85,8 +85,8 @@ public class LectureControllerTest { Mockito.when(lectureController.find(id)).thenReturn(lectureDto); mockMvc.perform(get("/lectures/find/" + id)) .andExpect(status().isOk()) - .andExpect(jsonPath("$.from").isNotEmpty()) - .andExpect(jsonPath("$.to").isNotEmpty()) + .andExpect(jsonPath("$.lectureFrom").isNotEmpty()) + .andExpect(jsonPath("$.lectureTo").isNotEmpty()) .andExpect(jsonPath("$.topic").value("Learning how to spell deprecated")) .andExpect(jsonPath("$.capacity").value("10")) .andExpect(jsonPath("$.lecturerId").value("0")) @@ -130,8 +130,8 @@ public class LectureControllerTest { .content(asJsonString(lectureCreateDto)) .contentType(MediaType.APPLICATION_JSON)) .andExpect(status().isOk()) - .andExpect(jsonPath("$.from").isNotEmpty()) - .andExpect(jsonPath("$.to").isNotEmpty()) + .andExpect(jsonPath("$.lectureFrom").isNotEmpty()) + .andExpect(jsonPath("$.lectureTo").isNotEmpty()) .andExpect(jsonPath("$.topic").value("Learning how to spell deprecated")) .andExpect(jsonPath("$.capacity").value("10")) .andExpect(jsonPath("$.lecturerId").value("0")) @@ -175,8 +175,8 @@ public class LectureControllerTest { .content(asJsonString(student)) .contentType(MediaType.APPLICATION_JSON)) .andExpect(status().isOk()) - .andExpect(jsonPath("$.from").isNotEmpty()) - .andExpect(jsonPath("$.to").isNotEmpty()) + .andExpect(jsonPath("$.lectureFrom").isNotEmpty()) + .andExpect(jsonPath("$.lectureTo").isNotEmpty()) .andExpect(jsonPath("$.topic").value("Learning how to spell deprecated")) .andExpect(jsonPath("$.capacity").value("10")) .andExpect(jsonPath("$.lecturerId").value("0")) @@ -205,8 +205,8 @@ public class LectureControllerTest { .content(asJsonString(student)) .contentType(MediaType.APPLICATION_JSON)) .andExpect(status().isOk()) - .andExpect(jsonPath("$.from").isNotEmpty()) - .andExpect(jsonPath("$.to").isNotEmpty()) + .andExpect(jsonPath("$.lectureFrom").isNotEmpty()) + .andExpect(jsonPath("$.lectureTo").isNotEmpty()) .andExpect(jsonPath("$.topic").value("Learning how to spell deprecated")) .andExpect(jsonPath("$.capacity").value("10")) .andExpect(jsonPath("$.lecturerId").value("0")) @@ -235,8 +235,8 @@ public class LectureControllerTest { .content(asJsonString(student)) .contentType(MediaType.APPLICATION_JSON)) .andExpect(status().isOk()) - .andExpect(jsonPath("$.from").isNotEmpty()) - .andExpect(jsonPath("$.to").isNotEmpty()) + .andExpect(jsonPath("$.lectureFrom").isNotEmpty()) + .andExpect(jsonPath("$.lectureTo").isNotEmpty()) .andExpect(jsonPath("$.topic").value("Learning how to spell deprecated")) .andExpect(jsonPath("$.capacity").value("10")) .andExpect(jsonPath("$.lecturerId").value("0"))