View Javadoc

1   package org.apache.maven.plugin.idea;
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.plugin.Mojo;
23  import org.apache.maven.plugin.testing.AbstractMojoTestCase;
24  import org.codehaus.plexus.util.FileUtils;
25  
26  import java.io.File;
27  
28  /**
29   * @author Edwin Punzalan
30   */
31  public class IdeaCleanTest
32      extends AbstractMojoTestCase
33  {
34      public void testClean()
35          throws Exception
36      {
37          File pluginXmlFile = new File( getBasedir(), "src/test/clean-plugin-configs/min-plugin-config.xml" );
38  
39          File basedir = new File( getBasedir(), "target/test-harness/c-min" );
40          if ( basedir.exists() )
41          {
42              FileUtils.deleteDirectory( basedir );
43          }
44          assertTrue( "Prepare test base directory", basedir.mkdirs() );
45  
46          String artifactId = "plugin-test-c-min";
47  
48          File iprFile = new File( basedir, artifactId + ".ipr" );
49          assertTrue( "Test creation of project files", iprFile.createNewFile() );
50  
51          File imlFile = new File( basedir, artifactId + ".iml" );
52          assertTrue( "Test creation of project files", imlFile.createNewFile() );
53  
54          File iwsFile = new File( basedir, artifactId + ".iws" );
55          assertTrue( "Test creation of project files", iwsFile.createNewFile() );
56  
57          Mojo mojo = lookupMojo( "clean", pluginXmlFile );
58  
59          mojo.execute();
60  
61          assertFalse( "Test idea project file was deleted", iprFile.exists() );
62  
63          assertFalse( "Test idea module file was deleted", imlFile.exists() );
64  
65          assertFalse( "Test idea workspace file was deleted", iwsFile.exists() );
66  
67          assertTrue( "Test project dir was not deleted", basedir.exists() );
68      }
69  }