View Javadoc

1   package org.apache.maven.it;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *   http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import org.apache.maven.it.Verifier;
23  import org.apache.maven.it.util.ResourceExtractor;
24  
25  import java.io.File;
26  import java.util.Arrays;
27  import java.util.List;
28  
29  /**
30   * This is a test set for <a href="http://jira.codehaus.org/browse/MNG-3938">MNG-3938</a>.
31   * 
32   * @author Benjamin Bentmann
33   * @version $Id: MavenITmng3938MergePluginExecutionsTest.java 981712 2010-08-03 00:36:19Z bentmann $
34   */
35  public class MavenITmng3938MergePluginExecutionsTest
36      extends AbstractMavenIntegrationTestCase
37  {
38  
39      public MavenITmng3938MergePluginExecutionsTest()
40      {
41          super( "(2.0.4,)" );
42      }
43  
44      /**
45       * Test that plugin executions with the same id are merged during inheritance, especially executions using the
46       * default id, regardless whether the id is given explicitly by the user or implicitly assumed from defaults, when
47       * no <pluginManagement> is involved.
48       */
49      public void testitWithoutPluginMngt()
50          throws Exception
51      {
52          testitMNG3938( "test-1" );
53      }
54  
55      /**
56       * Test that plugin executions with the same id are merged during inheritance, especially executions using the
57       * default id, regardless whether the id is given explicitly by the user or implicitly assumed from defaults, when
58       * <pluginManagement> is involved.
59       */
60      public void testitWithPluginMngt()
61          throws Exception
62      {
63          testitMNG3938( "test-2" );
64      }
65  
66      private void testitMNG3938( String project )
67          throws Exception
68      {
69          File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-3938/" + project );
70  
71          Verifier verifier = newVerifier( new File( testDir, "sub" ).getAbsolutePath() );
72          verifier.setAutoclean( false );
73          verifier.deleteDirectory( "target" );
74          verifier.executeGoal( "validate" );
75          verifier.verifyErrorFreeLog();
76          verifier.resetStreams();
77  
78          List lines = verifier.loadLines( "target/default.log", "UTF-8" );
79          assertEquals( Arrays.asList( new String[] { "child" } ), lines );
80  
81          lines = verifier.loadLines( "target/non-default.log", "UTF-8" );
82          assertEquals( Arrays.asList( new String[] { "child" } ), lines );
83  
84          verifier.assertFileNotPresent( "target/parent.log" );
85      }
86  
87  }