blob: e500abd4046e74f4cb0d5327265201145fe46783 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.myfaces.extensions.validator.test.core.config;
import junit.framework.Test;
import org.apache.myfaces.extensions.validator.ExtValInformation;
import org.apache.myfaces.extensions.validator.core.DefaultExtValCoreConfiguration;
import org.apache.myfaces.extensions.validator.core.ExtValCoreConfiguration;
import org.apache.myfaces.extensions.validator.core.proxy.ProxyHelper;
import org.apache.myfaces.extensions.validator.test.base.util.ClassLoaderTestSuite;
import org.apache.myfaces.extensions.validator.util.ProxyUtils;
/**
*
* @author Rudy De Busscher
* since v4
*
*/
public class ExtValCoreConfigurationProxyHelperTestCase extends ExtValCoreConfigurationTestCase
{
public ExtValCoreConfigurationProxyHelperTestCase(String name)
{
super(name);
}
public static class CustomProxyHelper implements ProxyHelper
{
public String getClassNameOfObject(Object proxiedObject)
{
return null;
}
public String getNameOfClass(Class proxiedClass)
{
return null;
}
public Class getUnproxiedClass(Class currentClass)
{
return null;
}
public <T> Class<T> getUnproxiedClass(Class currentClass, Class<T> targetType)
{
return null;
}
public boolean isProxiedClass(Class currentClass)
{
if (currentClass.equals(Object.class))
{
return true;
}
return false;
}
public boolean isProxiedObject(Object proxiedObject)
{
return false;
}
}
@Override
protected void setUp() throws Exception
{
super.setUp();
// Trick the method jsfUtils#isApplicationInitialized to believe the
// application is initialized
facesContext.getExternalContext().getRequestMap().put("Key", "Value");
}
@Override
protected void addInitializationParameters()
{
super.addInitializationParameters();
if (needXmlParameters())
{
addInitParameter(ExtValInformation.WEBXML_PARAM_PREFIX + ".CUSTOM_PROXY_HELPER", CustomProxyHelper.class
.getName());
}
}
@Override
protected ExtValCoreConfiguration getCustomExtValCoreConfiguration()
{
if (needCustomConfig())
{
return new DefaultExtValCoreConfiguration()
{
@Override
public ProxyHelper proxyHelper()
{
return new CustomProxyHelper();
}
};
}
else
{
return null;
}
}
public void testProxyHelperDefault()
{
assertFalse(ProxyUtils.isProxiedClass(Object.class));
}
public void testProxyHelperWebXml()
{
assertTrue(ProxyUtils.isProxiedClass(Object.class));
}
public void testProxyHelperCustomConfig()
{
assertTrue(ProxyUtils.isProxiedClass(Object.class));
}
public static Test suite()
{
return new ClassLoaderTestSuite(ExtValCoreConfigurationProxyHelperTestCase.class);
}
}