如何正确自动装配MockMvc bean

问题描述 投票:0回答:3

我在这方面遇到了一些麻烦。

我正在尝试测试我的 Spring boot 应用程序的 Web 层(使用 JUnit5)。
我使用

@WebMvcTest(NoteController::class)
来允许我自动装配
MockMvc
以模拟请求。

但是我收到以下错误:

kotlin.UninitializedPropertyAccessException: lateinit property mvc has not been initialized

注意控制器测试

import org.hamcrest.Matchers.`is`
import org.junit.Test
import org.junit.jupiter.api.extension.ExtendWith
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest
import org.springframework.http.MediaType
import org.springframework.test.context.junit.jupiter.SpringExtension
import org.springframework.test.web.servlet.MockMvc
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post
import org.springframework.test.web.servlet.result.MockMvcResultMatchers.*

@ExtendWith(SpringExtension::class)
@WebMvcTest(NoteController::class)
class NoteControllerTest {

    @Autowired
    private lateinit var mvc: MockMvc

    @Test
    fun should_create_a_note() {
        mvc.perform(
                post("/notes"))
                .andExpect(status().isCreated)
                .andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
                .andExpect(jsonPath("$.content", `is`("my content")))
    }
}

NoteController

import fr.$$.$$.api.CreateNote
import fr.$$.$$.api.FetchNote
import fr.$$.$$.resources.Note
import fr.$$.$$.resources.toResource
import org.springframework.http.HttpStatus
import org.springframework.http.ResponseEntity
import org.springframework.web.bind.annotation.GetMapping
import org.springframework.web.bind.annotation.PostMapping
import org.springframework.web.bind.annotation.RestController
import java.net.URI

@RestController("/notes")
class NoteController(val createNote: CreateNote,
                     val fetchNote: FetchNote) {

    @GetMapping
    fun getAllNotes(): ResponseEntity<List<Note>> {
        return ResponseEntity(fetchNote.all().toResource(), HttpStatus.OK)
    }

    @PostMapping
    fun createNote(): ResponseEntity<Note> {
        val note = createNote.with("my content").toResource()
        return ResponseEntity.created(URI("")).body(note)
    }
}

SmartNotes应用测试

import org.junit.Test
import org.junit.jupiter.api.extension.ExtendWith
import org.springframework.boot.test.context.SpringBootTest
import org.springframework.boot.test.context.SpringBootTest.WebEnvironment.RANDOM_PORT
import org.springframework.test.context.junit.jupiter.SpringExtension

@ExtendWith(SpringExtension::class)
@SpringBootTest(webEnvironment = RANDOM_PORT)
class SmartNotesApplicationTest {

    @Test
    fun contextLoad() {

    }
}

提前致谢。

spring-mvc kotlin junit5
3个回答
2
投票

我注入

WebApplicationContext
,然后为每个测试构建一个新的
MockMvc

@SpringBootTest
class SomeTest {

    @Autowired
    lateinit var webApplicationContext: WebApplicationContext
    lateinit var mockMvc: MockMvc

    @BeforeEach
    fun beforeEach() {
        mockMvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build()
    }

    // Tests go here!
}

2
投票

感谢您的回答,我用 Spring Boot 2.2.6 将工作答案放在 Java 中:

AuthorController.class

import org.springframework.web.bind.annotation.*;

@RestController
@RequestMapping(path = "/authors")

public class AuthorController {
    @GetMapping("/health")
    public boolean healthcheck() {
        return true;
    }
}

AuthorControllerIT.class

import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
import org.springframework.test.web.servlet.result.MockMvcResultHandlers;
import org.springframework.test.web.servlet.result.MockMvcResultMatchers;

@SpringBootTest
@AutoConfigureMockMvc
class AuthorControllerIT {

    @Autowired
    private MockMvc mockMvc;

    @Test
    public void test_web_layer() throws Exception {
        mockMvc.perform(MockMvcRequestBuilders.get("/authors/health"))
                .andDo(MockMvcResultHandlers.print())
                .andExpect(MockMvcResultMatchers.status().isOk())
                .andExpect(MockMvcResultMatchers.content().string("true"));
    }
}

注: 您可以使用

@WebMvcTest(AuthorController.class)
代替
@SpringBootTest
+
AutoConfigureMockMvc

使用此注释,它将仅加载Web层。 如果您的控制器中有依赖项(服务、存储库...),您必须使用:

@MockBean
private MyService service;

0
投票

我想在这里写下这个,因为你可能会跳过@JB Nizet的评论(就像我最初做的那样)

确保您使用的是 JUnit 5 注释:

import org.junit.jupiter.api.Test;

代替 JUnit 4 注释:

import org.junit.Test;

切换到正确的注释应该可以解决您的问题。

© www.soinside.com 2019 - 2024. All rights reserved.