mavenベースのSpring Bootプロジェクトを次の2つのモジュールに分割しました。
_ProjectRoot
-SharedModel
-Application
--main
---Java
----com....(Application.Java)
-----com....(ClassToAutowire.Java)
--test
----com....(ApplicationTest.Java)
-----com....(ClassToAutowireTest.Java)
_
テストクラスは次のようになります。
_@RunWith(SpringRunner.class)
public class ClassToAutowireTest extends BaseTest {
@Autowired
private ClassToAutowire classToAutowire;
@Before
public void setup() throws IOException {
....
}
@Test
public void someTest() {
....
assertEquals(this.classToAutowire.isSupported(this.message), true);
}
}
_
ClassToAutowireは次のようになります。
_@Component
public class ClassToAutowire {
private ConfigurationService configurationService;
@Autowired
public ClassToAutowire(ConfigurationService configurationService) {
this.configurationService = configurationService;
}
....
}
_
Application.Javaは次のようになります。
_@SpringBootApplication
@EnableRetry
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
_
また、ApplicationTest.Javaは次のようになります。
_@SpringBootTest
@RunWith(SpringRunner.class)
public class ApplicationTests {
@Test
@Ignore
public void contextLoads() {
// °º¤ø,¸¸,ø¤º°`°º¤ø,¸,ø¤°º¤ø,¸¸,ø¤º°`°º¤ø,¸
}
}
_
この単体テストを実行すると、次のトレースが得られます。
_ 2018-06-27 15:02:37.835 ERROR [ main] context.TestContextManager.prepareTestInstance(TestContextManager.Java:234): Caught exception while allowing TestExecutionListener [org.springframework.test.context.support.DependencyInjectionTestExecutionListener@57c03d88] to prepare test instance [com.some.package.structure.ClassToAutowireTest@16aa8654]
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'com.some.package.structure.ClassToAutowireTest': Unsatisfied dependency expressed through field 'classToAutowire'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.some.package.structure.ClassToAutowire' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.Java:588)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.Java:88)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.Java:366)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.Java:1264)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireBeanProperties(AbstractAutowireCapableBeanFactory.Java:386)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DependencyInjectionTestExecutionListener.Java:118)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.Java:83)
at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.Java:230)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest(SpringJUnit4ClassRunner.Java:228)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner$1.runReflectiveCall(SpringJUnit4ClassRunner.Java:287)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.Java:12)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.methodBlock(SpringJUnit4ClassRunner.Java:289)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.Java:247)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.Java:94)
at org.junit.runners.ParentRunner$3.run(ParentRunner.Java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.Java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.Java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.Java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.Java:268)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.Java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.Java:70)
at org.junit.runners.ParentRunner.run(ParentRunner.Java:363)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.Java:191)
at org.junit.runner.JUnitCore.run(JUnitCore.Java:137)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.Java:68)
at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.Java:47)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.Java:242)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.Java:70)
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.some.package.structure.ClassToAutowire' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
at org.springframework.beans.factory.support.DefaultListableBeanFactory.raiseNoMatchingBeanFound(DefaultListableBeanFactory.Java:1493)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.Java:1104)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.Java:1066)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.Java:585)
... 27 more
_
_@RuneWith
_注釈の下に注釈@SpringBootTest(classes={ClassToAutowire.class})
を追加することでこの問題を回避できるように見えますが、単体テストはSpringBootアプリ全体をロードしてテストを実行するようです。
私の質問は:
1)問題を回避するためにこの追加の注釈が必要なのはなぜですか? Application/main/Java/....(Application.Javaに基づく)全体をスキャンすることになっているのに、なぜコンポーネントを検出しないのですか?
2)単体テストを高速化するために最小の負荷でそれを行うにはどうすればよいですか?
テストに@ContextConfiguration(classes = ClassToAutowire.class)
を提供すると、そのクラスでコンテキストが提供されます。 @SpringBootTest
注釈は、完全なコンテキストをロードするために統合テストで使用されます。 @ContextConfiguration
注釈を使用すると、コンテキストの一部のみをロードできます。
@SpringBootTest
は、アプリケーションのさまざまなレイヤーを統合することを意味する統合テストに使用されます。これがコンテキスト全体をロードする理由です。
コントローラーのみの単体テストを行う場合は、@WebMvcTest
およびmock必要な他のすべてのレイヤーを使用します。
作業例を含むすべてのレイヤーの完全なユニットテストについては、以下を参照してください。 Springでのテスト
取得最終日:2018/27/06
テストクラスをcomパッケージに移動することで、このエラーを解決しました。テストフォルダーの構造は次のようになります
--/test
--/--/Java
--/--/--/com
--/--/--/--/TestClass
この構造が大丈夫かどうかはわかりませんが、これは機能します。