test: mock PostMapper in CategoryControllerTest

This commit is contained in:
Tim
2025-08-04 21:29:45 +08:00
parent 0f5d5653f5
commit 053c05ea26

View File

@@ -1,5 +1,7 @@
package com.openisle.controller; package com.openisle.controller;
import com.openisle.mapper.CategoryMapper;
import com.openisle.mapper.PostMapper;
import com.openisle.model.Category; import com.openisle.model.Category;
import com.openisle.service.CategoryService; import com.openisle.service.CategoryService;
import com.openisle.service.PostService; import com.openisle.service.PostService;
@@ -9,6 +11,7 @@ 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.autoconfigure.web.servlet.WebMvcTest; import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;
import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.boot.test.mock.mockito.MockBean;
import org.springframework.context.annotation.Import;
import org.springframework.http.MediaType; import org.springframework.http.MediaType;
import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.MockMvc;
@@ -20,6 +23,7 @@ import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.
@WebMvcTest(CategoryController.class) @WebMvcTest(CategoryController.class)
@AutoConfigureMockMvc(addFilters = false) @AutoConfigureMockMvc(addFilters = false)
@Import(CategoryMapper.class)
class CategoryControllerTest { class CategoryControllerTest {
@Autowired @Autowired
private MockMvc mockMvc; private MockMvc mockMvc;
@@ -30,6 +34,9 @@ class CategoryControllerTest {
@MockBean @MockBean
private PostService postService; private PostService postService;
@MockBean
private PostMapper postMapper;
@Test @Test
void createAndGetCategory() throws Exception { void createAndGetCategory() throws Exception {
Category c = new Category(); Category c = new Category();