package org.strecks.message;
/*
* Copyright 2005-2006 the original author or authors.
*
* 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.
*/
import static org.testng.Assert.assertEquals;
import java.util.Locale;
import org.apache.struts.util.MessageResources;
import org.apache.struts.util.MessageResourcesFactory;
import org.apache.struts.util.PropertyMessageResourcesFactory;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
public class TestMessageResourcesHelper
{
protected MessageResources resources;
@BeforeMethod
public void beforeClass()
{
MessageResourcesFactory factory = new PropertyMessageResourcesFactory();
resources = factory.createResources("org.strecks.message.TestMessageResources");
}
@Test(expectedExceptions=IllegalArgumentException.class)
public void testNull()
{
new MessageResourcesHelperImpl(Locale.getDefault(), null);
}
@Test
public void testDefaultLocale()
{
MessageResourcesHelperImpl impl = new MessageResourcesHelperImpl(Locale.getDefault(), resources);
assertEquals(impl.getMessage("message.with.no.params"), "Message with no params");
assertEquals(impl.getMessage("message.with.five.params", "one", 1, 3L, "four", 5), "Message with five params one, 1, 3, four, 5");
}
@Test
public void testNullLocale()
{
MessageResourcesHelperImpl impl = new MessageResourcesHelperImpl(null, resources);
assertEquals(impl.getMessage("message.with.no.params"), "Message with no params");
}
@Test
public void testGermanLocale()
{
MessageResourcesHelperImpl impl = new MessageResourcesHelperImpl(Locale.GERMAN, resources);
assertEquals(impl.getMessage("message.with.no.params"), "Mit keinen params");
assertEquals(impl.getMessage("message.with.five.params", "one", 1, 3L, "four", 5), "Mit funf params one, 1, 3, four, 5");
}
}