001: /*
002: * $Id: RunBugsTest.java 1924 2005-03-02 08:23:38Z jstrachan $
003: *
004: * Copyright 2003 (C) James Strachan and Bob Mcwhirter. All Rights Reserved.
005: *
006: * Redistribution and use of this software and associated documentation
007: * ("Software"), with or without modification, are permitted provided that the
008: * following conditions are met:
009: * 1. Redistributions of source code must retain copyright statements and
010: * notices. Redistributions must also contain a copy of this document.
011: * 2. Redistributions in binary form must reproduce the above copyright
012: * notice, this list of conditions and the following disclaimer in the
013: * documentation and/or other materials provided with the distribution.
014: * 3. The name "groovy" must not be used to endorse or promote products
015: * derived from this Software without prior written permission of The Codehaus.
016: * For written permission, please contact info@codehaus.org.
017: * 4. Products derived from this Software may not be called "groovy" nor may
018: * "groovy" appear in their names without prior written permission of The
019: * Codehaus. "groovy" is a registered trademark of The Codehaus.
020: * 5. Due credit should be given to The Codehaus - http://groovy.codehaus.org/
021: *
022: * THIS SOFTWARE IS PROVIDED BY THE CODEHAUS AND CONTRIBUTORS ``AS IS'' AND ANY
023: * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
024: * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
025: * DISCLAIMED. IN NO EVENT SHALL THE CODEHAUS OR ITS CONTRIBUTORS BE LIABLE FOR
026: * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
027: * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
028: * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
029: * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
030: * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
031: * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
032: * DAMAGE.
033: *
034: */
035:
036: package org.codehaus.groovy.classgen;
037:
038: import groovy.lang.GroovyObject;
039:
040: import org.codehaus.groovy.classgen.TestSupport;
041:
042: /**
043: * A helper class for testing bugs in code generation errors. By turning on the
044: * logging in TestSupport we can dump the ASM code generation code for inner
045: * classes etc.
046: *
047: * @author <a href="mailto:james@coredevelopers.net">James Strachan</a>
048: * @version $Revision: 1924 $
049: */
050: public class RunBugsTest extends TestSupport {
051:
052: /*
053: public void testStaticMethodCall() throws Exception {
054: GroovyObject object = compile("src/test/groovy/bugs/StaticMethodCallBug.groovy");
055: object.invokeMethod("testBug", null);
056: }
057:
058: public void testTryCatchBug() throws Exception {
059: GroovyObject object = compile("src/test/groovy/bugs/TryCatchBug.groovy");
060: object.invokeMethod("testBug", null);
061: }
062:
063: public void testRodsBug() throws Exception {
064: GroovyObject object = compile("src/test/groovy/bugs/RodsBug.groovy");
065: object.invokeMethod("testBug", null);
066: }
067:
068: public void testCastBug() throws Exception {
069: GroovyObject object = compile("src/test/groovy/ClosureMethodCallTest.groovy");
070: object.invokeMethod("testCallingClosureWithMultipleArguments", null);
071: }
072:
073: public void testGuillaumesMapBug() throws Exception {
074: GroovyObject object = compile("src/test/groovy/bugs/GuillaumesMapBug.groovy");
075: object.invokeMethod("testBug", null);
076: }
077:
078: public void testUseClosureInScript() throws Exception {
079: GroovyObject object = compile("src/test/groovy/script/UseClosureInScript.groovy");
080: object.invokeMethod("run", null);
081: }
082:
083: public void testUseStaticInClosure() throws Exception {
084: GroovyObject object = compile("src/test/groovy/bugs/UseStaticInClosureBug.groovy");
085: object.invokeMethod("testBug2", null);
086: }
087:
088: public void testPrimitiveTypeFieldTest() throws Exception {
089: GroovyObject object = compile("src/test/groovy/PrimitiveTypeFieldTest.groovy");
090: object.invokeMethod("testPrimitiveField", null);
091: }
092:
093: public void testMethodDispatchBug() throws Exception {
094: GroovyObject object = compile("src/test/groovy/bugs/MethodDispatchBug.groovy");
095: object.invokeMethod("testBug", null);
096: }
097: public void testClosureInClosureTest() throws Exception {
098: GroovyObject object = compile("src/test/groovy/ClosureInClosureTest.groovy");
099: object.invokeMethod("testInvisibleVariable", null);
100: }
101: public void testStaticMarkupBug() throws Exception {
102: GroovyObject object = compile("src/test/groovy/bugs/StaticMarkupBug.groovy");
103: object.invokeMethod("testBug", null);
104: }
105: public void testOverloadInvokeMethodBug() throws Exception {
106: GroovyObject object = compile("src/test/groovy/bugs/OverloadInvokeMethodBug.groovy");
107: object.invokeMethod("testBug", null);
108: }
109: public void testClosureVariableBug() throws Exception {
110: GroovyObject object = compile("src/test/groovy/bugs/ClosureVariableBug.groovy");
111: object.invokeMethod("testBug", null);
112: }
113:
114: public void testMarkupAndMethodBug() throws Exception {
115: GroovyObject object = compile("src/test/groovy/bugs/MarkupAndMethodBug.groovy");
116: object.invokeMethod("testBug", null);
117: }
118: public void testClosureParameterPassingBug() throws Exception {
119: GroovyObject object = compile("src/test/groovy/bugs/ClosureParameterPassingBug.groovy");
120: object.invokeMethod("testBug", null);
121: }
122: public void testNestedClosureBug() throws Exception {
123: GroovyObject object = compile("src/test/groovy/bugs/NestedClosure2Bug.groovy");
124: object.invokeMethod("testFieldBug", null);
125: }
126: public void testSuperMethod2Bug() throws Exception {
127: GroovyObject object = compile("src/test/groovy/bugs/SuperMethod2Bug.groovy");
128: object.invokeMethod("testBug", null);
129: }
130: public void testToStringBug() throws Exception {
131: GroovyObject object = compile("src/test/groovy/bugs/ToStringBug.groovy");
132: object.invokeMethod("testBug", null);
133: }
134: public void testByteIndexBug() throws Exception {
135: GroovyObject object = compile("src/test/groovy/bugs/ByteIndexBug.groovy");
136: object.invokeMethod("testBug", null);
137: }
138: public void testGroovy252_Bug() throws Exception {
139: GroovyObject object = compile("src/test/groovy/bugs/Groovy252_Bug.groovy");
140: object.invokeMethod("testBug", null);
141: }
142:
143: */
144:
145: public void testGroovy303_Bug() throws Exception {
146: GroovyObject object = compile("src/test/groovy/bugs/Groovy303_Bug.groovy");
147: object.invokeMethod("testBug", null);
148: }
149:
150: }
|