From a8e81ebb391a119c33b8a3f72158d0f55b9b2f46 Mon Sep 17 00:00:00 2001 From: Joakim Erdfelt Date: Thu, 13 Oct 2022 09:57:12 -0500 Subject: [PATCH] Using WorkDir properly --- .../annotation/LifeCycleCallbackCollectionTest.java | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/jetty-ee10/jetty-ee10-plus/src/test/java/org/eclipse/jetty/ee10/plus/annotation/LifeCycleCallbackCollectionTest.java b/jetty-ee10/jetty-ee10-plus/src/test/java/org/eclipse/jetty/ee10/plus/annotation/LifeCycleCallbackCollectionTest.java index 87c980ac104..310e7ab2811 100644 --- a/jetty-ee10/jetty-ee10-plus/src/test/java/org/eclipse/jetty/ee10/plus/annotation/LifeCycleCallbackCollectionTest.java +++ b/jetty-ee10/jetty-ee10-plus/src/test/java/org/eclipse/jetty/ee10/plus/annotation/LifeCycleCallbackCollectionTest.java @@ -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);