You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@velocity.apache.org by wg...@apache.org on 2006/10/09 22:57:33 UTC

svn commit: r454504 - in /jakarta/velocity/engine/trunk: src/test/org/apache/velocity/test/ test/methodoverloading/ test/methodoverloading/compare/

Author: wglass
Date: Mon Oct  9 13:57:32 2006
New Revision: 454504

URL: http://svn.apache.org/viewvc?view=rev&rev=454504
Log:
test to be assured VELOCITY-132 is not a problem

Added:
    jakarta/velocity/engine/trunk/src/test/org/apache/velocity/test/MethodOverloadingTestCase.java   (with props)
    jakarta/velocity/engine/trunk/test/methodoverloading/
    jakarta/velocity/engine/trunk/test/methodoverloading/compare/
    jakarta/velocity/engine/trunk/test/methodoverloading/compare/main.cmp   (with props)
    jakarta/velocity/engine/trunk/test/methodoverloading/compare/single.cmp   (with props)
    jakarta/velocity/engine/trunk/test/methodoverloading/main.vm   (with props)
    jakarta/velocity/engine/trunk/test/methodoverloading/single.vm   (with props)
    jakarta/velocity/engine/trunk/test/methodoverloading/sub.vm   (with props)

Added: jakarta/velocity/engine/trunk/src/test/org/apache/velocity/test/MethodOverloadingTestCase.java
URL: http://svn.apache.org/viewvc/jakarta/velocity/engine/trunk/src/test/org/apache/velocity/test/MethodOverloadingTestCase.java?view=auto&rev=454504
==============================================================================
--- jakarta/velocity/engine/trunk/src/test/org/apache/velocity/test/MethodOverloadingTestCase.java (added)
+++ jakarta/velocity/engine/trunk/src/test/org/apache/velocity/test/MethodOverloadingTestCase.java Mon Oct  9 13:57:32 2006
@@ -0,0 +1,228 @@
+package org.apache.velocity.test;
+
+/*
+ * Copyright 2001-2006 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License")
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import java.io.BufferedWriter;
+import java.io.FileOutputStream;
+import java.io.OutputStreamWriter;
+import java.io.Writer;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+import org.apache.velocity.Template;
+import org.apache.velocity.VelocityContext;
+import org.apache.velocity.app.VelocityEngine;
+import org.apache.velocity.context.Context;
+import org.apache.velocity.runtime.RuntimeConstants;
+import org.apache.velocity.runtime.RuntimeServices;
+import org.apache.velocity.runtime.log.LogChute;
+
+/**
+ * Test a reported bug in which method overloading throws IllegalArgumentException 
+ * after a null return value.
+ * (VELOCITY-132).
+ * 
+ * @author <a href="mailto:wglass@forio.com">Will Glass-Husain</a>
+ * @version $Id$
+ */
+public class MethodOverloadingTestCase extends BaseTestCase implements LogChute
+{
+    String logData;
+    
+    /**
+    * VTL file extension.
+    */
+   private static final String TMPL_FILE_EXT = "vm";
+
+   /**
+    * Comparison file extension.
+    */
+   private static final String CMP_FILE_EXT = "cmp";
+
+   /**
+    * Comparison file extension.
+    */
+   private static final String RESULT_FILE_EXT = "res";
+
+   /**
+    * Path for templates. This property will override the
+    * value in the default velocity properties file.
+    */
+   private final static String FILE_RESOURCE_LOADER_PATH = TEST_COMPARE_DIR + "/methodoverloading";
+
+   /**
+    * Results relative to the build directory.
+    */
+   private static final String RESULTS_DIR = TEST_RESULT_DIR + "/methodoverloading";
+
+   /**
+    * Results relative to the build directory.
+    */
+   private static final String COMPARE_DIR = TEST_COMPARE_DIR + "/methodoverloading/compare";
+
+    /**
+     * Default constructor.
+     */
+    public MethodOverloadingTestCase(String name)
+    {
+        super(name);
+    }
+
+    public void setUp()
+    {
+        assureResultsDirectoryExists(RESULTS_DIR);
+    }
+
+    public static Test suite()
+    {
+       return new TestSuite(MethodOverloadingTestCase.class);
+    }
+
+    public void testMethodOverloading()
+    throws Exception
+    {
+        /**
+         * test overloading in a single template
+         */
+        testFile("single");
+
+        assertTrue(logData.indexOf("IllegalArgumentException") == -1);
+    }
+
+    public void testParsedMethodOverloading()
+    throws Exception
+    {
+        /**
+         * test overloading in a file included with #parse
+         */
+        testFile("main");
+        
+        assertTrue(logData.indexOf("IllegalArgumentException") == -1);
+        
+    }
+    
+    public void testFile(String basefilename)
+    throws Exception
+    {
+        
+        VelocityEngine ve = new VelocityEngine();
+        ve.addProperty(RuntimeConstants.FILE_RESOURCE_LOADER_PATH, FILE_RESOURCE_LOADER_PATH);
+        ve.setProperty(VelocityEngine.RUNTIME_LOG_LOGSYSTEM, this );
+        ve.init();
+        
+        Template template;
+        FileOutputStream fos;
+        Writer fwriter;
+        Context context;
+        
+        template = ve.getTemplate( getFileName(null, basefilename, TMPL_FILE_EXT) );
+        
+        fos = new FileOutputStream (
+                getFileName(RESULTS_DIR, basefilename, RESULT_FILE_EXT));
+        
+        fwriter = new BufferedWriter( new OutputStreamWriter(fos) );
+        
+        context = new VelocityContext();
+        setupContext(context);
+        template.merge(context, fwriter);
+        fwriter.flush();
+        fwriter.close();
+        
+        if (!isMatch(RESULTS_DIR, COMPARE_DIR, basefilename, RESULT_FILE_EXT, CMP_FILE_EXT))
+        {
+            fail("Output incorrect.");
+        }
+    }
+        
+    public void setupContext(Context context)
+    {
+      context.put("test", this);
+      context.put("nullValue", null);  
+    } 
+    
+    
+    public String overloadedMethod ( Integer s )
+    {
+        return "Integer";
+    }
+    
+    public String overloadedMethod ( String s )
+    {
+        return "String";
+    }
+    
+    
+    public String overloadedMethod2 ( Integer s )
+    {
+        return "Integer";
+    }
+    
+    public String overloadedMethod2 ( String i )
+    {
+        return "String";
+    }
+
+
+    public void log(int level, String message)
+    {
+        String out = "";
+
+        /*
+         * Start with the appropriate prefix
+         */
+        switch( level )
+        {
+            case DEBUG_ID :
+                out = DEBUG_PREFIX;
+                break;
+            case INFO_ID :
+                out = INFO_PREFIX;
+                break;
+            case TRACE_ID :
+                out = TRACE_PREFIX;
+                break;
+            case WARN_ID :
+                out = WARN_PREFIX;
+                break;
+            case ERROR_ID :
+                out = ERROR_PREFIX;
+                break;
+            default :
+                out = INFO_PREFIX;
+                break;
+        }
+
+        logData += "\n" + out + message;
+    }
+
+    public void init( RuntimeServices rs )
+    {
+        // do nothing with it
+    }
+
+    public void log(int level, String message, Throwable t)
+    {
+        // ignore the Throwable, we're not testing this method here
+        log(level, message);
+    }
+
+    public boolean isLevelEnabled(int level)
+    {
+        return true;
+    }
+}

