01: //--------------------------------------------------------------------------
02: // Copyright (c) 2004, Drew Davidson and Luke Blanshard
03: // All rights reserved.
04: //
05: // Redistribution and use in source and binary forms, with or without
06: // modification, are permitted provided that the following conditions are
07: // met:
08: //
09: // Redistributions of source code must retain the above copyright notice,
10: // this list of conditions and the following disclaimer.
11: // Redistributions in binary form must reproduce the above copyright
12: // notice, this list of conditions and the following disclaimer in the
13: // documentation and/or other materials provided with the distribution.
14: // Neither the name of the Drew Davidson nor the names of its contributors
15: // may be used to endorse or promote products derived from this software
16: // without specific prior written permission.
17: //
18: // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19: // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20: // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
21: // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
22: // COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
23: // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24: // BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
25: // OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
26: // AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27: // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
28: // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
29: // DAMAGE.
30: //--------------------------------------------------------------------------
31: package org.ognl.test;
32:
33: import junit.framework.TestSuite;
34: import org.ognl.test.objects.Simple;
35:
36: public class ContextVariableTest extends OgnlTestCase {
37: private static Object ROOT = new Simple();
38: private static Object[][] TESTS = {
39: // Naming and referring to names
40: { "#root", ROOT }, // Special root reference
41: { "#this", ROOT }, // Special this reference
42: { "#f=5, #s=6, #f + #s", new Integer(11) },
43: { "#six=(#five=5, 6), #five + #six", new Integer(11) }, // Dynamic scoping
44: };
45:
46: /*===================================================================
47: Public static methods
48: ===================================================================*/
49: public static TestSuite suite() {
50: TestSuite result = new TestSuite();
51:
52: for (int i = 0; i < TESTS.length; i++) {
53: result.addTest(new ContextVariableTest((String) TESTS[i][0]
54: + " (" + TESTS[i][1] + ")", ROOT,
55: (String) TESTS[i][0], TESTS[i][1]));
56: }
57: return result;
58: }
59:
60: /*===================================================================
61: Constructors
62: ===================================================================*/
63: public ContextVariableTest() {
64: super ();
65: }
66:
67: public ContextVariableTest(String name) {
68: super (name);
69: }
70:
71: public ContextVariableTest(String name, Object root,
72: String expressionString, Object expectedResult,
73: Object setValue, Object expectedAfterSetResult) {
74: super (name, root, expressionString, expectedResult, setValue,
75: expectedAfterSetResult);
76: }
77:
78: public ContextVariableTest(String name, Object root,
79: String expressionString, Object expectedResult,
80: Object setValue) {
81: super (name, root, expressionString, expectedResult, setValue);
82: }
83:
84: public ContextVariableTest(String name, Object root,
85: String expressionString, Object expectedResult) {
86: super(name, root, expressionString, expectedResult);
87: }
88: }
|