Skip to content

Commit a309c8e

Browse files
[MSHARED-1391] Code cleanups
1 parent 4e21683 commit a309c8e

File tree

3 files changed

+19
-36
lines changed

3 files changed

+19
-36
lines changed

src/main/java/org/apache/maven/shared/invoker/MavenCommandLineBuilder.java

+4-6
Original file line numberDiff line numberDiff line change
@@ -185,9 +185,7 @@ protected void setToolchainsLocation(InvocationRequest request, Commandline cli)
185185
* @param cli a {@link org.apache.maven.shared.utils.cli.Commandline} object.
186186
*/
187187
protected void setShellEnvironment(InvocationRequest request, Commandline cli) {
188-
if (request.isShellEnvironmentInherited()) {
189-
cli.addSystemEnvironment();
190-
}
188+
cli.setShellEnvironmentInherited(request.isShellEnvironmentInherited());
191189

192190
if (request.getJavaHome() != null) {
193191
cli.addEnvironment("JAVA_HOME", request.getJavaHome().getAbsolutePath());
@@ -213,7 +211,7 @@ protected void setProfiles(InvocationRequest request, Commandline cli) {
213211

214212
if ((profiles != null) && !profiles.isEmpty()) {
215213
cli.createArg().setValue("-P");
216-
cli.createArg().setValue(StringUtils.join(profiles.iterator(), ","));
214+
cli.createArg().setValue(String.join(",", profiles));
217215
}
218216
}
219217

@@ -229,7 +227,7 @@ protected void setGoals(InvocationRequest request, Commandline cli) throws Comma
229227

230228
if ((goals != null) && !goals.isEmpty()) {
231229
try {
232-
cli.createArg().setLine(StringUtils.join(goals.iterator(), " "));
230+
cli.createArg().setLine(String.join(" ", goals));
233231
} catch (CommandLineException e) {
234232
throw new CommandLineConfigurationException("Problem setting goals", e);
235233
}
@@ -381,7 +379,7 @@ protected void setReactorBehavior(InvocationRequest request, Commandline cli) {
381379
List<String> projectList = request.getProjects();
382380
if (projectList != null) {
383381
cli.createArg().setValue("-pl");
384-
cli.createArg().setValue(StringUtils.join(projectList.iterator(), ","));
382+
cli.createArg().setValue(String.join(",", projectList));
385383

386384
if (request.isAlsoMake()) {
387385
cli.createArg().setValue("-am");

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

+2-7
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class DefaultInvokerTest {
3939
private InvocationRequest request = new DefaultInvocationRequest();
4040

4141
@BeforeEach
42-
public void setUp() throws Exception {
42+
public void setUp() {
4343
request.setDebug(true);
4444
request.setProperties(getProperties());
4545
}
@@ -172,12 +172,7 @@ public void testMavenWrapperInProject() throws Exception {
172172
request.setMavenExecutable(new File("./mvnw"));
173173

174174
final StringBuilder outlines = new StringBuilder();
175-
request.setOutputHandler(new InvocationOutputHandler() {
176-
@Override
177-
public void consumeLine(String line) {
178-
outlines.append(line);
179-
}
180-
});
175+
request.setOutputHandler(outlines::append);
181176

182177
InvocationResult result = invoker.execute(request);
183178

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

+13-23
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,15 @@
3737
import org.junit.jupiter.api.AfterEach;
3838
import org.junit.jupiter.api.BeforeEach;
3939
import org.junit.jupiter.api.Test;
40+
import org.junit.jupiter.api.condition.EnabledOnOs;
41+
import org.junit.jupiter.api.condition.OS;
4042
import org.junit.jupiter.api.io.TempDir;
4143

4244
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
4345
import static org.junit.jupiter.api.Assertions.assertEquals;
4446
import static org.junit.jupiter.api.Assertions.assertFalse;
47+
import static org.junit.jupiter.api.Assertions.assertThrows;
4548
import static org.junit.jupiter.api.Assertions.assertTrue;
46-
import static org.junit.jupiter.api.Assertions.fail;
4749
import static org.junit.jupiter.api.Assumptions.assumeTrue;
4850

4951
public class MavenCommandLineBuilderTest {
@@ -75,21 +77,15 @@ public void testShouldFailToSetLocalRepoLocationGloballyWhenItIsAFile() {
7577

7678
mclb.setLocalRepositoryDirectory(lrd);
7779

78-
try {
79-
mclb.setLocalRepository(newRequest(), cli);
80-
fail("Should not set local repo location to point to a file.");
81-
} catch (IllegalArgumentException expected) {
82-
}
80+
InvocationRequest request = newRequest();
81+
assertThrows(IllegalArgumentException.class, () -> mclb.setLocalRepository(request, cli));
8382
}
8483

8584
@Test
8685
public void testShouldFailToSetLocalRepoLocationFromRequestWhenItIsAFile() {
8786
InvocationRequest request = newRequest().setLocalRepositoryDirectory(lrd);
88-
try {
89-
mclb.setLocalRepository(request, cli);
90-
fail("Should not set local repo location to point to a file.");
91-
} catch (IllegalArgumentException expected) {
92-
}
87+
88+
assertThrows(IllegalArgumentException.class, () -> mclb.setLocalRepository(request, cli));
9389
}
9490

9591
@Test
@@ -207,11 +203,7 @@ private File setupTempMavenHomeIfMissing(boolean forceDummy) throws Exception {
207203
public void testShouldFailIfLoggerSetToNull() {
208204
mclb.setLogger(null);
209205

210-
try {
211-
mclb.checkRequiredState();
212-
fail("Should not allow execution to proceed when logger is missing.");
213-
} catch (IllegalStateException expected) {
214-
}
206+
assertThrows(IllegalStateException.class, () -> mclb.checkRequiredState());
215207
}
216208

217209
@Test
@@ -236,21 +228,19 @@ public void testShouldFindDummyMavenExecutable() throws Exception {
236228
}
237229

238230
@Test
231+
@EnabledOnOs(OS.WINDOWS)
239232
public void testShouldFindDummyPS1MavenExecutable() throws Exception {
240233
File dummyMavenHomeBin = Files.createDirectories(temporaryFolder
241234
.resolve("invoker-tests")
242235
.resolve("dummy-maven-home")
243236
.resolve("bin"))
244237
.toFile();
245238

246-
File check;
247-
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
248-
check = createDummyFile(dummyMavenHomeBin, "mvn.ps1");
249-
mclb.setMavenHome(dummyMavenHomeBin.getParentFile());
250-
mclb.setupMavenExecutable(newRequest());
239+
File check = createDummyFile(dummyMavenHomeBin, "mvn.ps1");
240+
mclb.setMavenHome(dummyMavenHomeBin.getParentFile());
241+
mclb.setupMavenExecutable(newRequest());
251242

252-
assertEquals(check.getCanonicalPath(), mclb.getMavenExecutable().getCanonicalPath());
253-
}
243+
assertEquals(check.getCanonicalPath(), mclb.getMavenExecutable().getCanonicalPath());
254244
}
255245

256246
@Test

0 commit comments

Comments
 (0)