forked from spring-projects/spring-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Verify @MockitoSpyBean can be used with circular dependencies
- Loading branch information
Showing
2 changed files
with
184 additions
and
0 deletions.
There are no files selected for viewing
91 changes: 91 additions & 0 deletions
91
...ntegration/MockitoSpyBeanAndCircularDependenciesWithAutowiredSettersIntegrationTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
/* | ||
* Copyright 2002-2024 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.springframework.test.context.bean.override.mockito.integration; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.context.annotation.Import; | ||
import org.springframework.test.context.aot.DisabledInAotMode; | ||
import org.springframework.test.context.bean.override.mockito.MockitoSpyBean; | ||
import org.springframework.test.context.junit.jupiter.SpringJUnitConfig; | ||
|
||
import static org.mockito.BDDMockito.then; | ||
|
||
/** | ||
* Tests that {@link MockitoSpyBean @MockitoSpyBean} can be used to replace an | ||
* existing bean with circular dependencies with {@link Autowired @Autowired} | ||
* setter methods. | ||
* | ||
* @author Andy Wilkinson | ||
* @author Sam Brannen | ||
* @since 6.2 | ||
* @see MockitoSpyBeanAndCircularDependenciesWithLazyResolutionProxyIntegrationTests | ||
*/ | ||
@SpringJUnitConfig | ||
@DisabledInAotMode // Circular dependencies cannot be resolved in AOT mode unless a @Lazy resolution proxy is used. | ||
class MockitoSpyBeanAndCircularDependenciesWithAutowiredSettersIntegrationTests { | ||
|
||
@MockitoSpyBean | ||
One one; | ||
|
||
@Autowired | ||
Two two; | ||
|
||
|
||
@Test | ||
void beanWithCircularDependenciesCanBeSpied() { | ||
two.callOne(); | ||
then(one).should().doSomething(); | ||
} | ||
|
||
|
||
@Configuration | ||
@Import({ One.class, Two.class }) | ||
static class Config { | ||
} | ||
|
||
static class One { | ||
|
||
@SuppressWarnings("unused") | ||
private Two two; | ||
|
||
@Autowired | ||
void setTwo(Two two) { | ||
this.two = two; | ||
} | ||
|
||
void doSomething() { | ||
} | ||
} | ||
|
||
static class Two { | ||
|
||
private One one; | ||
|
||
@Autowired | ||
void setOne(One one) { | ||
this.one = one; | ||
} | ||
|
||
void callOne() { | ||
this.one.doSomething(); | ||
} | ||
} | ||
|
||
} |
93 changes: 93 additions & 0 deletions
93
...gration/MockitoSpyBeanAndCircularDependenciesWithLazyResolutionProxyIntegrationTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
/* | ||
* Copyright 2002-2024 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.springframework.test.context.bean.override.mockito.integration; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.context.annotation.Import; | ||
import org.springframework.context.annotation.Lazy; | ||
import org.springframework.test.context.bean.override.mockito.MockitoSpyBean; | ||
import org.springframework.test.context.junit.jupiter.SpringJUnitConfig; | ||
|
||
import static org.mockito.BDDMockito.then; | ||
|
||
/** | ||
* Tests that {@link MockitoSpyBean @MockitoSpyBean} can be used to replace an | ||
* existing bean with circular dependencies with {@link Autowired @Autowired} | ||
* setter methods and a {@link Lazy @Lazy} resolution proxy. | ||
* | ||
* <p>In contrast to {@link MockitoSpyBeanAndCircularDependenciesWithAutowiredSettersIntegrationTests}, | ||
* this test class works in AOT mode. | ||
* | ||
* @author Sam Brannen | ||
* @author Andy Wilkinson | ||
* @since 6.2 | ||
* @see MockitoSpyBeanAndCircularDependenciesWithAutowiredSettersIntegrationTests | ||
*/ | ||
@SpringJUnitConfig | ||
class MockitoSpyBeanAndCircularDependenciesWithLazyResolutionProxyIntegrationTests { | ||
|
||
@MockitoSpyBean | ||
One one; | ||
|
||
@Autowired | ||
Two two; | ||
|
||
|
||
@Test | ||
void beanWithCircularDependenciesCanBeSpied() { | ||
two.callOne(); | ||
then(one).should().doSomething(); | ||
} | ||
|
||
|
||
@Configuration | ||
@Import({ One.class, Two.class }) | ||
static class Config { | ||
} | ||
|
||
static class One { | ||
|
||
@SuppressWarnings("unused") | ||
private Two two; | ||
|
||
@Autowired | ||
void setTwo(@Lazy Two two) { | ||
this.two = two; | ||
} | ||
|
||
void doSomething() { | ||
} | ||
} | ||
|
||
static class Two { | ||
|
||
private One one; | ||
|
||
@Autowired | ||
void setOne(One one) { | ||
this.one = one; | ||
} | ||
|
||
void callOne() { | ||
this.one.doSomething(); | ||
} | ||
} | ||
|
||
} |