Skip to content

Commit a741ea0

Browse files
[MINVOKER-364] Rename invoker.systemPropertiesFile to invoker.userPropertiesFile
1 parent 162fb74 commit a741ea0

File tree

7 files changed

+93
-36
lines changed

7 files changed

+93
-36
lines changed

src/it/invocation-multiple/src/it/project/invoker.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#######################################
2121
invoker.goals = install
2222
invoker.profiles = plugin,profile0
23-
invoker.systemPropertiesFile = system1.properties
23+
invoker.userPropertiesFile = user.properties
2424

2525
#######################################
2626
# First build
@@ -40,4 +40,4 @@ invoker.profiles.2 = plugin,profile1
4040
#######################################
4141
invoker.goals.3 = test:test-maven-plugin:0.1-SNAPSHOT:test
4242
# profiles should fall back to invoker.profiles
43-
invoker.systemPropertiesFile.3 = system2.properties
43+
invoker.userPropertiesFile.3 = user3.properties

src/it/postbuild-executed-only-once/verify.bsh src/it/postbuild-executed-only-once/verify.groovy

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

20-
import java.io.*;
21-
import java.util.*;
22-
import java.util.regex.*;
20+
// make sure the Invoker Plugin was indeed run and the build didn't fail somewhere else
21+
def touchFile = new File(basedir, 'target/it/project/target/touch.txt')
22+
assert touchFile.exists()
2323

24-
try
25-
{
26-
// make sure the Invoker Plugin was indeed run and the build didn't fail somewhere else
27-
File touchFile = new File( basedir, "target/it/project/target/touch.txt" );
28-
System.out.println( "Checking for existence of touch file: " + touchFile );
29-
if ( !touchFile.exists() )
30-
{
31-
System.out.println( "FAILED! no touchFile " + touchFile.toString() );
32-
return false;
33-
}
34-
}
35-
catch( Throwable t )
36-
{
37-
t.printStackTrace();
38-
return false;
39-
}
40-
41-
return true;
24+
def logs = new File(basedir, 'build.log').text
25+
assert logs.contains('[WARNING] property invoker.systemPropertiesFile is deprecated - please use invoker.userPropertiesFile')

src/main/java/org/apache/maven/plugins/invoker/AbstractInvokerMojo.java

