You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by mb...@apache.org on 2007/02/25 14:03:11 UTC

svn commit: r511497 - /myfaces/core/branches/jsf12/impl/src/test/java/org/apache/myfaces/application/ApplicationImplTest.java

Author: mbr
Date: Sun Feb 25 05:03:10 2007
New Revision: 511497

URL: http://svn.apache.org/viewvc?view=rev&rev=511497
Log:
Tests for new <resource-bundle> config
TODO: add remaining tests for ApplicationImpl

Added:
    myfaces/core/branches/jsf12/impl/src/test/java/org/apache/myfaces/application/ApplicationImplTest.java   (with props)

Added: myfaces/core/branches/jsf12/impl/src/test/java/org/apache/myfaces/application/ApplicationImplTest.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/jsf12/impl/src/test/java/org/apache/myfaces/application/ApplicationImplTest.java?view=auto&rev=511497
==============================================================================
--- myfaces/core/branches/jsf12/impl/src/test/java/org/apache/myfaces/application/ApplicationImplTest.java (added)
+++ myfaces/core/branches/jsf12/impl/src/test/java/org/apache/myfaces/application/ApplicationImplTest.java Sun Feb 25 05:03:10 2007
@@ -0,0 +1,155 @@
+/*
+ * 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.application;
+
+import static org.apache.myfaces.test.AssertThrowables.assertThrowable;
+
+import org.apache.myfaces.config.RuntimeConfig;
+import org.apache.myfaces.test.TestRunnable;
+import org.apache.shale.test.mock.MockFacesContext;
+
+import javax.faces.FacesException;
+import javax.faces.component.UIViewRoot;
+import javax.faces.context.FacesContext;
+
+import java.util.ListResourceBundle;
+import java.util.Locale;
+import java.util.ResourceBundle;
+
+import junit.framework.TestCase;
+
+/**
+ * @author Mathias Broekelmann (latest modification by $Author$)
+ * @version $Revision$ $Date$
+ */
+public class ApplicationImplTest extends TestCase
+{
+
+    private ApplicationImpl app;
+    private MockFacesContext context;
+
+    protected void setUp() throws Exception
+    {
+        app = new ApplicationImpl(new RuntimeConfig());
+        context = new MockFacesContext();
+    }
+
+    /**
+     * Test method for
+     * {@link org.apache.myfaces.application.ApplicationImpl#getResourceBundle(javax.faces.context.FacesContext, java.lang.String)}.
+     */
+    public void testGetResourceBundleNPE()
+    {
+        assertThrowable(NullPointerException.class, new TestRunnable()
+        {
+            public void run()
+            {
+                app.getResourceBundle(null, "xxx");
+            }
+        });
+        assertThrowable(NullPointerException.class, new TestRunnable()
+        {
+            public void run()
+            {
+                app.getResourceBundle(context, null);
+            }
+        });
+    }
+
+    /**
+     * <p>
+     * Test if a {@link FacesException} is thrown if the specified resource bundle can not be found.
+     * </p>
+     * Test method for
+     * {@link org.apache.myfaces.application.ApplicationImpl#getResourceBundle(javax.faces.context.FacesContext, java.lang.String)}.
+     */
+    public void testGetResourceBundleFacesException()
+    {
+        final ApplicationImpl myApp = new ApplicationImpl(new RuntimeConfig())
+        {
+            @Override
+            String getBundleName(FacesContext facesContext, String name)
+            {
+                return "bundleName";
+            }
+        };
+        assertThrowable(FacesException.class, new TestRunnable()
+        {
+            public void run()
+            {
+                myApp.getResourceBundle(context, "xxx");
+            }
+        });
+    }
+
+    /**
+     * Test method for
+     * {@link org.apache.myfaces.application.ApplicationImpl#getResourceBundle(javax.faces.context.FacesContext, java.lang.String)}.
+     */
+    public void testGetResourceBundleWithDefaultLocale()
+    {
+        assertGetResourceBundleWithLocale(Locale.getDefault());
+    }
+
+    /**
+     * Test method for
+     * {@link org.apache.myfaces.application.ApplicationImpl#getResourceBundle(javax.faces.context.FacesContext, java.lang.String)}.
+     */
+    public void testGetResourceBundleWithUIViewRootLocale()
+    {
+        Locale locale = new Locale("xx");
+        UIViewRoot viewRoot = new UIViewRoot();
+        context.setViewRoot(viewRoot);
+        viewRoot.setLocale(locale);
+        assertGetResourceBundleWithLocale(locale);
+    }
+
+    private void assertGetResourceBundleWithLocale(final Locale expectedLocale)
+    {
+        final String var = "test";
+        final String bundleName = "bundleName";
+        final ResourceBundle bundle = new ListResourceBundle()
+        {
+            @Override
+            protected Object[][] getContents()
+            {
+                return null;
+            }
+        };
+        ApplicationImpl myapp = new ApplicationImpl(new RuntimeConfig())
+        {
+            @Override
+            String getBundleName(FacesContext facesContext, String name)
+            {
+                assertEquals(var, name);
+                return bundleName;
+            }
+
+            @Override
+            ResourceBundle getResourceBundle(String name, Locale locale, ClassLoader loader)
+            {
+                assertEquals(Thread.currentThread().getContextClassLoader(), loader);
+                assertEquals(bundleName, name);
+                assertEquals(expectedLocale, locale);
+                return bundle;
+            }
+        };
+        assertSame(bundle, myapp.getResourceBundle(context, var));
+    }
+}

Propchange: myfaces/core/branches/jsf12/impl/src/test/java/org/apache/myfaces/application/ApplicationImplTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/core/branches/jsf12/impl/src/test/java/org/apache/myfaces/application/ApplicationImplTest.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL