1   /*
2    $Id: GStringTest.java,v 1.14 2006/01/19 00:07:02 blackdrag Exp $
3   
4    Copyright 2003 (C) James Strachan and Bob Mcwhirter. All Rights Reserved.
5   
6    Redistribution and use of this software and associated documentation
7    ("Software"), with or without modification, are permitted provided
8    that the following conditions are met:
9   
10   1. Redistributions of source code must retain copyright
11      statements and notices.  Redistributions must also contain a
12      copy of this document.
13  
14   2. Redistributions in binary form must reproduce the
15      above copyright notice, this list of conditions and the
16      following disclaimer in the documentation and/or other
17      materials provided with the distribution.
18  
19   3. The name "groovy" must not be used to endorse or promote
20      products derived from this Software without prior written
21      permission of The Codehaus.  For written permission,
22      please contact info@codehaus.org.
23  
24   4. Products derived from this Software may not be called "groovy"
25      nor may "groovy" appear in their names without prior written
26      permission of The Codehaus. "groovy" is a registered
27      trademark of The Codehaus.
28  
29   5. Due credit should be given to The Codehaus -
30      http://groovy.codehaus.org/
31  
32   THIS SOFTWARE IS PROVIDED BY THE CODEHAUS AND CONTRIBUTORS
33   ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
34   NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
35   FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
36   THE CODEHAUS OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
37   INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
38   (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
39   SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
40   HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
41   STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
42   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
43   OF THE POSSIBILITY OF SUCH DAMAGE.
44  
45   */
46   
47   package> org.codehaus.groovy.classgen;
48  
49  import org.codehaus.groovy.ast.ClassHelper;
50  import org.codehaus.groovy.ast.ClassNode;
51  import org.codehaus.groovy.ast.MethodNode;
52  import org.codehaus.groovy.ast.Parameter;
53  import org.codehaus.groovy.ast.expr.BinaryExpression;
54  import org.codehaus.groovy.ast.expr.DeclarationExpression;
55  import org.codehaus.groovy.ast.expr.BooleanExpression;
56  import org.codehaus.groovy.ast.expr.ConstantExpression;
57  import org.codehaus.groovy.ast.expr.GStringExpression;
58  import org.codehaus.groovy.ast.expr.MethodCallExpression;
59  import org.codehaus.groovy.ast.expr.VariableExpression;
60  import org.codehaus.groovy.ast.stmt.AssertStatement;
61  import org.codehaus.groovy.ast.stmt.BlockStatement;
62  import org.codehaus.groovy.ast.stmt.ExpressionStatement;
63  import org.codehaus.groovy.runtime.InvokerHelper;
64  import org.codehaus.groovy.runtime.InvokerInvocationException;
65  import org.codehaus.groovy.syntax.Token;
66  
67  /***
68   * 
69   * @author <a href="mailto:james@coredevelopers.net">James Strachan</a>
70   * @version $Revision: 1.14 $
71   */
72  public class GStringTest extends TestSupport {
73  
74      public void testConstructor() throws Exception {
75          ClassNode classNode = new ClassNode("Foo", ACC_PUBLIC, ClassHelper.OBJECT_TYPE);
76  
77          //Statement printStatement = createPrintlnStatement(new VariableExpression("str"));
78  
79          // simulate "Hello ${user}!"
80          GStringExpression compositeStringExpr = new GStringExpression( "hello ${user}!" );
81          compositeStringExpr.addString(new ConstantExpression("Hello "));
82          compositeStringExpr.addValue(new VariableExpression("user"));
83          compositeStringExpr.addString(new ConstantExpression("!"));
84          BlockStatement block = new BlockStatement();
85          block.addStatement(
86              new ExpressionStatement(
87                  new DeclarationExpression(
88                      new VariableExpression("user"),
89                      Token.newSymbol("=", -1, -1),
90                      new ConstantExpression("World"))));
91          block.addStatement(
92              new ExpressionStatement(
93                  new DeclarationExpression(new VariableExpression("str"), Token.newSymbol( "=", -1, -1), compositeStringExpr)));
94          block.addStatement(
95              new ExpressionStatement(
96                  new MethodCallExpression(VariableExpression.THIS_EXPRESSION, "println", new VariableExpression("str"))));
97  
98          block.addStatement(
99              new ExpressionStatement(
100                 new DeclarationExpression(
101                     new VariableExpression("text"),
102                     Token.newSymbol( "=", -1, -1),
103                     new MethodCallExpression(new VariableExpression("str"), "toString", ConstantExpression.NULL))));
104 
105         block.addStatement(
106             new AssertStatement(
107                 new BooleanExpression(
108                     new BinaryExpression(
109                         new VariableExpression("text"),
110                         Token.newSymbol( "==", -1, -1),
111                         new ConstantExpression("Hello World!")))));
112         classNode.addMethod(new MethodNode("stringDemo", ACC_PUBLIC, ClassHelper.VOID_TYPE, Parameter.EMPTY_ARRAY, ClassNode.EMPTY_ARRAY, block));
113 
114         Class fooClass = loadClass(classNode);
115         assertTrue("Loaded a new class", fooClass != null);
116 
117         Object bean = fooClass.newInstance();
118         assertTrue("Managed to create bean", bean != null);
119 
120         System.out.println("################ Now about to invoke method");
121 
122         //Object[] array = { new Integer(1234), "abc", "def" };
123 
124         try {
125             InvokerHelper.invokeMethod(bean, "stringDemo", null);
126         }
127         catch (InvokerInvocationException e) {
128             System.out.println("Caught: " + e.getCause());
129             e.getCause().printStackTrace();
130             fail("Should not have thrown an exception");
131         }
132         System.out.println("################ Done");
133     }
134 }