Rename integration_test_properties to mockmvc_unittest_properties#3914
Merged
Conversation
The file name integration_test_properties.yml was confusing since it was only used during some unit tests, mostly mockmvc (via @DefaultTestContext) and: - TestZonifyGroupSchema_V2_4_1 - Database schema/migration test - UaaBootServerCustomizerTest - Boot server configuration test - SmtpConfigurationTest - SMTP configuration test (uses nested @DefaultTestContext) - YamlConfigurationValidationTests - YAML validation test (sets UAA_CONFIG_URL directly)
Contributor
There was a problem hiding this comment.
Pull request overview
Renames the test-only UAA YAML configuration file to better reflect its primary usage by MockMvc-focused unit/component tests (e.g., via @DefaultTestContext), and updates references/documentation accordingly.
Changes:
- Add
uaa/src/test/resources/mockmvc_unittest_properties.ymlas the new canonical test config YAML. - Update tests/initializers to point
UAA_CONFIG_URLat the renamed YAML. - Update zone-path feature documentation to reference the new file name.
Reviewed changes
Copilot reviewed 3 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| uaa/src/test/resources/mockmvc_unittest_properties.yml | Provides the renamed YAML configuration used by MockMvc/unit-style tests. |
| uaa/src/test/java/org/cloudfoundry/identity/uaa/YamlConfigurationValidationTests.java | Updates UAA_CONFIG_URL to load the renamed YAML in validation tests. |
| uaa/src/test/java/org/cloudfoundry/identity/uaa/DefaultTestContext.java | Updates the UAA_CONFIG_URL initializer to use the renamed YAML for @DefaultTestContext. |
| docs/zone-path-feature.md | Replaces references to the old YAML name with the new one in zone-path documentation. |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
adrianhoelzl-sap
approved these changes
May 18, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The file name integration_test_properties.yml was confusing since it was only used during some unit tests, mostly mockmvc (via @DefaultTestContext) and: