blob: e7577293e35b56b1ba85d6125622b3485d2a936b [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 java.util.List;
import org.apache.myfaces.extensions.validator.ExtValInformation;
import org.apache.myfaces.extensions.validator.core.DefaultExtValCoreConfiguration;
import org.apache.myfaces.extensions.validator.core.ExtValContext;
import org.apache.myfaces.extensions.validator.core.ExtValCoreConfiguration;
import org.apache.myfaces.extensions.validator.core.factory.FactoryNames;
import org.apache.myfaces.extensions.validator.core.factory.NameMapperAwareFactory;
import org.apache.myfaces.extensions.validator.core.mapper.NameMapper;
import org.apache.myfaces.extensions.validator.test.base.mock.MockValidationStrategyFactory;
import org.junit.Assert;
import org.junit.Test;
/**
*
* since v4
*
*/
public class ExtValCoreConfigurationCustomMetaDataToValidationStrategyNameMapperClassNameTestCase extends
ExtValCoreConfigurationTestCase
{
private static final String WEB_XML = "Web.xml";
private static final String CUSTOM_CONFIG = "Custom Config";
public static class CustomNameMapper implements NameMapper<String>
{
public String createName(String source)
{
return WEB_XML;
}
}
public static class Custom2NameMapper implements NameMapper<String>
{
public String createName(String source)
{
return CUSTOM_CONFIG;
}
}
@Override
protected void addInitializationParameters()
{
super.addInitializationParameters();
if (needXmlParameters())
{
addInitParameter(ExtValInformation.WEBXML_PARAM_PREFIX
+ ".CUSTOM_META_DATA_TO_VALIDATION_STRATEGY_NAME_MAPPER", CustomNameMapper.class.getName());
}
}
@Override
protected ExtValCoreConfiguration getCustomExtValCoreConfiguration()
{
if (needCustomConfig())
{
return new DefaultExtValCoreConfiguration()
{
@Override
public String customMetaDataToValidationStrategyNameMapperClassName()
{
return Custom2NameMapper.class.getName();
}
};
}
else
{
return null;
}
}
@Test
public void testCustomMetaDataToValidationStrategyNameMapperClassNameDefault()
{
List<NameMapper<String>> nameMappers = getNameMappers();
Assert.assertEquals(8, nameMappers.size());
// The first one (due to @InvocationOrder) is the
// CustomConfiguredAnnotationToValidationStrategyNameMapper which we can
// customize and testing here.
NameMapper<String> mapper = nameMappers.get(0);
// By default nothing is configures so should return null.
Assert.assertNull(mapper.createName(null));
}
@Test
public void testCustomMetaDataToValidationStrategyNameMapperClassNameWebXml()
{
List<NameMapper<String>> nameMappers = getNameMappers();
// No mapper additional, but the first mapper contain now our custom
// configured mapper.
Assert.assertEquals(8, nameMappers.size());
NameMapper<String> mapper = nameMappers.get(0);
// So now it should return some value.
Assert.assertEquals(WEB_XML, mapper.createName(null));
}
@Test
public void testCustomMetaDataToValidationStrategyNameMapperClassNameCustomConfig()
{
List<NameMapper<String>> nameMappers = getNameMappers();
// No mapper additional, but the first mapper contain now our custom
// configured mapper.
Assert.assertEquals(8, nameMappers.size());
NameMapper<String> mapper = nameMappers.get(0);
// So now it should return some value.
Assert.assertEquals(CUSTOM_CONFIG, mapper.createName(null));
}
private List<NameMapper<String>> getNameMappers()
{
NameMapperAwareFactory result = ExtValContext.getContext().getFactoryFinder().getFactory(
FactoryNames.VALIDATION_STRATEGY_FACTORY, NameMapperAwareFactory.class);
return ((MockValidationStrategyFactory) result).getRegisteredNameMapperList();
}
}