Propchange: jakarta/velocity/engine/trunk/src/test/org/apache/velocity/test/MethodOverloadingTestCase.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/velocity/engine/trunk/src/test/org/apache/velocity/test/MethodOverloadingTestCase.java
------------------------------------------------------------------------------
    svn:keywords = Id Author Date Revision

Added: jakarta/velocity/engine/trunk/test/methodoverloading/compare/main.cmp
URL: http://svn.apache.org/viewvc/jakarta/velocity/engine/trunk/test/methodoverloading/compare/main.cmp?view=auto&rev=454504
==============================================================================
--- jakarta/velocity/engine/trunk/test/methodoverloading/compare/main.cmp (added)
+++ jakarta/velocity/engine/trunk/test/methodoverloading/compare/main.cmp Mon Oct  9 13:57:32 2006
@@ -0,0 +1,3 @@
+$test.overloadedMethod2( $param )
+String
+Integer

Propchange: jakarta/velocity/engine/trunk/test/methodoverloading/compare/main.cmp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/velocity/engine/trunk/test/methodoverloading/compare/main.cmp
------------------------------------------------------------------------------
    svn:keywords = Id Author Date Revision

Added: jakarta/velocity/engine/trunk/test/methodoverloading/compare/single.cmp
URL: http://svn.apache.org/viewvc/jakarta/velocity/engine/trunk/test/methodoverloading/compare/single.cmp?view=auto&rev=454504
==============================================================================
--- jakarta/velocity/engine/trunk/test/methodoverloading/compare/single.cmp (added)
+++ jakarta/velocity/engine/trunk/test/methodoverloading/compare/single.cmp Mon Oct  9 13:57:32 2006
@@ -0,0 +1,5 @@
+$test.overloadedMethod($nullValue)
+
+$test.overloadedMethod2( $nullValue )
+String
+Integer
\ No newline at end of file

