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 ognl.OgnlException;
35: import ognl.NoSuchPropertyException;
36:
37: public class ShortCircuitingExpressionTest extends OgnlTestCase {
38: private static Object[][] TESTS = {
39: { "#root ? someProperty : 99", new Integer(99) },
40: { "#root ? 99 : someProperty", OgnlException.class },
41: { "(#x=99)? #x.someProperty : #x",
42: NoSuchPropertyException.class },
43: { "#xyzzy.doubleValue()", NullPointerException.class },
44: { "#xyzzy && #xyzzy.doubleValue()", null },
45: { "(#x=99) && #x.doubleValue()", new Double(99) },
46: { "#xyzzy || 101", new Integer(101) },
47: { "99 || 101", new Integer(99) }, };
48:
49: /*===================================================================
50: Public static methods
51: ===================================================================*/
52: public static TestSuite suite() {
53: TestSuite result = new TestSuite();
54:
55: for (int i = 0; i < TESTS.length; i++) {
56: result.addTest(new ShortCircuitingExpressionTest(
57: (String) TESTS[i][0] + " (" + TESTS[i][1] + ")",
58: null, (String) TESTS[i][0], TESTS[i][1]));
59: }
60: return result;
61: }
62:
63: /*===================================================================
64: Constructors
65: ===================================================================*/
66: public ShortCircuitingExpressionTest() {
67: super ();
68: }
69:
70: public ShortCircuitingExpressionTest(String name) {
71: super (name);
72: }
73:
74: public ShortCircuitingExpressionTest(String name, Object root,
75: String expressionString, Object expectedResult,
76: Object setValue, Object expectedAfterSetResult) {
77: super (name, root, expressionString, expectedResult, setValue,
78: expectedAfterSetResult);
79: }
80:
81: public ShortCircuitingExpressionTest(String name, Object root,
82: String expressionString, Object expectedResult,
83: Object setValue) {
84: super (name, root, expressionString, expectedResult, setValue);
85: }
86:
87: public ShortCircuitingExpressionTest(String name, Object root,
88: String expressionString, Object expectedResult) {
89: super(name, root, expressionString, expectedResult);
90: }
91: }
|