/*
* Copyright 2002-2007 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.
*/
package org.internna.iwebmvc.spring.binding;
import java.util.ArrayList;
import java.util.List;
import org.internna.iwebmvc.core.context.ContextHolder;
import org.internna.iwebmvc.model.core.I18nText;
import org.internna.iwebmvc.model.core.Locale;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Binder for I18nText
*
* @author Jose Noheda
* @since 1.0
*/
public class I18nTextBinderTest {
@Test
public void setAsText() {
I18nTextBinder binder = new I18nTextBinder(new ContextHolder() {
@Override
public List<Locale> getAvailableLocales() {
Locale l = new Locale();
l.setDescription("English");
l.setLocale("en");
List<Locale> list = new ArrayList<Locale>(1);
list.add(l);
return list;
}
});
binder.setAsText("key=0001\nvalues=en-K");
I18nText i = (I18nText) binder.getValue();
assertEquals("0001", i.getKey());
assertEquals("K", i.getValues().get(0).getLocalizedValue());
}
}