Propchange: jakarta/velocity/engine/trunk/test/methodoverloading/compare/single.cmp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/velocity/engine/trunk/test/methodoverloading/compare/single.cmp
------------------------------------------------------------------------------
    svn:keywords = Id Author Date Revision

Added: jakarta/velocity/engine/trunk/test/methodoverloading/main.vm
URL: http://svn.apache.org/viewvc/jakarta/velocity/engine/trunk/test/methodoverloading/main.vm?view=auto&rev=454504
==============================================================================
--- jakarta/velocity/engine/trunk/test/methodoverloading/main.vm (added)
+++ jakarta/velocity/engine/trunk/test/methodoverloading/main.vm Mon Oct  9 13:57:32 2006
@@ -0,0 +1,6 @@
+#set($param = $nullObject)
+#parse ( "sub.vm" )
+#set($param = "string")
+#parse ( "sub.vm" )
+#set($param = 1234)
+#parse ( "sub.vm" )

Propchange: jakarta/velocity/engine/trunk/test/methodoverloading/main.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/velocity/engine/trunk/test/methodoverloading/main.vm
------------------------------------------------------------------------------
    svn:keywords = Id Author Date Revision

Added: jakarta/velocity/engine/trunk/test/methodoverloading/single.vm
URL: http://svn.apache.org/viewvc/jakarta/velocity/engine/trunk/test/methodoverloading/single.vm?view=auto&rev=454504
==============================================================================
--- jakarta/velocity/engine/trunk/test/methodoverloading/single.vm (added)
+++ jakarta/velocity/engine/trunk/test/methodoverloading/single.vm Mon Oct  9 13:57:32 2006
@@ -0,0 +1,7 @@
+## ambiguous method -- should not be processed
+$test.overloadedMethod($nullValue)
+
+## is the correct method cached after null parameter
+$test.overloadedMethod2( $nullValue )
+$test.overloadedMethod2( "a string" )
+$test.overloadedMethod2( 1234 )
\ No newline at end of file

Propchange: jakarta/velocity/engine/trunk/test/methodoverloading/single.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/velocity/engine/trunk/test/methodoverloading/single.vm
------------------------------------------------------------------------------
    svn:keywords = Id Author Date Revision

Added: jakarta/velocity/engine/trunk/test/methodoverloading/sub.vm
URL: http://svn.apache.org/viewvc/jakarta/velocity/engine/trunk/test/methodoverloading/sub.vm?view=auto&rev=454504
==============================================================================
--- jakarta/velocity/engine/trunk/test/methodoverloading/sub.vm (added)
+++ jakarta/velocity/engine/trunk/test/methodoverloading/sub.vm Mon Oct  9 13:57:32 2006
@@ -0,0 +1,2 @@
+## is the correct method cached after null parameter
+$test.overloadedMethod2( $param )

Propchange: jakarta/velocity/engine/trunk/test/methodoverloading/sub.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/velocity/engine/trunk/test/methodoverloading/sub.vm
------------------------------------------------------------------------------
    svn:keywords = Id Author Date Revision



---------------------------------------------------------------------
To unsubscribe, e-mail: velocity-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: velocity-dev-help@jakarta.apache.org