web-dev-qa-db-ja.com

スプリングブートテストの構成

私は次のようなメインクラスのスプリングブートアプリケーションを持っています:

@SpringBootApplication
public class Application {

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

次に、サービスをテストし、基本テストクラスを作成します。

@SpringApplicationConfiguration(Application.class)
public abstract class TestBase {
}

テストを実行すると、例外が発生します。

Caused by: Java.lang.IllegalArgumentException: Can not load an ApplicationContext with a NULL 'contextLoader'. Consider annotating your test class with @ContextConfiguration.
    at org.springframework.util.Assert.notNull(Assert.Java:115)
    at org.springframework.test.context.TestContext.loadApplicationContext(TestContext.Java:117)
    at org.springframework.test.context.TestContext.getApplicationContext(TestContext.Java:148)

次に、ContextConfigurationを使用して基本テストクラスを変更します

@ContextConfiguration(classes = Application.class)
public abstract class TestBase {
}

今回は、DataSourceの初期化エラーが発生します。最初のケースで失敗する理由と、2番目のケースでデータソースを設定したapplication.propertiesが読み込まれないのはなぜかと思います。

ありがとうございました!

13
sansari

そんな感じ:

@RunWith(SpringRunner.class)
@SpringBootTest(classes = Application.class)
public class ApplicationTest{

   @Autowire
   Foo foo //whatever you are testing

   @Test
   public void FooTest() throws Exception{
     Foo f = foo.getFooById("22");
     assertEquals("9B". f.getCode); 
   }
 //TODO look into MockMVC for testing services
}
8
Drew1208

を使用したテストの例

  • 春のブーツ
  • スプリングブートテストの構成
  • JUnit 5
  • FreeMarker

以下のように、このすべてを簡単に見つけることはできません:)見つけるのに長い時間がかかりました。

構成

@TestConfiguration
@PropertySource(value = "classpath:test.properties", encoding = "UTF-8")
public class GlobalConfig {

    @Bean(name = "JsonMapper")
    public JsonMapper jsonMapper() {

        return new JsonMapper();
    }

    @Bean(name = "ObjectMapper")
    public ObjectMapper objectMapper() {

        return new ObjectMapper();
    }

    @Bean(name = "Mapper")
    public Mapper dozer() {

        return new DozerBeanMapper();
    }

    @Bean(name = "Validator")
    public Validator validator() {

        return new DefaultValidatorAdapter();
    }

}

実際のテストファイル

import freemarker.template.Configuration;
import global.GlobalConfig;
import org.Apache.commons.io.FileUtils;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.TestInstance;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit.jupiter.SpringExtension;

import Java.io.File;
import Java.nio.file.Files;
import Java.nio.file.Paths;
import Java.util.Arrays;
import Java.util.List;


@ExtendWith(SpringExtension.class)
@SpringBootTest(classes = {GlobalConfig.class, MessagePersistManager.class, TemplateManager.class, FileOperationsManager.class, Configuration.class})
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
class MessagePersistManagerTest {

    @Autowired
    private MessagePersistManager messagePersistManager;

    @Autowired
    private TemplateManager templateManager;

    @Autowired
    private FileOperationsManager fileOperationsManager;

    @Autowired
    private Configuration freemarkerConfiguration;


    @Value("${channel.outbound.ftp.local.directory}")
    private String sepaFilesBasePath;

    @BeforeAll
    private void init() throws Exception {

        System.out.println("Creating Base Dir=" + sepaFilesBasePath);
        Files.createDirectories(Paths.get(sepaFilesBasePath));

        /* FreeMarker Configuration */
        freemarkerConfiguration.setClassForTemplateLoading(this.getClass(), "/templates/");

    }


    @AfterAll
    private void destroy() throws Exception {

        System.out.println("Deleting Base Dir=" + sepaFilesBasePath);
        FileUtils.deleteDirectory(new File(sepaFilesBasePath));

    }


    @Test
    void persistSepaFile() {
        messagePersistManager.persistSepaFile("sepaWinnings.xml", generateData());
        System.out.println("e");
        assert (true);
    }
5
GOXR3PLUS
2
zeagord

ServletInitializerが別のパッケージにあったため、同じ問題に直面しました。パッケージ構造を修正した後、問題は解決しました。

0
Deepak Bhatia