Skip to content

Commit 9cbe8b8

Browse files
[MSHARED-971] Add test for inherited environment
1 parent 74dadfd commit 9cbe8b8

File tree

3 files changed

+80
-0
lines changed

3 files changed

+80
-0
lines changed

pom.xml

+3
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,9 @@ under the License.
105105
<maven.home>${maven.home}</maven.home>
106106
<maven.repo.local>${settings.localRepository}</maven.repo.local>
107107
</systemPropertyVariables>
108+
<environmentVariables>
109+
<INVOKER_TEST_ENV_1>test-env-value</INVOKER_TEST_ENV_1>
110+
</environmentVariables>
108111
<excludes>
109112
<exclude>test-build-should*/**</exclude>
110113
</excludes>

src/test/java/org/apache/maven/shared/invoker/DefaultInvokerTest.java

+33
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,11 @@
2929
import org.apache.maven.shared.utils.StringUtils;
3030
import org.junit.jupiter.api.BeforeEach;
3131
import org.junit.jupiter.api.Test;
32+
import org.junit.jupiter.api.condition.DisabledOnOs;
33+
import org.junit.jupiter.api.condition.OS;
3234

3335
import static org.junit.jupiter.api.Assertions.assertEquals;
36+
import static org.junit.jupiter.api.Assertions.assertFalse;
3437
import static org.junit.jupiter.api.Assertions.assertTrue;
3538

3639
class DefaultInvokerTest {
@@ -42,6 +45,7 @@ class DefaultInvokerTest {
4245
public void setUp() {
4346
request.setDebug(true);
4447
request.setProperties(getProperties());
48+
request.setBatchMode(true);
4549
}
4650

4751
@Test
@@ -184,6 +188,35 @@ void testMavenWrapperInProject() throws Exception {
184188
}
185189
}
186190

191+
@Test
192+
@DisabledOnOs(OS.WINDOWS) // mvn 3.6.3 and windows ...
193+
void notInheritEnvVariables() throws Exception {
194+
195+
// ensure that we have env variable in current process
196+
assertEquals("test-env-value", System.getenv("INVOKER_TEST_ENV_1"));
197+
198+
File basedir = getBasedirForBuild();
199+
request.setBaseDirectory(basedir);
200+
request.addArg("initialize");
201+
request.setShellEnvironmentInherited(false);
202+
request.addShellEnvironment("INVOKER_TEST_ENV_2", "test-env-value-2");
203+
// Maven 3.6.3 required JAVA_HOME
204+
request.addShellEnvironment("JAVA_HOME", System.getProperty("java.home"));
205+
206+
final StringBuilder outlines = new StringBuilder();
207+
request.setOutputHandler(line -> outlines.append(line).append(System.lineSeparator()));
208+
209+
InvocationResult result = invoker.execute(request);
210+
211+
String output = outlines.toString();
212+
assertEquals(
213+
0,
214+
result.getExitCode(),
215+
() -> "Maven exit code: " + result.getExitCode() + System.lineSeparator() + output.trim());
216+
assertFalse(output.contains("INVOKER_TEST_ENV_1"));
217+
assertTrue(output.contains("INVOKER_TEST_ENV_2=test-env-value-2"));
218+
}
219+
187220
private Invoker newInvoker() {
188221
Invoker invoker = new DefaultInvoker();
189222

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<!--
2+
Licensed to the Apache Software Foundation (ASF) under one
3+
or more contributor license agreements. See the NOTICE file
4+
distributed with this work for additional information
5+
regarding copyright ownership. The ASF licenses this file
6+
to you under the Apache License, Version 2.0 (the
7+
"License"); you may not use this file except in compliance
8+
with the License. You may obtain a copy of the License at
9+
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
12+
Unless required by applicable law or agreed to in writing,
13+
software distributed under the License is distributed on an
14+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
KIND, either express or implied. See the License for the
16+
specific language governing permissions and limitations
17+
under the License.
18+
-->
19+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21+
<modelVersion>4.0.0</modelVersion>
22+
<groupId>org.apache.maven.shared.invoker</groupId>
23+
<artifactId>not-inherit-env-variables</artifactId>
24+
<packaging>pom</packaging>
25+
<version>1</version>
26+
27+
<build>
28+
<plugins>
29+
<plugin>
30+
<groupId>org.apache.maven.plugins</groupId>
31+
<artifactId>maven-help-plugin</artifactId>
32+
<version>${version.maven-help-plugin}</version>
33+
<executions>
34+
<execution>
35+
<phase>initialize</phase>
36+
<goals>
37+
<goal>system</goal>
38+
</goals>
39+
</execution>
40+
</executions>
41+
</plugin>
42+
</plugins>
43+
</build>
44+
</project>

0 commit comments

Comments
 (0)