You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by jv...@apache.org on 2003/02/12 11:11:04 UTC

cvs commit: jakarta-turbine-maven/src/test/java/org/apache/maven/plugin DefaultPluginCacheManagerTest.java PluginCacheManagerTest.java

jvanzyl     2003/02/12 02:11:03

  Modified:    src/test/java/org/apache/maven/plugin
                        PluginCacheManagerTest.java
  Added:       src/test/java/org/apache/maven/plugin
                        DefaultPluginCacheManagerTest.java
  Log:
  o Test for new cache manager, basically just a visual for me right now,
    but I'll add a slew of tests in the morning, or when I get up ...
  
  Revision  Changes    Path
  1.2       +23 -25    jakarta-turbine-maven/src/test/java/org/apache/maven/plugin/PluginCacheManagerTest.java
  
  Index: PluginCacheManagerTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/test/java/org/apache/maven/plugin/PluginCacheManagerTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- PluginCacheManagerTest.java	31 Dec 2002 07:10:06 -0000	1.1
  +++ PluginCacheManagerTest.java	12 Feb 2003 10:11:03 -0000	1.2
  @@ -53,55 +53,53 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    */
  -
   import junit.framework.TestCase;
   
   import java.io.File;
   
   /**
  - *
    * @author <a href="mailto:jason@zenplex.com">Jason van Zyl</a>
  - *
  - * @version $Id$
  + * @version $Id: PluginCacheManagerTest.java,v 1.1 2002/12/31 07:10:06 jvanzyl
  + *      Exp $
    */
   public class PluginCacheManagerTest
  -    extends TestCase
  +     extends TestCase
   {
       private static String PLUGIN_SCRIPT = System.getProperty("basedir")
           + "/src/test/java/org/apache/maven/plugin/plugin.jelly";
   
  -	/**
  +    /**
        * Constructor.
        *
        * @param name Name of the test.
        */
  -    public PluginCacheManagerTest( String name )
  -	{
  -		super( name );
  -	}
  +    public PluginCacheManagerTest(String name)
  +    {
  +        super(name);
  +    }
   
  -	/**
  +    /**
        * Test the plugin cache builder.
  -	 */
  -	public void testPluginGraphBuilder()
  -	{
  +     */
  +    public void testPluginGraphBuilder()
  +    {
           PluginCacheManager pgb = new PluginCacheManager();
  -        pgb.setPluginScript( new File( PLUGIN_SCRIPT ) );
  +        pgb.setPluginScript(new File(PLUGIN_SCRIPT));
           pgb.parse();
   
  -        assertEquals( "Generate docs in APT format>xdoc:generate-from-pom",
  -                      pgb.getGoalCache().getProperty("apt:generate") );
  +        assertEquals("Generate docs in APT format>xdoc:generate-from-pom",
  +            pgb.getGoalCache().getProperty("apt:generate"));
   
  -        assertEquals( "plugin",
  -                      pgb.getPluginCache().getProperty("apt:generate") );
  +        assertEquals("plugin",
  +            pgb.getPluginCache().getProperty("apt:generate"));
   
  -        assertEquals( "plugin",
  -                      pgb.getDynaTagLibCache().getProperty("aptdoc") );
  +        assertEquals("plugin",
  +            pgb.getDynaTagLibCache().getProperty("aptdoc"));
   
  -        assertEquals( "plugin",
  -                      pgb.getCallbackCache().getProperty("xdoc:transform.pre") );
  +        assertEquals("plugin",
  +            pgb.getCallbackCache().getProperty("xdoc:transform.pre"));
   
  -        assertEquals( "plugin",
  -                      pgb.getCallbackCache().getProperty("foo.post") );
  +        assertEquals("plugin",
  +            pgb.getCallbackCache().getProperty("foo.post"));
       }
   }
  
  
  
  1.1                  jakarta-turbine-maven/src/test/java/org/apache/maven/plugin/DefaultPluginCacheManagerTest.java
  
  Index: DefaultPluginCacheManagerTest.java
  ===================================================================
  package org.apache.maven.plugin;
  
  /* ====================================================================
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 2002 The Apache Software Foundation.  All rights
   * reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions and the following disclaimer.
   *
   * 2. Redistributions in binary form must reproduce the above copyright
   *    notice, this list of conditions and the following disclaimer in
   *    the documentation and/or other materials provided with the
   *    distribution.
   *
   * 3. The end-user documentation included with the redistribution,
   *    if any, must include the following acknowledgment:
   *       "This product includes software developed by the
   *        Apache Software Foundation (http://www.apache.org/)."
   *    Alternately, this acknowledgment may appear in the software itself,
   *    if and wherever such third-party acknowledgments normally appear.
   *
   * 4. The names "Apache" and "Apache Software Foundation" and
   *    "Apache MavenSession" must not be used to endorse or promote products
   *    derived from this software without prior written permission. For
   *    written permission, please contact apache@apache.org.
   *
   * 5. Products derived from this software may not be called "Apache",
   *    "Apache MavenSession", nor may "Apache" appear in their name, without
   *    prior written permission of the Apache Software Foundation.
   *
   * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
   * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
   * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
   * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
   * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
   * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
   * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
   * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   * SUCH DAMAGE.
   * ====================================================================
   *
   * This software consists of voluntary contributions made by many
   * individuals on behalf of the Apache Software Foundation.  For more
   * information on the Apache Software Foundation, please see
   * <http://www.apache.org/>.
   */
  
  import junit.framework.TestCase;
  
  import java.io.File;
  import java.util.Iterator;
  import java.util.Set;
  
  import org.apache.maven.MavenUtils;
  
  /**
   * @author <a href="mailto:jason@zenplex.com">Jason van Zyl</a>
   * @version $Id: PluginCacheManagerTest.java,v 1.1 2002/12/31 07:10:06 jvanzyl
   *      Exp $
   */
  public class DefaultPluginCacheManagerTest
      extends TestCase
  {
      private static String PLUGIN_DIR = System.getProperty( "basedir" ) + "/src/test/mock-plugins";
  
      private static String PLUGIN_SCRIPT1 = System.getProperty( "basedir" )
          + "/src/test/mock-plugins/plugin-1/plugin.jelly";
  
      private static String PLUGIN_SCRIPT2 = System.getProperty( "basedir" )
          + "/src/test/mock-plugins/plugin-2/plugin.jelly";
  
      private static String PLUGIN_SCRIPT3 = System.getProperty( "basedir" )
          + "/src/test/mock-plugins/plugin-3/plugin.jelly";
  
      /**
       * Constructor.
       *
       * @param name Name of the test.
       */
      public DefaultPluginCacheManagerTest( String name )
      {
          super( name );
      }
  
      /**
       * Test the plugin cache builder.
       */
      public void testBasic()
          throws Exception
      {
          DefaultPluginCacheManager cacheManager = new DefaultPluginCacheManager();
  
          String[] files = MavenUtils.getFiles( new File( PLUGIN_DIR ), "**/plugin.jelly" );
  
          for ( int i = 0; i < files.length; i++ )
          {
              System.out.println( "parsing " + files[i] );
              cacheManager.setPluginScript( new File( files[i] ) );
              cacheManager.parse();
          }
  
          Set plugins = cacheManager.resolve( "plugin-1-A" );
  
          System.out.println( "plugin chain: " );
  
          for ( Iterator i = plugins.iterator(); i.hasNext(); )
          {
              System.out.println( i.next() );
          }
      }
  }