web-dev-qa-db-ja.com

Spring Boot + Thymeleafの@WebAppConfigurationおよび@ContextConfiguration

Spring Boot + Thymeleaf Webアプリケーションがある場合(これは、Springプロジェクトの gs-sumption-rest "初期"コードツリー とほぼ同じです):

├── pom.xml
└── src
    ├── main
    │   ├── Java
    │   │   └── hello
    │   │       ├── Application.Java
    │   │       ├── Config.Java
    │   │       └── Controller.Java
    │   └── resources
    │       └── templates
    │           └── index.html
    └── test
        └── Java
            └── hello
                └── ControllerTest.Java

...ユーザーは「HelloWorld!」で問題なく迎えられます。 http://localhost:8080/で、ただし、Springの「コンテキスト」の関連付けは、統合テスト(ControllerTest.Java)内では適用されないようです。

Java.lang.AssertionError: Status 
Expected :200
Actual   :404

プロジェクトレイアウト、および/または構成アノテーションの何が問題になっていますかテストで?

src/main/webapp/は、web.xmlWEB-INF/などとともに、意図的に欠落しています。ここでの目標は、アプリケーションのビューとコントローラーの開発をテストする統合テストで、最小限の構成を使用することです。

以下のGoryの詳細。 「テキストの壁」をお詫びします。


pom.xml

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.3.1.RELEASE</version>
</parent>

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-thymeleaf</artifactId>
    </dependency>
</dependencies>

Application.Java

package hello;

// ...

@SpringBootApplication
public class Application {

  public static void main(String[] args) throws Throwable {
    SpringApplication.run(Application.class, args);
  }
}

Controller.Java

package hello;

@org.springframework.stereotype.Controller
public class Controller {
}

Config.Java

package hello;

// ...

@Configuration
public class Config extends WebMvcConfigurerAdapter {

  @Override
  public void addViewControllers(ViewControllerRegistry registry) {
    registry.addViewController("/").setViewName("index");
  }
}

ControllerTest.Java

package hello;

// ...

@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
@ContextConfiguration(classes = Config.class)
public class ControllerTest {

  @Autowired
  private WebApplicationContext wac;

  private MockMvc mockMvc;

  @Before
  public void setup() {
    mockMvc = MockMvcBuilders.webAppContextSetup(wac).build();
  }

  @Test
  public void test() throws Exception {
    this.mockMvc
        .perform(get("/"))
        .andExpect(status().isOk());
  }
}

index.html

<!DOCTYPE html>
<html>
  <head>
    <title>Hello World!</title>
  </head>
  <body>
    <p>Hello world!</p>
  </body>
</html>
8
Tommy Stanton

私がそれを実現するのを手伝ってくれた@ M.Deinumに感謝します:

@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
@ContextConfiguration(classes = Config.class)
public class ControllerTest {

...あるべき:

@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
@SpringApplicationConfiguration(classes = Application.class)
public class ControllerTest {

@ContextConfigurationSpringでの統合テスト用ですが、@SpringApplicationConfigurationは、Spring Bootでの統合テスト用です。

後者の場合はJavadoc によると:

統合テスト用にApplicationContextをロードおよび構成する方法を決定するために使用されるクラスレベルのアノテーション。

標準の@ContextConfigurationに似ていますが、Spring BootのSpringApplicationContextLoaderを使用します。

10
Tommy Stanton
    package com.test;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.SpringApplicationConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

import netgloo.Application;

@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = Application.class)
public class SmokeTest {


    @Test
    public void contexLoads() throws Exception {
     System.out.println("Test");
    }
}
0
user2758406