Using WorkDir properly

This commit is contained in:
Joakim Erdfelt 2022-10-13 09:57:12 -05:00
parent 5148de7105
commit a8e81ebb39
No known key found for this signature in database
GPG Key ID: 2D0E1FB8FE4B68B4
1 changed files with 10 additions and 3 deletions

View File

@ -14,12 +14,14 @@
package org.eclipse.jetty.ee10.plus.annotation;
import java.lang.reflect.Method;
import java.nio.file.Path;
import jakarta.servlet.http.HttpServlet;
import org.eclipse.jetty.ee10.servlet.ServletHolder;
import org.eclipse.jetty.ee10.webapp.WebAppContext;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.toolchain.test.MavenTestingUtils;
import org.eclipse.jetty.toolchain.test.FS;
import org.eclipse.jetty.toolchain.test.jupiter.WorkDir;
import org.hamcrest.Matchers;
import org.junit.jupiter.api.Test;
@ -170,11 +172,16 @@ public class LifeCycleCallbackCollectionTest
}
@Test
public void testServletPostConstructPreDestroy() throws Exception
public void testServletPostConstructPreDestroy(WorkDir workDir) throws Exception
{
// Start with an empty dir
Path testDir = workDir.getEmptyPathDir();
Server server = new Server();
WebAppContext context = new WebAppContext();
context.setBaseResource(MavenTestingUtils.getTargetTestingDir("predestroy-test").toPath());
Path predestroyTestDir = testDir.resolve("predestroy-test");
FS.ensureDirExists(predestroyTestDir);
context.setBaseResource(predestroyTestDir);
context.setContextPath("/");
server.setHandler(context);