forked from spring-projects/spring-boot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Throw dedicated exception if bundle content is not watchable
This also adds a FailureAnalyzer which prints a helpful message how to fix that problem. Closes spring-projectsgh-38903
- Loading branch information
1 parent
0757857
commit 8a3b0cd
Showing
7 changed files
with
187 additions
and
23 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
...n/java/org/springframework/boot/autoconfigure/ssl/BundleContentNotWatchableException.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* Copyright 2012-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.boot.autoconfigure.ssl; | ||
|
||
/** | ||
* Thrown when a bundle content location is not watchable. | ||
* | ||
* @author Moritz Halbritter | ||
*/ | ||
class BundleContentNotWatchableException extends RuntimeException { | ||
|
||
private final BundleContentProperty property; | ||
|
||
BundleContentNotWatchableException(BundleContentProperty property) { | ||
super("The content of '%s' is not watchable. Only 'file:' resources are watchable, but '%s' has been set" | ||
.formatted(property.name(), property.value())); | ||
this.property = property; | ||
} | ||
|
||
private BundleContentNotWatchableException(String bundleName, BundleContentProperty property, Throwable cause) { | ||
super("The content of '%s' from bundle '%s' is not watchable'. Only 'file:' resources are watchable, but '%s' has been set" | ||
.formatted(property.name(), bundleName, property.value()), cause); | ||
this.property = property; | ||
} | ||
|
||
BundleContentNotWatchableException withBundleName(String bundleName) { | ||
return new BundleContentNotWatchableException(bundleName, this.property, this); | ||
} | ||
|
||
} |
37 changes: 37 additions & 0 deletions
37
.../org/springframework/boot/autoconfigure/ssl/BundleContentNotWatchableFailureAnalyzer.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* Copyright 2012-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.boot.autoconfigure.ssl; | ||
|
||
import org.springframework.boot.diagnostics.AbstractFailureAnalyzer; | ||
import org.springframework.boot.diagnostics.FailureAnalysis; | ||
|
||
/** | ||
* An {@link AbstractFailureAnalyzer} that performs analysis of non-watchable bundle | ||
* content failures caused by {@link BundleContentNotWatchableException}. | ||
* | ||
* @author Moritz Halbritter | ||
*/ | ||
class BundleContentNotWatchableFailureAnalyzer extends AbstractFailureAnalyzer<BundleContentNotWatchableException> { | ||
|
||
@Override | ||
protected FailureAnalysis analyze(Throwable rootFailure, BundleContentNotWatchableException cause) { | ||
return new FailureAnalysis(cause.getMessage(), "Update your application to correct the invalid configuration:\n" | ||
+ "Either use a watchable resource, or disable bundle reloading by setting reload-on-update = false on the bundle.", | ||
cause); | ||
} | ||
|
||
} |
This file contains 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
This file contains 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
This file contains 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
58 changes: 58 additions & 0 deletions
58
...springframework/boot/autoconfigure/ssl/BundleContentNotWatchableFailureAnalyzerTests.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* | ||
* Copyright 2012-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.boot.autoconfigure.ssl; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
import org.springframework.boot.diagnostics.FailureAnalysis; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
/** | ||
* Tests for {@link BundleContentNotWatchableFailureAnalyzer}. | ||
* | ||
* @author Moritz Halbritter | ||
*/ | ||
class BundleContentNotWatchableFailureAnalyzerTests { | ||
|
||
@Test | ||
void shouldAnalyze() { | ||
FailureAnalysis failureAnalysis = performAnalysis(null); | ||
assertThat(failureAnalysis.getDescription()).isEqualTo( | ||
"The content of 'name' is not watchable. Only 'file:' resources are watchable, but 'classpath:resource.pem' has been set"); | ||
assertThat(failureAnalysis.getAction()) | ||
.isEqualTo("Update your application to correct the invalid configuration:\n" | ||
+ "Either use a watchable resource, or disable bundle reloading by setting reload-on-update = false on the bundle."); | ||
} | ||
|
||
@Test | ||
void shouldAnalyzeWithBundle() { | ||
FailureAnalysis failureAnalysis = performAnalysis("bundle-1"); | ||
assertThat(failureAnalysis.getDescription()).isEqualTo( | ||
"The content of 'name' from bundle 'bundle-1' is not watchable'. Only 'file:' resources are watchable, but 'classpath:resource.pem' has been set"); | ||
} | ||
|
||
private FailureAnalysis performAnalysis(String bundle) { | ||
BundleContentNotWatchableException failure = new BundleContentNotWatchableException( | ||
new BundleContentProperty("name", "classpath:resource.pem")); | ||
if (bundle != null) { | ||
failure = failure.withBundleName(bundle); | ||
} | ||
return new BundleContentNotWatchableFailureAnalyzer().analyze(failure); | ||
} | ||
|
||
} |
This file contains 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