Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
af20dc6c
Commit
af20dc6c
authored
Jun 15, 2016
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '1.3.x'
parents
fc78a8de
159ef8f1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
6 deletions
+21
-6
ExplodedArchive.java
.../springframework/boot/loader/archive/ExplodedArchive.java
+1
-1
ExplodedArchiveTests.java
...ngframework/boot/loader/archive/ExplodedArchiveTests.java
+20
-5
No files found.
spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/archive/ExplodedArchive.java
View file @
af20dc6c
...
...
@@ -84,7 +84,7 @@ public class ExplodedArchive implements Archive {
@Override
public
URL
getUrl
()
throws
MalformedURLException
{
return
new
URL
(
"file"
,
""
,
-
1
,
this
.
root
.
toURI
().
getPath
()
);
return
this
.
root
.
toURI
().
toURL
(
);
}
@Override
...
...
spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/archive/ExplodedArchiveTests.java
View file @
af20dc6c
...
...
@@ -23,7 +23,6 @@ import java.io.InputStream;
import
java.io.OutputStream
;
import
java.net.URL
;
import
java.net.URLClassLoader
;
import
java.net.URLDecoder
;
import
java.util.Enumeration
;
import
java.util.HashMap
;
import
java.util.Map
;
...
...
@@ -37,6 +36,7 @@ import org.junit.rules.TemporaryFolder;
import
org.springframework.boot.loader.TestJarCreator
;
import
org.springframework.boot.loader.archive.Archive.Entry
;
import
org.springframework.util.StringUtils
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
...
...
@@ -45,6 +45,7 @@ import static org.assertj.core.api.Assertions.assertThat;
*
* @author Phillip Webb
* @author Dave Syer
* @author Andy Wilkinson
*/
public
class
ExplodedArchiveTests
{
...
...
@@ -57,10 +58,20 @@ public class ExplodedArchiveTests {
@Before
public
void
setup
()
throws
Exception
{
createArchive
();
}
private
void
createArchive
()
throws
Exception
{
createArchive
(
null
);
}
private
void
createArchive
(
String
folderName
)
throws
Exception
{
File
file
=
this
.
temporaryFolder
.
newFile
();
TestJarCreator
.
createTestJar
(
file
);
this
.
rootFolder
=
this
.
temporaryFolder
.
newFolder
();
this
.
rootFolder
=
StringUtils
.
hasText
(
folderName
)
?
this
.
temporaryFolder
.
newFolder
(
folderName
)
:
this
.
temporaryFolder
.
newFolder
();
JarFile
jarFile
=
new
JarFile
(
file
);
Enumeration
<
JarEntry
>
entries
=
jarFile
.
entries
();
while
(
entries
.
hasMoreElements
())
{
...
...
@@ -102,9 +113,13 @@ public class ExplodedArchiveTests {
@Test
public
void
getUrl
()
throws
Exception
{
URL
url
=
this
.
archive
.
getUrl
();
assertThat
(
new
File
(
URLDecoder
.
decode
(
url
.
getFile
(),
"UTF-8"
)))
.
isEqualTo
(
this
.
rootFolder
);
assertThat
(
this
.
archive
.
getUrl
()).
isEqualTo
(
this
.
rootFolder
.
toURI
().
toURL
());
}
@Test
public
void
getUrlWithSpaceInPath
()
throws
Exception
{
createArchive
(
"spaces in the name"
);
assertThat
(
this
.
archive
.
getUrl
()).
isEqualTo
(
this
.
rootFolder
.
toURI
().
toURL
());
}
@Test
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment