-
Notifications
You must be signed in to change notification settings - Fork 38.4k
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
MockServletContext should treat InvalidPathException like an IOException #23717
Comments
Thanks for the sample @Spunc. I ran |
It looks like running on Windows is significant. The test fails for me there. We end up with the following:
The Windows-specific behaviour is in step 12. The This feels like a bug in @Spunc You can work around the problem by using |
Thank you very much for your replies. At first, I was surprised that @mbhave could not reproduce the problem. I had colleagues verify the issue and indeed, those with Windows have the problem while those with Mac-OS are not affected. Thanks, @wilkinsona for your suggestion of a workaround. We will apply that. |
Thanks for the great detective work, @wilkinsona! We'll look into it. |
Prior to this commit, if MockServletContext was configured with a FileSystemResourceLoader, invocations of the following methods on a Microsoft Windows operating system resulted in an InvalidPathException if the supplied path contained a colon (such as "C:\\temp"). This is inconsistent with the behavior on non-Windows operating systems. In addition, for comparable errors resulting in an IOException, those methods (except getRealPath()) return null instead of throwing the exception. - getResourcePaths() - getResource() - getResourceAsStream() - getRealPath() This commit makes handling of InvalidPathException and IOException consistent for these methods: both exceptions now result in null be returned by these methods. Closes gh-23717
Prior to this commit, if MockServletContext was configured with a FileSystemResourceLoader, invocations of the following methods on a Microsoft Windows operating system resulted in an InvalidPathException if the supplied path contained a colon (such as "C:\\temp"). This is inconsistent with the behavior on non-Windows operating systems. In addition, for comparable errors resulting in an IOException, those methods (except getRealPath()) return null instead of throwing the exception. - getResourcePaths() - getResource() - getResourceAsStream() - getRealPath() This commit makes handling of InvalidPathException and IOException consistent for these methods: both exceptions now result in null be returned by these methods. Closes spring-projectsgh-23717
I also run into this problem with spring 5.1.5. Now I updated to 5.1.11 and the problem "solved", but now it prints warning to the log. @sbrannen @wilkinsona If we leave Maybe this is incorrect to leave it like this because this is servlet context anyway (I'm not sure here what's the intention). But it is also have no sense to just do a concatenation like this. Maybe it works on unix systems, where any absolute path can be converted to relative just by appending another path at the beginning, but it doesn't work on Windows, where path can contain a hard drive letter. If the path must really be prepended with servlet context path here, maybe it is better to remove the letter from P.S. In my case a property was just like this:
This was intentionally done in test properties to make sure the test runs on Windows and Unix machines without changes. And it worked while I has custom |
@xak2000, since this issue has already been closed and the change has already been released, would you please open a new ticket to address your concerns? Thanks in advance! |
I have a simple
ConfigurationProperties
class that binds a String property to aPath
object:Then I define
app.somePath=C:\\temp
within application.properties. This works when running the application, but a simple Test that loads the context throws:The test class is most simple:
I created a project with the most recent Spring-Boot version (2.1.8.RELEASE) with Initializr (Gradle build with Spring Web as only dependency) to replicate the problem in isolation. It can be found here. I run the project on Windows 10.
I found out that the test passes, if there are no backslashes in the property value. Furthermore, it passes if I don't use
org.springframework.boot:spring-boot-starter-web
butorg.springframework.boot:spring-boot-starter
as dependency. (The test project does not require web, but the actual project does.)The text was updated successfully, but these errors were encountered: