web-dev-qa-db-fra.com

Spring Boot 1.4 Testing: Erreur de configuration: plusieurs déclarations de @BootstrapWith trouvées

En suivant le document officiel ici: http://docs.spring.io/spring-boot/docs/1.4.0.M2/reference/htmlsingle/#Testing

je voulais tester l'une de mes méthodes d'API REST comme celle-ci:

@RunWith(SpringRunner.class)
@WebMvcTest(LoginController.class)
@SpringBootTest(classes = Application.class)
public class AuthorizationServiceTest {
    @Autowired
    private TestRestTemplate restTemplate;

    @Test
    public void test() {
        Object returnedObject=his.restTemplate.getForObject("/login", Object.class);
    }
}

Comme indiqué dans le doc:

L'algorithme de recherche fonctionne à partir du package contenant le test jusqu'à ce qu'il trouve une @SpringBootApplication ou @SpringBootConfiguration classe annotée. Tant que vous avez structuré votre code en une sensible votre configuration principale est généralement trouvée.

J'ai structuré mon code correctement (au moins je pense):

AuthorizationService: est sous le package com.xxx.yyy.zzz.authorization; 

AuthorizationServiceTest: se trouve sous le package com.xxx.yyy.zzz.authorizationTest;

Je reçois cette exception (trace complète):

Java.lang.IllegalStateException: Configuration error: found multiple declarations of @BootstrapWith for test class [com.orangeraid.rasberry.gateway.authorizationTest.AuthorizationServiceTest]: [@org.springframework.test.context.BootstrapWith(value=class org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTestContextBootstrapper), @org.springframework.test.context.BootstrapWith(value=class org.springframework.boot.test.context.SpringBootTestContextBootstrapper)]
    at org.springframework.test.context.BootstrapUtils.resolveExplicitTestContextBootstrapper(BootstrapUtils.Java:155)
    at org.springframework.test.context.BootstrapUtils.resolveTestContextBootstrapper(BootstrapUtils.Java:126)
    at org.springframework.test.context.TestContextManager.<init>(TestContextManager.Java:105)
    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTestContextManager(SpringJUnit4ClassRunner.Java:152)
    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.<init>(SpringJUnit4ClassRunner.Java:143)
    at org.springframework.test.context.junit4.SpringRunner.<init>(SpringRunner.Java:49)
    at Sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at Sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.Java:62)
    at Sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.Java:45)
    at Java.lang.reflect.Constructor.newInstance(Constructor.Java:422)
    at org.junit.internal.builders.AnnotatedBuilder.buildRunner(AnnotatedBuilder.Java:104)
    at org.junit.internal.builders.AnnotatedBuilder.runnerForClass(AnnotatedBuilder.Java:86)
    at org.junit.runners.model.RunnerBuilder.safeRunnerForClass(RunnerBuilder.Java:59)
    at org.junit.internal.builders.AllDefaultPossibilitiesBuilder.runnerForClass(AllDefaultPossibilitiesBuilder.Java:26)
    at org.junit.runners.model.RunnerBuilder.safeRunnerForClass(RunnerBuilder.Java:59)
    at org.junit.internal.requests.ClassRequest.getRunner(ClassRequest.Java:33)
    at org.Eclipse.jdt.internal.junit4.runner.JUnit4TestLoader.createUnfilteredTest(JUnit4TestLoader.Java:84)
    at org.Eclipse.jdt.internal.junit4.runner.JUnit4TestLoader.createTest(JUnit4TestLoader.Java:70)
    at org.Eclipse.jdt.internal.junit4.runner.JUnit4TestLoader.loadTests(JUnit4TestLoader.Java:43)
    at org.Eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.Java:444)
    at org.Eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.Java:675)
    at org.Eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.Java:382)
    at org.Eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.Java:192)

S'il vous plaît aidez-moi avec cela, j'ai déjà passé plus de 2-3 heures sans aucune chance.

Merci.

16
lesnar

Cette exception se produit lorsque le test de printemps ne trouve pas la classe de configuration principale . Essayez d’ajouter @ContextConfiguration anootation à votre classe de test. Suivez la documentation de test du ressort pour plus de détails (section Détection de la configuration de test )

Mon exemple de classe de test est comme ceci:

@RunWith(SpringRunner.class)
@ContextConfiguration(classes=Application.class)
@WebMvcTest(MyController.class)
public class MyConrollerTests {
    ...
}
14
mahkras

Supprimez simplement le @SpringBootTest et tout fonctionne correctement. J'ai eu le même problème avec l'utilisation de @SpringBootTest et de @DataJpaTest, cette erreur est survenue lorsque j'ai mis à niveau la version springboot du parent pom.xml vers la version 2.1.0 ci-dessous. Lorsque j'utilisais la version 2.0.5, cette erreur ne se produisait pas.

@RunWith(SpringRunner.class)
//@SpringBootTest//(classes = KalahApplication.class)
// DataJpaTest supports rollback after running every test case
@DataJpaTest
public class GameRepositoryTest {

pom.xml

   <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.0.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
   </parent>
8
Nesrin

Je sais qu'il est trop tard pour répondre à cette question, mais cela pourrait aider quelqu'un à l'avenir, alors ... j'avais le même problème et après quelques recherches, j'ai constaté qu'il ne devrait pas y avoir @WebMvcTest s'il y a @SpringBootTest. Il suffit donc de supprimer @WebMvcTest et @SpringBootTest se charge du reste.

0
jalil