[MNG-4421] Warn regarding old-style references when used in a project build

o Added IT

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@831578 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2009-10-31 18:23:39 +00:00
parent 443622bbf5
commit cca0924031
3 changed files with 151 additions and 0 deletions

View File

@ -87,6 +87,7 @@ public class IntegrationTestSuite
suite.addTestSuite( MavenITmng4423SessionDataFromPluginParameterExpressionTest.class );
suite.addTestSuite( MavenITmng4422PluginExecutionPhaseInterpolationTest.class );
suite.addTestSuite( MavenITmng4421DeprecatedPomInterpolationExpressionsTest.class );
suite.addTestSuite( MavenITmng4416PluginOrderAfterProfileInjectionTest.class );
suite.addTestSuite( MavenITmng4415InheritedPluginOrderTest.class );
suite.addTestSuite( MavenITmng4413MirroringOfDependencyRepoTest.class );

View File

@ -0,0 +1,88 @@
package org.apache.maven.it;
/*
* 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.
*/
import org.apache.maven.it.Verifier;
import org.apache.maven.it.util.ResourceExtractor;
import java.io.File;
import java.util.Iterator;
import java.util.List;
import java.util.Properties;
/**
* This is a test set for <a href="http://jira.codehaus.org/browse/MNG-4421">MNG-4421</a>.
*
* @author Benjamin Bentmann
*/
public class MavenITmng4421DeprecatedPomInterpolationExpressionsTest
extends AbstractMavenIntegrationTestCase
{
public MavenITmng4421DeprecatedPomInterpolationExpressionsTest()
{
super( "[3.0-alpha-3,)" );
}
/**
* Test that expressions of the form ${pom.*} and {*} referring to the model cause build warnings.
*/
public void testit()
throws Exception
{
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-4421" );
Verifier verifier = new Verifier( testDir.getAbsolutePath() );
verifier.setAutoclean( false );
verifier.deleteDirectory( "target" );
verifier.executeGoal( "validate" );
verifier.verifyErrorFreeLog();
verifier.resetStreams();
Properties props = verifier.loadProperties( "target/pom.properties" );
assertEquals( "0.1", props.getProperty( "project.properties.property1" ) );
assertEquals( "0.1", props.getProperty( "project.properties.property2" ) );
List lines = verifier.loadLines( "log.txt", null );
boolean warnedPomPrefix = false;
boolean warnedEmptyPrefix = false;
for ( Iterator it = lines.iterator(); it.hasNext(); )
{
String line = (String) it.next();
if ( line.startsWith( "[WARN" ) )
{
if ( line.indexOf( "${pom.version}" ) >= 0 )
{
warnedPomPrefix = true;
}
if ( line.indexOf( "${version}" ) >= 0 )
{
warnedEmptyPrefix = true;
}
}
}
assertTrue( warnedPomPrefix );
assertTrue( warnedEmptyPrefix );
}
}

View File

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
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.
-->
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.its.mng4421</groupId>
<artifactId>test</artifactId>
<version>0.1</version>
<name>Maven Integration Test :: MNG-4421</name>
<description>
Test that expressions of the form ${pom.*} and {*} referring to the model cause build warnings.
</description>
<properties>
<property1>${pom.version}</property1>
<property2>${version}</property2>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.its.plugins</groupId>
<artifactId>maven-it-plugin-expression</artifactId>
<version>2.1-SNAPSHOT</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>eval</goal>
</goals>
<configuration>
<outputFile>target/pom.properties</outputFile>
<expressions>
<expression>project/properties</expression>
</expressions>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>