Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/ognl/test/PrivateMemberTest.java


1   //--------------------------------------------------------------------------
2   //  Copyright (c) 2004, Drew Davidson and Luke Blanshard
3   //  All rights reserved.
4   //
5   //  Redistribution and use in source and binary forms, with or without
6   //  modification, are permitted provided that the following conditions are
7   //  met:
8   //
9   //  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.TestCase;
34  import junit.framework.TestSuite;
35  import ognl.DefaultMemberAccess;
36  import ognl.Ognl;
37  import ognl.OgnlContext;
38  import ognl.OgnlException;
39  
40  /**
41   * This is a test program for private access in OGNL.
42   * shows the failures and a summary.
43   */
44  public class PrivateMemberTest extends TestCase
45  {
46      private String                  _privateProperty = "private value";
47      protected OgnlContext           context;
48  
49  
50    /*===================================================================
51      Public static methods
52      ===================================================================*/
53      public static TestSuite suite()
54      {
55          return new TestSuite(PrivateMemberTest.class);
56      }
57  
58    /*===================================================================
59      Constructors
60      ===================================================================*/
61    public PrivateMemberTest(String name)
62    {
63        super(name);
64    }
65  
66    /*===================================================================
67      Public methods
68      ===================================================================*/
69      private String getPrivateProperty()
70      {
71          return _privateProperty;
72      }
73  
74      private void setPrivateProperty(String value)
75      {
76          _privateProperty = value;
77      }
78  
79      public void testPrivateAccessor() throws OgnlException
80      {
81          assertEquals(Ognl.getValue("privateProperty", context, this), getPrivateProperty());
82      }
83  
84      public void testPrivateField() throws OgnlException
85      {
86          assertEquals(Ognl.getValue("_privateProperty", context, this), _privateProperty);
87      }
88  
89    /*===================================================================
90      Overridden methods
91      ===================================================================*/
92    public void setUp()
93    {
94          context = (OgnlContext)Ognl.createDefaultContext(null);
95          context.setMemberAccess(new DefaultMemberAccess(true));
96    }
97  }