Author: bentmann Date: Fri Sep 18 12:44:26 2009 New Revision: 816605 URL: http://svn.apache.org/viewvc?rev=816605&view=rev Log: [MNG-187] add getModuleProjects() to MavenProject
o Added IT Added: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng0187CollectedProjectsTest.java (with props) maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/pom.xml (with props) maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/sub-1/ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/sub-1/pom.xml (with props) maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/sub-1/sub-2/ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/sub-1/sub-2/pom.xml (with props) Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java?rev=816605&r1=816604&r2=816605&view=diff ============================================================================== --- maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java (original) +++ maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java Fri Sep 18 12:44:26 2009 @@ -408,6 +408,7 @@ 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 ); Added: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng0187CollectedProjectsTest.java URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng0187CollectedProjectsTest.java?rev=816605&view=auto ============================================================================== --- maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng0187CollectedProjectsTest.java (added) +++ maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng0187CollectedProjectsTest.java Fri Sep 18 12:44:26 2009 @@ -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; + } + +} Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng0187CollectedProjectsTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng0187CollectedProjectsTest.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Added: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/pom.xml URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/pom.xml?rev=816605&view=auto ============================================================================== --- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/pom.xml (added) +++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/pom.xml Fri Sep 18 12:44:26 2009 @@ -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> Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/pom.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Added: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/sub-1/pom.xml URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/sub-1/pom.xml?rev=816605&view=auto ============================================================================== --- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/sub-1/pom.xml (added) +++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/sub-1/pom.xml Fri Sep 18 12:44:26 2009 @@ -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> Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/sub-1/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/sub-1/pom.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Added: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/sub-1/sub-2/pom.xml URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/sub-1/sub-2/pom.xml?rev=816605&view=auto ============================================================================== --- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/sub-1/sub-2/pom.xml (added) +++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/sub-1/sub-2/pom.xml Fri Sep 18 12:44:26 2009 @@ -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> Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/sub-1/sub-2/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-0187/sub-1/sub-2/pom.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision