Browse Source

Verify @⁠Mockito[Spy]Bean can mock/spy parameterized types

See gh-33742
pull/33793/head
Sam Brannen 1 year ago
parent
commit
0221471265
  1. 30
      spring-test/src/test/java/org/springframework/test/context/bean/override/example/ExampleGenericService.java
  2. 34
      spring-test/src/test/java/org/springframework/test/context/bean/override/example/ExampleGenericServiceCaller.java
  3. 33
      spring-test/src/test/java/org/springframework/test/context/bean/override/example/IntegerExampleGenericService.java
  4. 27
      spring-test/src/test/java/org/springframework/test/context/bean/override/example/StringExampleGenericService.java
  5. 67
      spring-test/src/test/java/org/springframework/test/context/bean/override/mockito/integration/MockitoBeanWithGenericsOnTestFieldForNewBeanIntegrationTests.java
  6. 74
      spring-test/src/test/java/org/springframework/test/context/bean/override/mockito/integration/MockitoSpyBeanWithGenericsOnTestFieldForExistingGenericBeanIntegrationTests.java

30
spring-test/src/test/java/org/springframework/test/context/bean/override/example/ExampleGenericService.java

@ -0,0 +1,30 @@ @@ -0,0 +1,30 @@
/*
* 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.example;
/**
* Example generic service interface for tests.
*
* @param <T> the generic type
* @author Phillip Webb
* @since 6.2
*/
public interface ExampleGenericService<T> {
T greeting();
}

34
spring-test/src/test/java/org/springframework/test/context/bean/override/example/ExampleGenericServiceCaller.java

@ -0,0 +1,34 @@ @@ -0,0 +1,34 @@
/*
* 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.example;
/**
* Example bean that has dependencies on parameterized {@link ExampleGenericService}
* collaborators.
*
* @author Sam Brannen
* @author Phillip Webb
* @since 6.2
*/
public record ExampleGenericServiceCaller(ExampleGenericService<Integer> integerService,
ExampleGenericService<String> stringService) {
public String sayGreeting() {
return "I say " + this.stringService.greeting() + " " + this.integerService.greeting();
}
}

33
spring-test/src/test/java/org/springframework/test/context/bean/override/example/IntegerExampleGenericService.java

@ -0,0 +1,33 @@ @@ -0,0 +1,33 @@
/*
* 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.example;
/**
* {@link ExampleGenericService} implementation for tests.
*
* @author Phillip Webb
* @author Sam Brannen
* @since 6.2
*/
public class IntegerExampleGenericService implements ExampleGenericService<Integer> {
@Override
public Integer greeting() {
return 123;
}
}

27
spring-test/src/test/java/org/springframework/test/context/bean/override/example/StringExampleGenericService.java

@ -0,0 +1,27 @@ @@ -0,0 +1,27 @@
/*
* 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.example;
/**
* {@link ExampleGenericService} implementation for tests.
*
* @author Sam Brannen
* @author Phillip Webb
* @since 6.2
*/
public record StringExampleGenericService(String greeting) implements ExampleGenericService<String> {
}

67
spring-test/src/test/java/org/springframework/test/context/bean/override/mockito/integration/MockitoBeanWithGenericsOnTestFieldForNewBeanIntegrationTests.java

@ -0,0 +1,67 @@ @@ -0,0 +1,67 @@
/*
* 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.bean.override.example.ExampleGenericService;
import org.springframework.test.context.bean.override.example.ExampleGenericServiceCaller;
import org.springframework.test.context.bean.override.mockito.MockitoBean;
import org.springframework.test.context.junit.jupiter.SpringJUnitConfig;
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.BDDMockito.given;
/**
* Tests that {@link MockitoBean @MockitoBean} on fields with generics can be used
* to inject new mock instances.
*
* @author Phillip Webb
* @author Sam Brannen
* @since 6.2
* @see MockitoSpyBeanWithGenericsOnTestFieldForExistingGenericBeanIntegrationTests
*/
@SpringJUnitConfig
class MockitoBeanWithGenericsOnTestFieldForNewBeanIntegrationTests {
@MockitoBean
ExampleGenericService<String> stringService;
@MockitoBean
ExampleGenericService<Integer> integerService;
@Autowired
ExampleGenericServiceCaller caller;
@Test
void testMocking() {
given(stringService.greeting()).willReturn("Hello");
given(integerService.greeting()).willReturn(42);
assertThat(caller.sayGreeting()).isEqualTo("I say Hello 42");
}
@Configuration(proxyBeanMethods = false)
@Import(ExampleGenericServiceCaller.class)
static class Config {
}
}

74
spring-test/src/test/java/org/springframework/test/context/bean/override/mockito/integration/MockitoSpyBeanWithGenericsOnTestFieldForExistingGenericBeanIntegrationTests.java

@ -0,0 +1,74 @@ @@ -0,0 +1,74 @@
/*
* 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.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.test.context.bean.override.example.ExampleGenericService;
import org.springframework.test.context.bean.override.example.ExampleGenericServiceCaller;
import org.springframework.test.context.bean.override.example.IntegerExampleGenericService;
import org.springframework.test.context.bean.override.example.StringExampleGenericService;
import org.springframework.test.context.bean.override.mockito.MockitoSpyBean;
import org.springframework.test.context.junit.jupiter.SpringJUnitConfig;
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.BDDMockito.then;
/**
* Tests that {@link MockitoSpyBean @MockitoSpyBean} on a field with generics can
* be used to replace an existing bean with matching generics.
*
* @author Phillip Webb
* @author Sam Brannen
* @since 6.2
* @see MockitoBeanWithGenericsOnTestFieldForNewBeanIntegrationTests
*/
@SpringJUnitConfig
class MockitoSpyBeanWithGenericsOnTestFieldForExistingGenericBeanIntegrationTests {
@MockitoSpyBean
ExampleGenericService<String> service;
@Autowired
ExampleGenericServiceCaller caller;
@Test
void testSpying() {
assertThat(caller.sayGreeting()).isEqualTo("I say Enigma 123");
then(service).should().greeting();
}
@Configuration(proxyBeanMethods = false)
@Import({ ExampleGenericServiceCaller.class, IntegerExampleGenericService.class })
static class SpyBeanOnTestFieldForExistingBeanConfig {
@Bean
ExampleGenericService<String> simpleExampleStringGenericService() {
// In order to trigger the issue, we need a method signature that returns the
// generic type instead of the actual implementation class.
return new StringExampleGenericService("Enigma");
}
}
}
Loading…
Cancel
Save