skip authentication

This commit is contained in:
myh 2023-12-01 02:08:02 +08:00
parent 82b58576b4
commit cc5c20c652
2 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,7 @@ import com.fasterxml.jackson.databind.ObjectWriter;
import jakarta.annotation.Resource; import jakarta.annotation.Resource;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
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.http.MediaType; import org.springframework.http.MediaType;
@ -16,6 +17,7 @@ import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
import org.springframework.test.web.servlet.result.MockMvcResultMatchers; import org.springframework.test.web.servlet.result.MockMvcResultMatchers;
@AutoConfigureMockMvc(addFilters = false)
@WebMvcTest(MerchantsController.class) @WebMvcTest(MerchantsController.class)
class MerchantsControllerTests { class MerchantsControllerTests {
@Resource @Resource

View File

@ -9,6 +9,7 @@ import jakarta.annotation.Resource;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
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.http.MediaType; import org.springframework.http.MediaType;
@ -20,6 +21,7 @@ import org.springframework.test.web.servlet.result.MockMvcResultMatchers;
import java.util.logging.Logger; import java.util.logging.Logger;
@AutoConfigureMockMvc(addFilters = false)
@WebMvcTest(UsersController.class) @WebMvcTest(UsersController.class)
class UsersControllerTests { class UsersControllerTests {
@Resource @Resource