/******************************************************************************
* JBoss, a division of Red Hat *
* Copyright 2006, Red Hat Middleware, LLC, and individual *
* contributors as indicated by the @authors tag. See the *
* copyright.txt in the distribution for a full listing of *
* individual contributors. *
* *
* This is free software; you can redistribute it and/or modify it *
* under the terms of the GNU Lesser General Public License as *
* published by the Free Software Foundation; either version 2.1 of *
* the License, or (at your option) any later version. *
* *
* This software is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this software; if not, write to the Free *
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA *
* 02110-1301 USA, or see the FSF site: http://www.fsf.org. *
******************************************************************************/
package org.jboss.portal.test.portlet.jsr168.tck.portletconfig;
import org.jboss.portal.unit.PortletTestCase;
import org.jboss.portal.unit.PortletTestContext;
import org.jboss.portal.unit.base.AbstractUniversalTestPortlet;
import org.jboss.portal.unit.actions.PortletRenderTestAction;
import org.jboss.portal.test.portlet.jsr168.tck.portletconfig.spec.InlineValuesWithNoResourceBundleDefinedPortlet;
import org.jboss.portal.unit.annotations.TestCase;
import org.jboss.portal.unit.Assertion;
import org.jboss.unit.driver.DriverResponse;
import org.jboss.unit.driver.response.EndTestResponse;
import static org.jboss.unit.api.Assert.fail;
import static org.jboss.unit.api.Assert.assertEquals;
import javax.portlet.Portlet;
import javax.portlet.RenderRequest;
import javax.portlet.RenderResponse;
import javax.portlet.PortletConfig;
import java.util.ResourceBundle;
import java.util.Locale;
import java.util.MissingResourceException;
/**
* @author <a href="mailto:julien@jboss.org">Julien Viet</a>
* @version $Revision: 1.1 $
*/
@TestCase({Assertion.JSR168_24})
public class InlineValuesWithNoResourceBundleDefinedTestCase
{
public InlineValuesWithNoResourceBundleDefinedTestCase(PortletTestCase seq)
{
seq.bindAction(0, InlineValuesWithNoResourceBundleDefinedPortlet.RENDER_JOIN_POINT, new PortletRenderTestAction()
{
protected DriverResponse run(Portlet portlet, RenderRequest request, RenderResponse response, PortletTestContext context)
{
PortletConfig cfg = ((AbstractUniversalTestPortlet)portlet).getPortletConfig();
ResourceBundle bundle_en = cfg.getResourceBundle(Locale.ENGLISH);
//dummy assert that we don't have resouce bundle defined...
try
{
bundle_en.getString("foo");
fail();
}
catch (MissingResourceException expected)
{
}
//These defined inline in portelt.xml and there is no bundle defined there
assertEquals("title", bundle_en.getString("javax.portlet.title"));
assertEquals("short-title", bundle_en.getString("javax.portlet.short-title"));
assertEquals("keywords", bundle_en.getString("javax.portlet.keywords"));
return new EndTestResponse();
}
});
}
}
|