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