Skip to content

Commit

Permalink
Add test coverage for the issue quarkusio/quarkus#43825
Browse files Browse the repository at this point in the history
Ensure the missing servlet class in web.xml is ignored

Test coverage for quarkusio/quarkus#44063 scenario
  • Loading branch information
jcarranzan committed Nov 27, 2024
1 parent 94cbad7 commit f215332
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
package io.quarkus.ts.http.undertow;

import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardCopyOption;

import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;

import io.quarkus.test.bootstrap.RestService;
import io.quarkus.test.bootstrap.Service;
import io.quarkus.test.scenarios.QuarkusScenario;
import io.quarkus.test.services.QuarkusApplication;

@QuarkusScenario
public class UndertowMissingServletClassIT {
@QuarkusApplication(builder = WithMissingServlet.class)
static RestService app = new RestService()
.setAutoStart(false);

@Tag("https://github.com/quarkusio/quarkus/issues/44063")
@Test
void verifyUndertowIgnoreServletClassMissing() {
assertDoesNotThrow(() -> app.start(),
"The app should start without any issue");
app.logs().assertDoesNotContain("Local name must not be null");
}

public static void replaceForInvalidXML(Service service) {
if (service instanceof RestService) {
RestService restService = (RestService) service;
Path invalidWebXml = Path.of("src/test/resources/META-INF/invalid-web.xml");

Path targetWebXml = restService.getServiceFolder().resolve("META-INF/web.xml");
try {
Files.createDirectories(targetWebXml.getParent());
Files.copy(invalidWebXml, targetWebXml, StandardCopyOption.REPLACE_EXISTING);
} catch (IOException e) {
throw new RuntimeException("Failed to replace web.xml with invalid version", e);
}
} else {
throw new IllegalArgumentException("Service is not an instance of RestService");
}

}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package io.quarkus.ts.http.undertow;

import static io.quarkus.ts.http.undertow.UndertowMissingServletClassIT.replaceForInvalidXML;

import io.quarkus.test.services.quarkus.ProdQuarkusApplicationManagedResourceBuilder;

public class WithMissingServlet extends ProdQuarkusApplicationManagedResourceBuilder {

@Override
protected void copyResourcesToAppFolder() {
super.copyResourcesToAppFolder();
replaceForInvalidXML(getContext().getOwner());
}
}
10 changes: 10 additions & 0 deletions http/servlet-undertow/src/test/resources/META-INF/invalid-web.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<web-app>
<servlet>
<servlet-name>InvalidServlet</servlet-name>
</servlet>
<servlet-mapping>
<servlet-name>InvalidServlet</servlet-name>
<url-pattern>/invalid</url-pattern>
</servlet-mapping>
</web-app>

0 comments on commit f215332

Please sign in to comment.