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

Support property placeholders in @Sql script paths #33114

Closed
kistlers opened this issue Jun 28, 2024 · 2 comments
Closed

Support property placeholders in @Sql script paths #33114

kistlers opened this issue Jun 28, 2024 · 2 comments
Assignees
Labels
in: test Issues in the test module type: enhancement A general enhancement
Milestone

Comments

@kistlers
Copy link

The flyway auto-configuration in Spring Boot has the very nice feature of replacing {vendor} in any spring.flyway.locations path with database-specific values to support multiple databases easily.

The code for those replacements is in FlywayAutoConfiguration.LocationResolver: https://github.com/spring-projects/spring-boot/blob/70a5dc64f6b4160ec9c20d48d84a0869ef735df8/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/flyway/FlywayAutoConfiguration.java#L361

On the other hand, we have the convenient @Sql annotation to run SQL scripts before tests are running. It would be very nice, if {vendor} could also be part of those paths given to Sql.scripts with the same replacement logic as flyway.

I have a specific use case for that: Currently, we have two systems in place at our company (a shared library and a dedicated application) that are built to run on multiple database systems (Postgres, MySQL, MariaDB, and HsqlDB). We have set up maven, such that some tests are run multiple times with different databases in test containers using multiple maven-surefire-plugin executions. It would be great if I could still make use of the @SQL annotation in that case with the vendor replacement.

@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged or decided on label Jun 28, 2024
@sbrannen sbrannen added in: data Issues in data modules (jdbc, orm, oxm, tx) in: test Issues in the test module labels Jun 28, 2024
@sbrannen sbrannen changed the title Feature Request: Support {vendor} replacement in @Sql annotation Support {vendor} replacement in @Sql annotation Jun 28, 2024
@snicoll snicoll removed the in: data Issues in data modules (jdbc, orm, oxm, tx) label Jun 28, 2024
@sbrannen sbrannen added the in: data Issues in data modules (jdbc, orm, oxm, tx) label Jun 28, 2024
@sbrannen sbrannen self-assigned this Jun 28, 2024
@snicoll snicoll removed the in: data Issues in data modules (jdbc, orm, oxm, tx) label Jun 28, 2024
sbrannen added a commit to sbrannen/spring-framework that referenced this issue Jul 3, 2024
@sbrannen sbrannen added type: enhancement A general enhancement and removed status: waiting-for-triage An issue we've not yet triaged or decided on labels Jul 3, 2024
@sbrannen sbrannen added this to the 6.2.0-M5 milestone Jul 3, 2024
@sbrannen sbrannen changed the title Support {vendor} replacement in @Sql annotation Support placeholders in @Sql script paths Jul 3, 2024
@sbrannen
Copy link
Member

sbrannen commented Jul 3, 2024

Hi @kistlers,

Congratulations on submitting your first issue for the Spring Framework! 👍

That's an interesting idea.

Unfortunately, the {vendor} feature of Spring Boot's Flyway support is based on Spring Boot's DatabaseDriver enum which is specific to Spring Boot.

Thus, we cannot rely on that within the spring-test module.

In addition, we do not intend to introduce any comparable functionality within the core Spring Framework.

Instead, we recommend the use of bean definition profiles for controlling which DataSource to use for a given test suite, and you can associate properties with such profiles.

The only piece of the puzzle missing is the ability to use property placeholders (${...}) within the script paths you supply to @Sql.

In light of that, I've decided to repurpose this issue to address that shortcoming.

You can view a proof of concept here: main...sbrannen:spring-framework:issues/gh-33114-placeholders-in-Sql-script-paths

There you can see a "classpath:org/springframework/test/context/jdbc/${vendor}/data.sql" @Sql script location which uses a ${vendor} property placeholder analogous to the {vendor} placeholder you proposed.

@sbrannen sbrannen changed the title Support placeholders in @Sql script paths Support property placeholders in @Sql script paths Jul 3, 2024
@kistlers
Copy link
Author

kistlers commented Jul 3, 2024

Thanks, that works for me!

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: enhancement A general enhancement
Projects
None yet
Development

No branches or pull requests

4 participants