Skip to content

Commit 47ae5e4

Browse files
[MSHARED-1386] Manage context ClassLoader for current thread
1 parent 085ae2d commit 47ae5e4

File tree

8 files changed

+47
-25
lines changed

8 files changed

+47
-25
lines changed

pom.xml

+8-2
Original file line numberDiff line numberDiff line change
@@ -112,12 +112,18 @@
112112
<executions>
113113
<execution>
114114
<goals>
115-
<goal>copy-dependencies</goal>
115+
<goal>copy</goal>
116116
</goals>
117117
<phase>generate-test-resources</phase>
118118
<configuration>
119-
<includeGroupIds>org.slf4j</includeGroupIds>
120119
<stripVersion>true</stripVersion>
120+
<artifactItems>
121+
<item>
122+
<groupId>com.github.tomakehurst</groupId>
123+
<artifactId>wiremock-jre8-standalone</artifactId>
124+
<version>2.35.2</version>
125+
</item>
126+
</artifactItems>
121127
</configuration>
122128
</execution>
123129
</executions>

src/main/java/org/apache/maven/shared/scriptinterpreter/BeanShellScriptInterpreter.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -139,15 +139,18 @@ public Object evaluateScript(String script, Map<String, ?> globalVariables, Prin
139139
}
140140
}
141141
}
142-
142+
ClassLoader curentClassLoader = Thread.currentThread().getContextClassLoader();
143143
try {
144+
Thread.currentThread().setContextClassLoader(classLoader);
144145
return engine.eval(script);
145146
} catch (TargetError e) {
146147
throw new ScriptEvaluationException(e.getTarget());
147148
} catch (ThreadDeath e) {
148149
throw e;
149150
} catch (Throwable e) {
150151
throw new ScriptEvaluationException(e);
152+
} finally {
153+
Thread.currentThread().setContextClassLoader(curentClassLoader);
151154
}
152155
} finally {
153156
System.setErr(origErr);

src/main/java/org/apache/maven/shared/scriptinterpreter/GroovyScriptInterpreter.java

+3
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ public Object evaluateScript(String script, Map<String, ?> globalVariables, Prin
6868
PrintStream origOut = System.out;
6969
PrintStream origErr = System.err;
7070

71+
ClassLoader curentClassLoader = Thread.currentThread().getContextClassLoader();
7172
try {
7273

7374
if (scriptOutput != null) {
@@ -80,10 +81,12 @@ public Object evaluateScript(String script, Map<String, ?> globalVariables, Prin
8081
new Binding(globalVariables),
8182
new CompilerConfiguration(CompilerConfiguration.DEFAULT));
8283

84+
Thread.currentThread().setContextClassLoader(childFirstLoader);
8385
return interpreter.evaluate(script);
8486
} catch (Throwable e) {
8587
throw new ScriptEvaluationException(e);
8688
} finally {
89+
Thread.currentThread().setContextClassLoader(curentClassLoader);
8790
System.setErr(origErr);
8891
System.setOut(origOut);
8992
}

src/test/java/org/apache/maven/shared/scriptinterpreter/ScriptRunnerTest.java

+5-6
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
import java.io.File;
2222
import java.nio.file.Files;
23-
import java.util.Arrays;
23+
import java.util.Collections;
2424
import java.util.HashMap;
2525
import java.util.Map;
2626

@@ -251,18 +251,17 @@ void theSameClassloaderShouldBeUsed(String scriptType) throws Exception {
251251

252252
try (FileLogger logger = new FileLogger(logFile);
253253
ScriptRunner scriptRunner = new ScriptRunner()) {
254-
scriptRunner.setClassPath(
255-
Arrays.asList("target/dependency/slf4j-api.jar", "target/dependency/slf4j-simple.jar"));
254+
scriptRunner.setClassPath(Collections.singletonList("target/dependency/wiremock-jre8-standalone.jar"));
256255

257256
scriptRunner.run("test classpath 1", basedir, "class-path1", context, logger);
258-
assertNotNull(context.get("logger"));
257+
assertNotNull(context.get("wireMockServer"));
259258

260259
scriptRunner.run("test classpath 2", basedir, "class-path2", context, logger);
261260
}
262261

263262
String logContent = new String(Files.readAllBytes(logFile.toPath()));
264-
assertTrue(logContent.contains("INFO test - Test log 1"));
265-
assertTrue(logContent.contains("INFO test - Test log 2"));
263+
assertTrue(logContent.contains("wireMockServer started with port="));
264+
assertTrue(logContent.contains("wireMockServer stopped"));
266265
}
267266

268267
private Map<String, ?> buildContext() {

src/test/resources/bsh-test/class-path1.bsh

+9-5
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,15 @@
1717
* under the License.
1818
*/
1919

20-
import org.slf4j.Logger;
21-
import org.slf4j.LoggerFactory;
20+
import com.github.tomakehurst.wiremock.WireMockServer;
21+
import com.github.tomakehurst.wiremock.core.WireMockConfiguration;
2222

23-
Logger logger = LoggerFactory.getLogger("test");
24-
context.put("logger", logger);
25-
logger.info("Test log 1");
23+
24+
WireMockServer wireMockServer = new WireMockServer(WireMockConfiguration.options().dynamicPort().dynamicHttpsPort());
25+
wireMockServer.start();
26+
27+
System.out.println("wireMockServer started with port=" + wireMockServer.port());
28+
29+
context.put("wireMockServer", wireMockServer);
2630

2731
return true;

src/test/resources/bsh-test/class-path2.bsh

+5-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@
1717
* under the License.
1818
*/
1919

20-
import org.slf4j.Logger;
20+
import com.github.tomakehurst.wiremock.WireMockServer;
2121

22-
Logger logger = context.get("logger");
23-
logger.info("Test log 2");
22+
WireMockServer wireMockServer = context.get("wireMockServer");
23+
wireMockServer.stop();
24+
25+
System.out.println("wireMockServer stopped");
2426

2527
return true;

src/test/resources/groovy-test/class-path1.groovy

+8-5
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,14 @@
1717
* under the License.
1818
*/
1919

20-
import org.slf4j.Logger
21-
import org.slf4j.LoggerFactory
20+
import com.github.tomakehurst.wiremock.WireMockServer
21+
import com.github.tomakehurst.wiremock.core.WireMockConfiguration
2222

23-
Logger logger = LoggerFactory.getLogger("test")
24-
context.put("logger", logger)
25-
logger.info("Test log 1")
23+
WireMockServer wireMockServer = new WireMockServer(WireMockConfiguration.options().dynamicPort().dynamicHttpsPort())
24+
wireMockServer.start()
25+
26+
println("wireMockServer started with port=" + wireMockServer.port())
27+
28+
context.put("wireMockServer", wireMockServer)
2629

2730
return true

src/test/resources/groovy-test/class-path2.groovy

+5-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@
1717
* under the License.
1818
*/
1919

20-
import org.slf4j.Logger
20+
import com.github.tomakehurst.wiremock.WireMockServer;
2121

22-
Logger logger = context.get("logger")
23-
logger.info("Test log 2")
22+
WireMockServer wireMockServer = context.get("wireMockServer")
23+
wireMockServer.stop()
24+
25+
println("wireMockServer stopped")
2426

2527
return true

0 commit comments

Comments
 (0)