ν’€μŠ€νƒ μ›ΉπŸŒ 개발자 지망생 πŸ§‘πŸ½β€πŸ’»
βž• 인곡지λŠ₯ 관심 πŸ€–


Categories


Recent views

  • 1
  • 2
  • 3
  • 4
  • 5

Spring5-ν…ŒμŠ€νŠΈ

  1. κΈ°λ³Έ ν…ŒμŠ€νŠΈ 파일
    • μŠ€ν”„λ§ MVC ν…ŒμŠ€νŠΈ μ½”λ“œ

      Spring5-ν…ŒμŠ€νŠΈ

      πŸ—£οΈ 좜처

      _ 초보 μ›Ή 개발자λ₯Ό μœ„ν•œ μŠ€ν”„λ§ 5 ν”„λ‘œκ·Έλž˜λ° μž…λ¬Έ _와 μŠ€ν”„λ§ 인 μ•‘μ…˜ 의 λ‚΄μš©μ„ λ°”νƒ•μœΌλ‘œ μ •λ¦¬ν•œ λ‚΄μš©μž…λ‹ˆλ‹€.

      Spring bootλ₯Ό μ΄μš©ν•˜λ©΄ JUnit을 μ΄μš©ν•œ ν…ŒμŠ€νŒ… μ½”λ“œλ₯Ό μž‘μ„±ν•  수 μžˆλ‹€.

      κΈ°λ³Έ ν…ŒμŠ€νŠΈ 파일

      🧾️ src/test/java/Sp5ChapbApplicationTests.java

      첫 μŠ€ν”„λ§ λΆ€νŠΈ ν”„λ‘œμ νŠΈ μ‹œμž‘ν•˜λ©΄ μ•„λž˜μ™€ 같은 κΈ°λ³Έ ν…ŒμŠ€νŠΈ μ½”λ“œκ°€ λ‚˜μ˜¨λ‹€.

      package sp5chapb;
      
      import org.junit.jupiter.api.Test;
      import org.springframework.boot.test.context.SpringBootTest;
      import static org.junit.jupiter.api.Assertions.*;
      
      @SpringBootTest // Junit으둜 μŠ€ν”„λ§ λΆ€νŠΈ ν…ŒμŠ€νŠΈ μ‹œμž‘
      class Sp5ChapbApplicationTests {
      
      	@Test // ν…ŒμŠ€νŠΈ ν•­λͺ©
      	void contextLoads() {
      	// 아무것도 μ—†μœΌλ©΄ λ‹¨μˆœ μŠ€ν”„λ§ μ•± μ»¨ν…μŠ€νŠΈ λ‘œλ“œ
      	fail("Not yet implemented"); //ν…ŒμŠ€νŠΈ μ‹€νŒ¨
      	}
      
      }
      

      Spring suite와 Spring bootλ₯Ό 같이 μ‚¬μš©ν•˜λ©΄ λ‚΄μž₯된 JUnit을 톡해 Run As-> Junit Test둜 ν…ŒμŠ€νŠΈ κ°€λŠ₯ν•˜λ‹€.
      이후 μ‹€νŒ¨μ™€ 성곡 갯수λ₯Ό λΉ„κ΅ν•˜κ³  μ‹€νŒ¨ 원인을 좜λ ₯ν•΄μ€€λ‹€.

      μŠ€ν”„λ§ MVC ν…ŒμŠ€νŠΈ μ½”λ“œ

      🧾️ 컨트둀러 ν…ŒμŠ€νŒ… μ½”λ“œ
      package tacos;
      import static org.hamcrest.CoreMatchers.containsString;
      import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
      import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content;
      import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
      import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.view;
      
      import org.junit.jupiter.api.Test;
      import org.springframework.beans.factory.annotation.Autowired;
      import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;
      import org.springframework.test.web.servlet.MockMvc;
      
      @WebMvcTest(HomeController.class) // ν…ŒμŠ€νŠΈν•  컨트둀러 지정
      class HomeControllerTest {
      	
      	@Autowired
      	private MockMvc mockMvc; // μ‹€μ œ μ„œλ²„ λŒ€μ‹  κ°€μ§œ μš”μ²­μ„ 보낼 빈 객체 μ£Όμž…
      	
      	@Test // ν•˜λ‚˜μ˜ ν…ŒμŠ€νŠΈ ν•­λͺ©μ„ μ •μ˜
      	public void testHomePage() throws Exception {
      		mockMvc.perform(get("/")) // μš”μ²­μ„ 생성
      			.andExpect(status().isOk()) // status 체크
      			.andExpect(view().name("home")) // 뷰 체크
      			.andExpect(content().string(containsString("Welcome to..."))); // νŽ˜μ΄μ§€ λ‚΄λΆ€μ˜ λ‚΄μš© 검색
      	}
      }
      
      • @WebMvcTestλŠ” μŠ€ν”„λ§ MVCλ₯Ό ν…ŒμŠ€νŠΈν•˜κΈ° μœ„ν•œ μŠ€ν”„λ§ λΆ€νŠΈμ˜ 제곡 μ–΄λ…Έν…Œμ΄μ…˜μ΄λ‹€.