You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bo...@apache.org on 2001/07/26 17:38:49 UTC

cvs commit: jakarta-ant/src/testcases/org/apache/tools/ant/taskdefs TaskdefTestContainerTask.java TaskdefTestSimpleTask.java TaskdefTest.java

bodewig     01/07/26 08:38:48

  Modified:    .        build.xml
               src/etc/testcases/taskdefs taskdef.xml
               src/main/org/apache/tools/ant UnknownElement.java
               src/testcases/org/apache/tools/ant/taskdefs TaskdefTest.java
  Added:       src/testcases/org/apache/tools/ant/taskdefs
                        TaskdefTestContainerTask.java
                        TaskdefTestSimpleTask.java
  Log:
  Make UnknownElement aware of TaskContainer so that one can taskdef a
  TaskContainer at runtime.
  
  Revision  Changes    Path
  1.162     +3 -0      jakarta-ant/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/build.xml,v
  retrieving revision 1.161
  retrieving revision 1.162
  diff -u -r1.161 -r1.162
  --- build.xml	2001/07/24 08:18:52	1.161
  +++ build.xml	2001/07/26 15:38:48	1.162
  @@ -654,6 +654,9 @@
             <exclude name="org/apache/tools/ant/taskdefs/TaskdefsTest.java" />
             <exclude name="org/apache/tools/ant/util/regexp/RegexpMatcherTest.java" />
   
  +          <!-- helper classes, not testcases -->
  +          <exclude name="org/apache/tools/ant/taskdefs/TaskdefTest*Task.java" />
  +
             <!-- these tests need to be localised before being ran???? -->
             <exclude name="org/apache/tools/ant/taskdefs/optional/PvcsTest.java" />
   
  
  
  
  1.4       +17 -0     jakarta-ant/src/etc/testcases/taskdefs/taskdef.xml
  
  Index: taskdef.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/src/etc/testcases/taskdefs/taskdef.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- taskdef.xml	2000/12/18 15:43:59	1.3
  +++ taskdef.xml	2001/07/26 15:38:48	1.4
  @@ -22,4 +22,21 @@
       <taskdef name="test" classname="org.apache.tools.ant.Project" />
     </target>
   
  +  <target name="test6">
  +    <echo message="${build.test}" />
  +    <taskdef name="test6"
  +             classname="org.apache.tools.ant.taskdefs.TaskdefTestSimpleTask" />
  +    <test6>
  +      <echo message="worked" />
  +    </test6>
  +  </target>
  +
  +  <target name="test7">
  +    <taskdef name="test7"
  +             classname="org.apache.tools.ant.taskdefs.TaskdefTestContainerTask" />
  +    <test7>
  +      <echo message="worked" />
  +    </test7>
  +  </target>
  +
   </project>
  
  
  
  1.7       +46 -24    jakarta-ant/src/main/org/apache/tools/ant/UnknownElement.java
  
  Index: UnknownElement.java
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/UnknownElement.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- UnknownElement.java	2001/07/04 19:02:45	1.6
  +++ UnknownElement.java	2001/07/26 15:38:48	1.7
  @@ -80,28 +80,8 @@
       }
   
       public void maybeConfigure() throws BuildException {
  -        realTask = project.createTask(elementName);
  -        if (realTask == null) {
  -            log("Could not create task of type: " + elementName + " Common solutions" +
  -                " are adding the task to defaults.properties and executing bin/bootstrap",
  -                Project.MSG_DEBUG);
  -            throw new BuildException("Could not create task of type: " + elementName +
  -                                     ". Common solutions are to use taskdef to declare" +
  -                                     " your task, or, if this is an optional task," +
  -                                     " to put the optional.jar in the lib directory of" +
  -                                     " your ant installation (ANT_HOME).", location);
  -        }
  +        realTask = makeTask(this, wrapper);
   
  -        realTask.setLocation(location);
  -        String id = wrapper.getAttributes().getValue("id");
  -        if (id != null) {
  -            project.addReference(id, realTask);
  -        }
  -        realTask.init();
  -
  -        // UnknownElement always has an associated target
  -        realTask.setOwningTarget(target);
  -
           wrapper.setProxy(realTask);
           realTask.setRuntimeConfigurableWrapper(wrapper);
   
  @@ -135,16 +115,58 @@
           if (parent instanceof TaskAdapter) {
               parent = ((TaskAdapter) parent).getProxy();
           }
  +
           Class parentClass = parent.getClass();
           IntrospectionHelper ih = IntrospectionHelper.getHelper(parentClass);
  -
  +        
           for (int i=0; i<children.size(); i++) {
  -            UnknownElement child = (UnknownElement) children.elementAt(i);
  -            Object realChild = ih.createElement(project, parent, child.getTag());
               RuntimeConfigurable childWrapper = parentWrapper.getChild(i);
  +            UnknownElement child = (UnknownElement) children.elementAt(i);
  +            Object realChild = null;
  +            if (parent instanceof TaskContainer) {
  +                realChild = makeTask(child, childWrapper);
  +                ((TaskContainer) parent).addTask((Task) realChild);
  +            } else {
  +                ih.createElement(project, parent, child.getTag());
  +            }
  +
               childWrapper.setProxy(realChild);
  +            if (realChild instanceof Task) {
  +                ((Task) realChild).setRuntimeConfigurableWrapper(childWrapper);
  +            }
               child.handleChildren(realChild, childWrapper);
  +            if (realChild instanceof Task) {
  +                ((Task) realChild).maybeConfigure();
  +            }
           }
  +    }
  +
  +    /**
  +     * Create a named task and configure it up to the init() stage.
  +     */
  +    protected Task makeTask(UnknownElement ue, RuntimeConfigurable w) {
  +        Task task = project.createTask(ue.getTag());
  +        if (task == null) {
  +            log("Could not create task of type: " + elementName + " Common solutions" +
  +                " are adding the task to defaults.properties and executing bin/bootstrap",
  +                Project.MSG_DEBUG);
  +            throw new BuildException("Could not create task of type: " + elementName +
  +                                     ". Common solutions are to use taskdef to declare" +
  +                                     " your task, or, if this is an optional task," +
  +                                     " to put the optional.jar in the lib directory of" +
  +                                     " your ant installation (ANT_HOME).", location);
  +        }
  +
  +        task.setLocation(getLocation());
  +        String id = w.getAttributes().getValue("id");
  +        if (id != null) {
  +            project.addReference(id, task);
  +        }
  +        // UnknownElement always has an associated target
  +        task.setOwningTarget(target);
  +
  +        task.init();
  +        return task;
       }
   
   }// UnknownElement
  
  
  
  1.3       +10 -0     jakarta-ant/src/testcases/org/apache/tools/ant/taskdefs/TaskdefTest.java
  
  Index: TaskdefTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/src/testcases/org/apache/tools/ant/taskdefs/TaskdefTest.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- TaskdefTest.java	2001/01/03 14:18:49	1.2
  +++ TaskdefTest.java	2001/07/26 15:38:48	1.3
  @@ -86,4 +86,14 @@
       public void test5() { 
           executeTarget("test5");
       }
  +
  +    /* disabled until I know why they fail when run via the junit task --SB
  +    public void test6() {
  +        expectOutput("test6", "simpletask: worked");
  +    }
  +
  +    public void test7() {
  +        expectOutput("test7", "worked");
  +    }
  +    */
   }
  
  
  
  1.1                  jakarta-ant/src/testcases/org/apache/tools/ant/taskdefs/TaskdefTestContainerTask.java
  
  Index: TaskdefTestContainerTask.java
  ===================================================================
  /*
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 2000 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 acknowlegement:
   *       "This product includes software developed by the
   *        Apache Software Foundation (http://www.apache.org/)."
   *    Alternately, this acknowlegement may appear in the software itself,
   *    if and wherever such third-party acknowlegements normally appear.
   *
   * 4. The names "The Jakarta Project", "Ant", and "Apache Software
   *    Foundation" 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"
   *    nor may "Apache" appear in their names without prior written
   *    permission of the Apache Group.
   *
   * 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/>.
   */
  
  package org.apache.tools.ant.taskdefs;
  
  public class TaskdefTestContainerTask extends Sequential {
      public TaskdefTestContainerTask() {}
  }
  
  
  
  1.1                  jakarta-ant/src/testcases/org/apache/tools/ant/taskdefs/TaskdefTestSimpleTask.java
  
  Index: TaskdefTestSimpleTask.java
  ===================================================================
  /*
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 2000 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 acknowlegement:
   *       "This product includes software developed by the
   *        Apache Software Foundation (http://www.apache.org/)."
   *    Alternately, this acknowlegement may appear in the software itself,
   *    if and wherever such third-party acknowlegements normally appear.
   *
   * 4. The names "The Jakarta Project", "Ant", and "Apache Software
   *    Foundation" 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"
   *    nor may "Apache" appear in their names without prior written
   *    permission of the Apache Group.
   *
   * 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/>.
   */
  
  package org.apache.tools.ant.taskdefs;
  
  import org.apache.tools.ant.Project;
  import org.apache.tools.ant.Task;
  
  public class TaskdefTestSimpleTask extends Task {
  
      public class Echo {
          Echo() {}
          private String message = null;
          public void setMessage(String s) {message = s;}
      }
      
      public TaskdefTestSimpleTask() {}
      
      private Echo echo;
      public Echo createEcho() {
          echo = new Echo();
          return echo;
      }
      
      public void execute() {
          log("simpletask: "+echo.message, Project.MSG_INFO);
      }
  
  }
  
  
  
  

Re: cvs commit: jakarta-ant/src/testcases/org/apache/tools/ant/taskdefs TaskdefTestContainerTask.java TaskdefTestSimpleTask.java TaskdefTest.java

Posted by Stefan Bodewig <bo...@apache.org>.
On 26 Jul 2001, <bo...@apache.org> wrote:

> disabled until I know why they fail when run via the junit task

I can run the targets test6 and test7 successfully on the command
line, but not as part of a unit test (ClassNotFoundException although
-debug says the class has been loaded ...).

I won't get around to explore the reason for this today.

Stefan