01: /*
02: * $Id: BeanSelectionProviderTest.java 502294 2007-02-01 17:28:00Z niallp $
03: *
04: * Licensed to the Apache Software Foundation (ASF) under one
05: * or more contributor license agreements. See the NOTICE file
06: * distributed with this work for additional information
07: * regarding copyright ownership. The ASF licenses this file
08: * to you under the Apache License, Version 2.0 (the
09: * "License"); you may not use this file except in compliance
10: * with the License. You may obtain a copy of the License at
11: *
12: * http://www.apache.org/licenses/LICENSE-2.0
13: *
14: * Unless required by applicable law or agreed to in writing,
15: * software distributed under the License is distributed on an
16: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17: * KIND, either express or implied. See the License for the
18: * specific language governing permissions and limitations
19: * under the License.
20: */
21: package org.apache.struts2.config;
22:
23: import java.util.Locale;
24:
25: import org.apache.struts2.StrutsConstants;
26:
27: import com.opensymphony.xwork2.inject.ContainerBuilder;
28: import com.opensymphony.xwork2.util.LocalizedTextUtil;
29: import com.opensymphony.xwork2.util.location.LocatableProperties;
30:
31: import junit.framework.TestCase;
32:
33: public class BeanSelectionProviderTest extends TestCase {
34:
35: public void testRegister() {
36: Locale.setDefault(Locale.US); // force to US locale as we also have _de and _da properties
37:
38: LocalizedTextUtil.clearDefaultResourceBundles();
39: LocalizedTextUtil
40: .addDefaultResourceBundle("org/apache/struts2/struts-messages");
41: assertEquals(
42: "The form has already been processed or no token was supplied, please try again.",
43: LocalizedTextUtil.findDefaultText(
44: "struts.messages.invalid.token", Locale
45: .getDefault()));
46:
47: LocatableProperties props = new LocatableProperties();
48: props.setProperty(StrutsConstants.STRUTS_CUSTOM_I18N_RESOURCES,
49: "testmessages,testmessages2");
50:
51: new BeanSelectionProvider().register(new ContainerBuilder(),
52: props);
53:
54: assertEquals("Replaced message for token tag",
55: LocalizedTextUtil.findDefaultText(
56: "struts.messages.invalid.token", Locale
57: .getDefault()));
58: }
59:
60: }
|