Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

@TestBean factory method not found in multi-level @Nested hierarchy #32951

Closed
sbrannen opened this issue Jun 4, 2024 · 0 comments
Closed

@TestBean factory method not found in multi-level @Nested hierarchy #32951

sbrannen opened this issue Jun 4, 2024 · 0 comments
Assignees
Labels
in: test Issues in the test module type: bug A general bug
Milestone

Comments

@sbrannen
Copy link
Member

sbrannen commented Jun 4, 2024

Overview

Currently, a @TestBean factory method will be found in the directly enclosing class for a @Nested test class; however, such a factory method will not be found in the enclosing class of the enclosing class, etc.

In other words, the search algorithm for a factory method must be recursive when searching enclosing classes for @Nested test classes.

Example

NestedLevel1 passes because the testField1() factory method is found, but NestedLevel2 fails because the testField2() factory method cannot be found.

@SpringJUnitConfig
class MultipleNestingLevels {

	static String testField1() {
		return "one";
	}

	static String testField2() {
		return "two";
	}

	@Nested
	class NestedLevel1 {

		@TestBean(name = "field1", methodName = "testField1")
		String field1;

		@Test
		void test() {
			assertThat(field1).isEqualTo("one");
		}

		@Nested
		class NestedLevel2 {

			@TestBean(name = "field2", methodName = "testField2")
			String field2;

			@Test
			void test() {
				assertThat(field1).isEqualTo("one");
				assertThat(field2).isEqualTo("two");
			}
		}
	}

	@Configuration
	static class Config {
		@Bean
		String field1() {
			return "replace me 1";
		}

		@Bean
		String field2() {
			return "replace me 2";
		}
	}

}
@sbrannen sbrannen added in: test Issues in the test module type: bug A general bug labels Jun 4, 2024
@sbrannen sbrannen added this to the 6.2.0-M4 milestone Jun 4, 2024
@sbrannen sbrannen self-assigned this Jun 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in: test Issues in the test module type: bug A general bug
Projects
None yet
Development

No branches or pull requests

1 participant