|
|
@ -1,5 +1,5 @@
|
|
|
|
/*
|
|
|
|
/*
|
|
|
|
* Copyright 2012-2020 the original author or authors.
|
|
|
|
* Copyright 2012-2021 the original author or authors.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
@ -172,13 +172,9 @@ class HandlerTests {
|
|
|
|
TestJarCreator.createTestJar(testJar);
|
|
|
|
TestJarCreator.createTestJar(testJar);
|
|
|
|
URL url = new URL(null, "jar:" + testJar.toURI().toURL() + "!/nested.jar!/3.dat", this.handler);
|
|
|
|
URL url = new URL(null, "jar:" + testJar.toURI().toURL() + "!/nested.jar!/3.dat", this.handler);
|
|
|
|
JarURLConnection connection = (JarURLConnection) url.openConnection();
|
|
|
|
JarURLConnection connection = (JarURLConnection) url.openConnection();
|
|
|
|
JarFile jarFile = JarFileWrapper.unwrap(connection.getJarFile());
|
|
|
|
try (JarFile jarFile = JarFileWrapper.unwrap(connection.getJarFile())) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
assertThat(jarFile.getRootJarFile().getFile()).isEqualTo(testJar);
|
|
|
|
assertThat(jarFile.getRootJarFile().getFile()).isEqualTo(testJar);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
finally {
|
|
|
|
|
|
|
|
jarFile.close();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
@Test
|
|
|
@ -187,13 +183,9 @@ class HandlerTests {
|
|
|
|
TestJarCreator.createTestJar(testJar);
|
|
|
|
TestJarCreator.createTestJar(testJar);
|
|
|
|
URL url = new URL(null, "jar:" + testJar.toURI().toURL() + "!/nested.jar!/3.dat", this.handler);
|
|
|
|
URL url = new URL(null, "jar:" + testJar.toURI().toURL() + "!/nested.jar!/3.dat", this.handler);
|
|
|
|
JarURLConnection connection = (JarURLConnection) url.openConnection();
|
|
|
|
JarURLConnection connection = (JarURLConnection) url.openConnection();
|
|
|
|
JarFile jarFile = JarFileWrapper.unwrap(connection.getJarFile());
|
|
|
|
try (JarFile jarFile = JarFileWrapper.unwrap(connection.getJarFile())) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
assertThat(jarFile.getRootJarFile().getFile()).isEqualTo(testJar);
|
|
|
|
assertThat(jarFile.getRootJarFile().getFile()).isEqualTo(testJar);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
finally {
|
|
|
|
|
|
|
|
jarFile.close();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void assertStandardAndCustomHandlerUrlsAreEqual(String context, String spec) throws MalformedURLException {
|
|
|
|
private void assertStandardAndCustomHandlerUrlsAreEqual(String context, String spec) throws MalformedURLException {
|
|
|
|