Package com.opensymphony.xwork2.validator.validators

Source Code of com.opensymphony.xwork2.validator.validators.ValidatorSupportTest

/*
* Copyright 2002-2006,2009 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.opensymphony.xwork2.validator.validators;

import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.XWorkTestCase;
import com.opensymphony.xwork2.ognl.OgnlValueStack;
import com.opensymphony.xwork2.util.ValueStack;
import com.opensymphony.xwork2.util.ValueStackFactory;
import com.opensymphony.xwork2.validator.ValidationException;

/**
* @author tmjee
* @version $Date: 2013-01-13 14:20:30 +0100 (So, 13 Jan 2013) $ $Id: ValidatorSupportTest.java 1432606 2013-01-13 13:20:30Z lukaszlenart $
*/
public class ValidatorSupportTest extends XWorkTestCase {

  public void testConditionalParseExpression()  throws Exception {
    ValueStack oldStack = ActionContext.getContext().getValueStack();
    try {
      OgnlValueStack stack = (OgnlValueStack) container.getInstance(ValueStackFactory.class).createValueStack();
      stack.getContext().put(ActionContext.CONTAINER, container);
      stack.getContext().put("something", "somevalue");
      ActionContext.getContext().setValueStack(stack);
      ValidatorSupport validator = new ValidatorSupport() {
        public void validate(Object object) throws ValidationException {
        }
      };
            validator.setValueStack(ActionContext.getContext().getValueStack());

      String result1 = validator.parse("${#something}", String.class).toString();

      assertEquals(result1, "somevalue");
    }
    finally {
      ActionContext.getContext().setValueStack(oldStack);
    }
  }

}
TOP

Related Classes of com.opensymphony.xwork2.validator.validators.ValidatorSupportTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.