From 8aeecc1260e7dcdd0270c08f12b0353de1e10953 Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Tue, 6 Jul 2021 08:42:43 +0200 Subject: [PATCH] [MINVOKER-273] Environment variable with empty value (#49) --- pom.xml | 2 +- .../invoker.properties | 19 +++++++ src/it/invocation-environmentvariable/pom.xml | 2 + .../src/it/minvoker-273/pom.xml | 51 +++++++++++++++++++ .../verify.groovy | 16 +++++- 5 files changed, 87 insertions(+), 3 deletions(-) create mode 100644 src/it/invocation-environmentvariable/invoker.properties create mode 100644 src/it/invocation-environmentvariable/src/it/minvoker-273/pom.xml diff --git a/pom.xml b/pom.xml index c0197fbb..38fcad3f 100644 --- a/pom.xml +++ b/pom.xml @@ -359,7 +359,7 @@ under the License. org.apache.maven.plugins maven-invoker-plugin - 3.2.1 + 3.2.2 ${project.build.directory}/it setup diff --git a/src/it/invocation-environmentvariable/invoker.properties b/src/it/invocation-environmentvariable/invoker.properties new file mode 100644 index 00000000..a08c036b --- /dev/null +++ b/src/it/invocation-environmentvariable/invoker.properties @@ -0,0 +1,19 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +invoker.environmentVariables.MINVOKER273_PROPERTIES1 = minvoker273_properties1 +invoker.environmentVariables.MINVOKER273_PROPERTIES2 = minvoker273_properties2 diff --git a/src/it/invocation-environmentvariable/pom.xml b/src/it/invocation-environmentvariable/pom.xml index 5c5b0251..00cd0472 100644 --- a/src/it/invocation-environmentvariable/pom.xml +++ b/src/it/invocation-environmentvariable/pom.xml @@ -49,6 +49,8 @@ under the License. foobar minvoker255_pom + + diff --git a/src/it/invocation-environmentvariable/src/it/minvoker-273/pom.xml b/src/it/invocation-environmentvariable/src/it/minvoker-273/pom.xml new file mode 100644 index 00000000..a2ad0ab0 --- /dev/null +++ b/src/it/invocation-environmentvariable/src/it/minvoker-273/pom.xml @@ -0,0 +1,51 @@ + + + + + + 4.0.0 + org.apache.maven.plugins.invoker.its + minvoker-273 + 0.1-SNAPSHOT + pom + + + UTF-8 + + + + + + org.apache.maven.plugins + maven-help-plugin + 3.2.0 + + + validate + + system + + + + + + + diff --git a/src/it/invocation-environmentvariable/verify.groovy b/src/it/invocation-environmentvariable/verify.groovy index 0ef60fd4..2a6e7a31 100644 --- a/src/it/invocation-environmentvariable/verify.groovy +++ b/src/it/invocation-environmentvariable/verify.groovy @@ -16,6 +16,18 @@ * specific language governing permissions and limitations * under the License. */ -def buildLog = new File( basedir, 'build.log' ) -assert buildLog.text.contains('[INFO] BUILD SUCCESS') + +def buildLog = new File( basedir, 'build.log' ).text +assert buildLog.contains('[INFO] BUILD SUCCESS') + +def buildLod273 = new File( basedir, 'src/it/minvoker-273/build.log' ).text + +// MINVOKER273_PROPERTIES1 is present in system environment and should be removed +assert !buildLod273.contains('MINVOKER273_PROPERTIES1') + +// MINVOKER273_PROPERTIES2 is present in system environment and should be present in invocation +assert buildLod273.contains('MINVOKER273_PROPERTIES2=minvoker273_properties2') + +// MINVOKER273_PROPERTIES3 is not present in system environment and should not be present in invocation +assert !buildLod273.contains('MINVOKER273_PROPERTIES3')