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 java.io.File;
23  
24  import org.apache.maven.it.util.ResourceExtractor;
25  import org.apache.maven.shared.utils.io.FileUtils;
26  
27  public class MavenITmng5753CustomMojoExecutionConfiguratorTest
28      extends AbstractMavenIntegrationTestCase
29  {
30  
31      public MavenITmng5753CustomMojoExecutionConfiguratorTest()
32      {
33          super( "[3.3.0-alpha,)" );
34      }
35  
36      public void testCustomMojoExecutionConfigurator()
37          throws Exception
38      {
39          File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-5753-custom-mojo-execution-configurator" );
40          File pluginDir = new File( testDir, "plugin" );
41          File projectDir = new File( testDir, "project" );
42  
43          Verifier verifier;
44  
45          // install the test plugin
46          verifier = newVerifier( pluginDir.getAbsolutePath(), "remote" );
47          verifier.executeGoal( "install" );
48          verifier.resetStreams();
49          verifier.verifyErrorFreeLog();
50  
51          File configurationFile = new File(projectDir, "configuration.txt");
52          configurationFile.delete();
53  
54          // build the test project
55          verifier = newVerifier( projectDir.getAbsolutePath(), "remote" );
56          verifier.executeGoal( "validate" );
57          verifier.resetStreams();
58          verifier.verifyErrorFreeLog();
59  
60          verifier.assertFilePresent( configurationFile.getCanonicalPath() );
61          //
62          // The <name/> element in the original configuration is "ORIGINAL". We want to assert that our
63          // custom MojoExecutionConfigurator made the transformation of the element from "ORIGINAL" to "TRANSFORMED"
64          //
65          String actual = FileUtils.fileRead( configurationFile );
66          assertEquals( "TRANSFORMED", actual );
67      }
68  }