From e663e1a7b8363bb957a55e7ccda16a3775a1ab79 Mon Sep 17 00:00:00 2001 From: Benjamin Bentmann Date: Fri, 18 Sep 2009 12:44:26 +0000 Subject: [PATCH] [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 --- .../apache/maven/it/IntegrationTestSuite.java | 1 + .../MavenITmng0187CollectedProjectsTest.java | 98 +++++++++++++++++++ .../src/test/resources/mng-0187/pom.xml | 66 +++++++++++++ .../src/test/resources/mng-0187/sub-1/pom.xml | 65 ++++++++++++ .../resources/mng-0187/sub-1/sub-2/pom.xml | 60 ++++++++++++ 5 files changed, 290 insertions(+) create mode 100644 its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng0187CollectedProjectsTest.java create mode 100644 its/core-it-suite/src/test/resources/mng-0187/pom.xml create mode 100644 its/core-it-suite/src/test/resources/mng-0187/sub-1/pom.xml create mode 100644 its/core-it-suite/src/test/resources/mng-0187/sub-1/sub-2/pom.xml diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java b/its/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java index c5a5fc3ddb..7c374c491b 100644 --- a/its/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java +++ b/its/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java @@ -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 ); diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng0187CollectedProjectsTest.java b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng0187CollectedProjectsTest.java new file mode 100644 index 0000000000..c738c3f2ce --- /dev/null +++ b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng0187CollectedProjectsTest.java @@ -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 MNG-187. + * + * @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; + } + +} diff --git a/its/core-it-suite/src/test/resources/mng-0187/pom.xml b/its/core-it-suite/src/test/resources/mng-0187/pom.xml new file mode 100644 index 0000000000..6e30048329 --- /dev/null +++ b/its/core-it-suite/src/test/resources/mng-0187/pom.xml @@ -0,0 +1,66 @@ + + + + + + 4.0.0 + + org.apache.maven.its.mng0187 + test + 0.1 + pom + + Maven Integration Test :: MNG-187 + + Verify that MavenProject.getCollectedProjects() provides access to the direct and indirect modules + of the current project. + + + + sub-1 + + + + + + org.apache.maven.its.plugins + maven-it-plugin-expression + 2.1-SNAPSHOT + + target/project.properties + + project/collectedProjects/size + project/collectedProjects/0/artifactId + project/collectedProjects/1/artifactId + + + + + test + validate + + eval + + + + + + + diff --git a/its/core-it-suite/src/test/resources/mng-0187/sub-1/pom.xml b/its/core-it-suite/src/test/resources/mng-0187/sub-1/pom.xml new file mode 100644 index 0000000000..3155e0d6ab --- /dev/null +++ b/its/core-it-suite/src/test/resources/mng-0187/sub-1/pom.xml @@ -0,0 +1,65 @@ + + + + + + 4.0.0 + + org.apache.maven.its.mng0187 + sub-1 + 0.1 + pom + + Maven Integration Test :: MNG-187 :: Sub-1 + + Verify that MavenProject.getCollectedProjects() provides access to the direct and indirect modules + of the current project. + + + + sub-2 + + + + + + org.apache.maven.its.plugins + maven-it-plugin-expression + 2.1-SNAPSHOT + + target/project.properties + + project/collectedProjects/size + project/collectedProjects/0/artifactId + + + + + test + validate + + eval + + + + + + + diff --git a/its/core-it-suite/src/test/resources/mng-0187/sub-1/sub-2/pom.xml b/its/core-it-suite/src/test/resources/mng-0187/sub-1/sub-2/pom.xml new file mode 100644 index 0000000000..9525af1008 --- /dev/null +++ b/its/core-it-suite/src/test/resources/mng-0187/sub-1/sub-2/pom.xml @@ -0,0 +1,60 @@ + + + + + + 4.0.0 + + org.apache.maven.its.mng0187 + sub-2 + 0.1 + jar + + Maven Integration Test :: MNG-187 :: Sub-2 + + Verify that MavenProject.getCollectedProjects() provides access to the direct and indirect modules + of the current project. + + + + + + org.apache.maven.its.plugins + maven-it-plugin-expression + 2.1-SNAPSHOT + + target/project.properties + + project/collectedProjects/size + + + + + test + validate + + eval + + + + + + +