o Created UT from MNG-3944

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@729514 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2008-12-26 17:22:22 +00:00
parent 8d845eaa55
commit 4cc361f4ff
2 changed files with 49 additions and 0 deletions

View File

@ -410,6 +410,16 @@ public void testInterpolationWithBasedirAlignedDirectories()
new File( pom.getValue( "properties/siteOut" ).toString() ) );
}
/* FIXME: cf. MNG-3944
public void testInterpolationOfBasedirInPomWithUnusualName()
throws Exception
{
PomTestWrapper pom = buildPom( "basedir-interpolation/pom-with-unusual-name.xml" );
assertEquals( pom.getBasedir(), new File( pom.getValue( "properties/prop0" ).toString() ) );
assertEquals( pom.getBasedir(), new File( pom.getValue( "properties/prop1" ).toString() ) );
}
//*/
private PomArtifactResolver artifactResolver( String basedir )
{
return new FileBasedPomArtifactResolver( new File( BASE_POM_DIR, basedir ) );

View File

@ -0,0 +1,39 @@
<?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.mng3944</groupId>
<artifactId>test1</artifactId>
<version>1.0-SNAPSHOT</version>
<name>Maven Integration Test :: MNG-3944</name>
<description>
Test that interpolation of ${basedir} works for a POM that is not named "pom.xml"
</description>
<properties>
<!-- this is where we collect all the interpolated values for the POM dump -->
<prop0>${basedir}</prop0>
<prop1>${project.basedir}</prop1>
</properties>
</project>