diff --git a/src/testWithSpringBoot_3_4/java/org/openrewrite/java/spring/boot3/ConfigurationPropertiesDefaultValueTest.java b/src/testWithSpringBoot_3_4/java/org/openrewrite/java/spring/boot3/ConfigurationPropertiesDefaultValueTest.java new file mode 100644 index 000000000..335e2acea --- /dev/null +++ b/src/testWithSpringBoot_3_4/java/org/openrewrite/java/spring/boot3/ConfigurationPropertiesDefaultValueTest.java @@ -0,0 +1,64 @@ +/* + * Copyright 2024 the original author or authors. + *
+ * Licensed under the Moderne Source Available License (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + *
+ * https://docs.moderne.io/licensing/moderne-source-available-license + *
+ * 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.openrewrite.java.spring.boot3; + +import org.junit.jupiter.api.Test; +import org.openrewrite.DocumentExample; +import org.openrewrite.java.JavaParser; +import org.openrewrite.test.RecipeSpec; +import org.openrewrite.test.RewriteTest; + +import static org.openrewrite.java.Assertions.java; + +class ConfigurationPropertiesDefaultValueTest implements RewriteTest { + + @Override + public void defaults(RecipeSpec spec) { + spec.parser(JavaParser.fromJavaVersion() + .classpath("spring-boot") + ); + } + + @DocumentExample + @Test + void lstContainsErroneousNodes() { + rewriteRun( + //language=java + java( + """ + import org.springframework.boot.context.properties.ConfigurationProperties; + import org.springframework.boot.context.properties.bind.DefaultValue; + + @ConfigurationProperties("nl.tubby") + record TestTubbyProperties( + @DefaultValue("https://www.tubby.nl") String url + ) { + } + """, + """ + import org.springframework.boot.context.properties.ConfigurationProperties; + import org.springframework.boot.context.properties.bind.DefaultValue; + + @ConfigurationProperties("nl.tubby") + record TestTubbyProperties( + @DefaultValue("https://www.tubby.nl") String url + ) { + } + """ + ) + ); + } +}