mirror of https://github.com/apache/maven.git
[MNG-187] add getModuleProjects() to MavenProject
o Added IT git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@816605 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
542ee6f24a
commit
e663e1a7b8
|
@ -408,6 +408,7 @@ public class IntegrationTestSuite
|
|||
suite.addTestSuite( MavenITmng0294MergeGlobalAndUserSettingsTest.class );
|
||||
suite.addTestSuite( MavenITmng0282NonReactorExecWhenProjectIndependentTest.class );
|
||||
suite.addTestSuite( MavenITmng0249ResolveDepsFromReactorTest.class );
|
||||
suite.addTestSuite( MavenITmng0187CollectedProjectsTest.class );
|
||||
suite.addTestSuite( MavenITmng0095ReactorFailureBehaviorTest.class );
|
||||
suite.addTestSuite( MavenIT0145ReactorWithIncludesExcludesTest.class );
|
||||
suite.addTestSuite( MavenIT0144LifecycleExecutionOrderTest.class );
|
||||
|
|
|
@ -0,0 +1,98 @@
|
|||
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.Arrays;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
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-187">MNG-187</a>.
|
||||
*
|
||||
* @author Benjamin Bentmann
|
||||
*/
|
||||
public class MavenITmng0187CollectedProjectsTest
|
||||
extends AbstractMavenIntegrationTestCase
|
||||
{
|
||||
|
||||
public MavenITmng0187CollectedProjectsTest()
|
||||
{
|
||||
super( ALL_MAVEN_VERSIONS );
|
||||
}
|
||||
|
||||
/**
|
||||
* Verify that MavenProject.getCollectedProjects() provides access to the direct and indirect modules
|
||||
* of the current project.
|
||||
*/
|
||||
public void testit()
|
||||
throws Exception
|
||||
{
|
||||
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-0187" );
|
||||
|
||||
Verifier verifier = new Verifier( testDir.getAbsolutePath() );
|
||||
verifier.setAutoclean( false );
|
||||
verifier.deleteDirectory( "target" );
|
||||
verifier.deleteDirectory( "sub-1/target" );
|
||||
verifier.deleteDirectory( "sub-1/sub-2/target" );
|
||||
verifier.executeGoal( "validate" );
|
||||
verifier.verifyErrorFreeLog();
|
||||
verifier.resetStreams();
|
||||
|
||||
Properties props;
|
||||
|
||||
props = verifier.loadProperties( "target/project.properties" );
|
||||
assertEquals( "2", props.getProperty( "project.collectedProjects.size" ) );
|
||||
assertEquals( Arrays.asList( new String[] { "sub-1", "sub-2" } ), getProjects( props ) );
|
||||
|
||||
props = verifier.loadProperties( "sub-1/target/project.properties" );
|
||||
assertEquals( "1", props.getProperty( "project.collectedProjects.size" ) );
|
||||
assertEquals( Arrays.asList( new String[] { "sub-2" } ), getProjects( props ) );
|
||||
|
||||
props = verifier.loadProperties( "sub-1/sub-2/target/project.properties" );
|
||||
assertEquals( "0", props.getProperty( "project.collectedProjects.size" ) );
|
||||
assertEquals( Arrays.asList( new String[] {} ), getProjects( props ) );
|
||||
}
|
||||
|
||||
private List getProjects( Properties props )
|
||||
{
|
||||
List projects = new ArrayList();
|
||||
|
||||
for ( Iterator it = props.keySet().iterator(); it.hasNext(); )
|
||||
{
|
||||
String key = it.next().toString();
|
||||
if ( key.startsWith( "project.collectedProjects." ) && !key.endsWith( ".size" ) )
|
||||
{
|
||||
projects.add( props.getProperty( key ) );
|
||||
}
|
||||
}
|
||||
|
||||
Collections.sort( projects );
|
||||
|
||||
return projects;
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,66 @@
|
|||
<?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.mng0187</groupId>
|
||||
<artifactId>test</artifactId>
|
||||
<version>0.1</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Maven Integration Test :: MNG-187</name>
|
||||
<description>
|
||||
Verify that MavenProject.getCollectedProjects() provides access to the direct and indirect modules
|
||||
of the current project.
|
||||
</description>
|
||||
|
||||
<modules>
|
||||
<module>sub-1</module>
|
||||
</modules>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.its.plugins</groupId>
|
||||
<artifactId>maven-it-plugin-expression</artifactId>
|
||||
<version>2.1-SNAPSHOT</version>
|
||||
<configuration>
|
||||
<outputFile>target/project.properties</outputFile>
|
||||
<expressions>
|
||||
<expression>project/collectedProjects/size</expression>
|
||||
<expression>project/collectedProjects/0/artifactId</expression>
|
||||
<expression>project/collectedProjects/1/artifactId</expression>
|
||||
</expressions>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>test</id>
|
||||
<phase>validate</phase>
|
||||
<goals>
|
||||
<goal>eval</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
|
@ -0,0 +1,65 @@
|
|||
<?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.mng0187</groupId>
|
||||
<artifactId>sub-1</artifactId>
|
||||
<version>0.1</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Maven Integration Test :: MNG-187 :: Sub-1</name>
|
||||
<description>
|
||||
Verify that MavenProject.getCollectedProjects() provides access to the direct and indirect modules
|
||||
of the current project.
|
||||
</description>
|
||||
|
||||
<modules>
|
||||
<module>sub-2</module>
|
||||
</modules>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.its.plugins</groupId>
|
||||
<artifactId>maven-it-plugin-expression</artifactId>
|
||||
<version>2.1-SNAPSHOT</version>
|
||||
<configuration>
|
||||
<outputFile>target/project.properties</outputFile>
|
||||
<expressions>
|
||||
<expression>project/collectedProjects/size</expression>
|
||||
<expression>project/collectedProjects/0/artifactId</expression>
|
||||
</expressions>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>test</id>
|
||||
<phase>validate</phase>
|
||||
<goals>
|
||||
<goal>eval</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
|
@ -0,0 +1,60 @@
|
|||
<?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.mng0187</groupId>
|
||||
<artifactId>sub-2</artifactId>
|
||||
<version>0.1</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>Maven Integration Test :: MNG-187 :: Sub-2</name>
|
||||
<description>
|
||||
Verify that MavenProject.getCollectedProjects() provides access to the direct and indirect modules
|
||||
of the current project.
|
||||
</description>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.its.plugins</groupId>
|
||||
<artifactId>maven-it-plugin-expression</artifactId>
|
||||
<version>2.1-SNAPSHOT</version>
|
||||
<configuration>
|
||||
<outputFile>target/project.properties</outputFile>
|
||||
<expressions>
|
||||
<expression>project/collectedProjects/size</expression>
|
||||
</expressions>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>test</id>
|
||||
<phase>validate</phase>
|
||||
<goals>
|
||||
<goal>eval</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
Loading…
Reference in New Issue