+9-10
Original file line numberDiff line numberDiff line change
@@ -526,11 +526,11 @@ public abstract class AbstractInvokerMojo extends AbstractMojo {
526526
* # can be indexed
527527
* invoker.offline = true
528528
*
529-
* # The path to the properties file from which to load system properties, defaults to the
529+
* # The path to the properties file from which to load user properties, defaults to the
530530
* # filename given by the plugin parameter testPropertiesFile
531531
* # Since plugin version 1.4
532532
* # can be indexed
533-
* invoker.systemPropertiesFile = test.properties
533+
* invoker.userPropertiesFile = test.properties
534534
*
535535
* # An optional human friendly name and description for this build job.
536536
* # Both name and description have to be set to be included in the build reports.
@@ -1887,9 +1887,9 @@ private boolean runBuild(
18871887
request.setUserSettingsFile(settingsFile);
18881888
}
18891889

1890-
Properties systemProperties =
1891-
getSystemProperties(basedir, invokerProperties.getSystemPropertiesFile(invocationIndex));
1892-
request.setProperties(systemProperties);
1890+
Properties userProperties =
1891+
getUserProperties(basedir, invokerProperties.getUserPropertiesFile(invocationIndex));
1892+
request.setProperties(userProperties);
18931893

18941894
invokerProperties.configureInvocation(request, invocationIndex);
18951895

@@ -1999,7 +1999,7 @@ private FileLogger setupBuildLogFile(File basedir) throws MojoExecutionException
19991999
* @return The system properties to use, may be empty but never <code>null</code>.
20002000
* @throws org.apache.maven.plugin.MojoExecutionException If the properties file exists but could not be read.
20012001
*/
2002-
private Properties getSystemProperties(final File basedir, final String filename) throws MojoExecutionException {
2002+
private Properties getUserProperties(final File basedir, final String filename) throws MojoExecutionException {
20032003
Properties collectedTestProperties = new Properties();
20042004

20052005
if (properties != null) {
@@ -2014,18 +2014,16 @@ private Properties getSystemProperties(final File basedir, final String filename
20142014
File propertiesFile = null;
20152015
if (filename != null) {
20162016
propertiesFile = new File(basedir, filename);
2017-
} else if (testPropertiesFile != null) {
2018-
propertiesFile = new File(basedir, testPropertiesFile);
20192017
}
20202018

20212019
if (propertiesFile != null && propertiesFile.isFile()) {
20222020

2023-
try (InputStream fin = new FileInputStream(propertiesFile)) {
2021+
try (InputStream fin = Files.newInputStream(propertiesFile.toPath())) {
20242022
Properties loadedProperties = new Properties();
20252023
loadedProperties.load(fin);
20262024
collectedTestProperties.putAll(loadedProperties);
20272025
} catch (IOException e) {
2028-
throw new MojoExecutionException("Error reading system properties from " + propertiesFile);
2026+
throw new MojoExecutionException("Error reading user properties from " + propertiesFile);
20292027
}
20302028
}
20312029

@@ -2369,6 +2367,7 @@ private InvokerProperties getInvokerProperties(final File projectDirectory, Prop
23692367
invokerProperties.setDefaultTimeoutInSeconds(timeoutInSeconds);
23702368
invokerProperties.setDefaultEnvironmentVariables(environmentVariables);
23712369
invokerProperties.setDefaultUpdateSnapshots(updateSnapshots);
2370+
invokerProperties.setDefaultUserPropertiesFiles(testPropertiesFile);
23722371

23732372
return invokerProperties;
23742373
}

src/main/java/org/apache/maven/plugins/invoker/InvokerProperties.java

+38-3
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,18 @@
3232
import java.util.regex.Pattern;
3333

3434
import org.apache.maven.shared.invoker.InvocationRequest;
35+
import org.slf4j.Logger;
36+
import org.slf4j.LoggerFactory;
3537

3638
/**
3739
* Provides a convenient facade around the <code>invoker.properties</code>.
3840
*
3941
* @author Benjamin Bentmann
4042
*/
4143
class InvokerProperties {
44+
45+
private final Logger logger = LoggerFactory.getLogger(InvokerProperties.class);
46+
4247
private static final String SELECTOR_PREFIX = "selector.";
4348

4449
private static final Pattern ENVIRONMENT_VARIABLES_PATTERN =
@@ -54,6 +59,7 @@ class InvokerProperties {
5459
private Map<String, String> defaultEnvironmentVariables;
5560
private File defaultMavenExecutable;
5661
private Boolean defaultUpdateSnapshots;
62+
private String defaultUserPropertiesFiles;
5763

5864
private enum InvocationProperty {
5965
PROJECT("invoker.project"),
@@ -66,6 +72,7 @@ private enum InvocationProperty {
6672
NON_RECURSIVE("invoker.nonRecursive"),
6773
OFFLINE("invoker.offline"),
6874
SYSTEM_PROPERTIES_FILE("invoker.systemPropertiesFile"),
75+
USER_PROPERTIES_FILE("invoker.userPropertiesFile"),
6976
DEBUG("invoker.debug"),
7077
QUIET("invoker.quiet"),
7178
SETTINGS_FILE("invoker.settingsFile"),
@@ -190,6 +197,14 @@ public void setDefaultUpdateSnapshots(boolean defaultUpdateSnapshots) {
190197
this.defaultUpdateSnapshots = defaultUpdateSnapshots;
191198
}
192199

200+
/**
201+
* Default value for userPropertiesFile
202+
* @param defaultUserPropertiesFiles a default value
203+
*/
204+
public void setDefaultUserPropertiesFiles(String defaultUserPropertiesFiles) {
205+
this.defaultUserPropertiesFiles = defaultUserPropertiesFiles;
206+
}
207+
193208
/**
194209
* Gets the invoker properties being wrapped.
195210
*
@@ -467,13 +482,33 @@ public boolean isExpectedResult(int exitCode, int index) {
467482
}
468483

469484
/**
470-
* Gets the path to the properties file used to set the system properties for the specified invocation.
485+
* Gets the path to the properties file used to set the user properties for the specified invocation.
471486
*
472487
* @param index The index of the invocation, must not be negative.
473488
* @return The path to the properties file or <code>null</code> if not set.
474489
*/
475-
public String getSystemPropertiesFile(int index) {
476-
return get(InvocationProperty.SYSTEM_PROPERTIES_FILE, index).orElse(null);
490+
public String getUserPropertiesFile(int index) {
491+
Optional<String> userProperties = get(InvocationProperty.USER_PROPERTIES_FILE, index);
492+
Optional<String> systemProperties = get(InvocationProperty.SYSTEM_PROPERTIES_FILE, index);
493+
494+
if (userProperties.isPresent() && systemProperties.isPresent()) {
495+
throw new IllegalArgumentException("only one property '" + InvocationProperty.USER_PROPERTIES_FILE
496+
+ "' or '" + InvocationProperty.SYSTEM_PROPERTIES_FILE + "' can be used");
497+
}
498+
499+
if (userProperties.isPresent()) {
500+
return userProperties.get();
501+
}
502+
503+
if (systemProperties.isPresent()) {
504+
logger.warn(
505+
"property {} is deprecated - please use {}",
506+
InvocationProperty.SYSTEM_PROPERTIES_FILE,
507+
InvocationProperty.USER_PROPERTIES_FILE);
508+
return systemProperties.get();
509+
}
510+
511+
return defaultUserPropertiesFiles;
477512
}
478513

479514
/**

src/test/java/org/apache/maven/plugins/invoker/InvokerPropertiesTest.java

+39
Original file line numberDiff line numberDiff line change
@@ -545,4 +545,43 @@ void testGetToolchainsWithIndex() {
545545
assertThat(toolchain.getType()).isEqualTo("jdk");
546546
assertThat(toolchain.getProvides()).containsExactlyEntriesOf(Collections.singletonMap("version", "11"));
547547
}
548+
549+
@Test
550+
void defaultValueForUserPropertiesFileShouldBeReturned() {
551+
InvokerProperties facade = new InvokerProperties(new Properties());
552+
facade.setDefaultUserPropertiesFiles("test3.properties");
553+
554+
assertThat(facade.getUserPropertiesFile(0)).isEqualTo("test3.properties");
555+
}
556+
557+
@Test
558+
void userPropertiesFilesShouldBeUsed() {
559+
Properties props = new Properties();
560+
props.put("invoker.userPropertiesFile", "test1");
561+
InvokerProperties facade = new InvokerProperties(props);
562+
563+
assertThat(facade.getUserPropertiesFile(0)).isEqualTo("test1");
564+
}
565+
566+
@Test
567+
void systemPropertiesFilesShouldBeUsed() {
568+
Properties props = new Properties();
569+
props.put("invoker.systemPropertiesFile", "test1");
570+
InvokerProperties facade = new InvokerProperties(props);
571+
572+
assertThat(facade.getUserPropertiesFile(0)).isEqualTo("test1");
573+
}
574+
575+
@Test
576+
void userAndSystemPropertiesFilesShouldThrowException() {
577+
Properties props = new Properties();
578+
props.put("invoker.systemPropertiesFile", "test1");
579+
props.put("invoker.userPropertiesFile", "test2");
580+
InvokerProperties facade = new InvokerProperties(props);
581+
582+
assertThatCode(() -> facade.getUserPropertiesFile(0))
583+
.isExactlyInstanceOf(IllegalArgumentException.class)
584+
.hasMessage(
585+
"only one property 'invoker.userPropertiesFile' or 'invoker.systemPropertiesFile' can be used");
586+
}
548587
}

0 commit comments

Comments
 (0)