/******************************************************************************
* 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.api.portleturl;
import org.jboss.portal.unit.PortletTestCase;
import org.jboss.portal.unit.PortletTestContext;
import org.jboss.portal.unit.actions.PortletRenderTestAction;
import org.jboss.portal.test.portlet.framework.UTP1;
import org.jboss.portal.unit.annotations.TestCase;
import org.jboss.portal.unit.PortletTestContext;
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 javax.portlet.Portlet;
import javax.portlet.RenderRequest;
import javax.portlet.RenderResponse;
import javax.portlet.PortletURL;
import java.util.Map;
import java.util.HashMap;
/**
* @author <a href="mailto:julien@jboss.org">Julien Viet</a>
* @version $Revision: 1.1 $
*/
@TestCase({
Assertion.API286_BASE_URL_1,
Assertion.API286_BASE_URL_8
})
public class ParameterTestCase
{
public ParameterTestCase(PortletTestCase seq)
{
seq.bindAction(0, UTP1.RENDER_JOIN_POINT, new PortletRenderTestAction()
{
protected DriverResponse run(Portlet portlet, RenderRequest request, RenderResponse response, PortletTestContext context)
{
PortletURL url = response.createRenderURL();
String val = null;
String[] vals = null;
try
{
url.setParameter("name", val);
fail();
}
catch (IllegalArgumentException e)
{
//expected
}
try
{
url.setParameter(null, "val");
fail();
}
catch (IllegalArgumentException e)
{
//
}
try
{
url.setParameter("name", vals);
fail();
}
catch (IllegalArgumentException e)
{
//
}
try
{
url.setParameter(null, new String[]{"val1, val2"});
fail();
}
catch (IllegalArgumentException e)
{
//
}
try
{
url.setParameter(null, val);
fail();
}
catch (IllegalArgumentException e)
{
//
}
try
{
url.setParameter(null, vals);
fail();
}
catch (IllegalArgumentException e)
{
//
}
try
{
url.setParameters(null);
fail();
}
catch (IllegalArgumentException e)
{
//
}
Map map = new HashMap();
map.put("name", "val");
map.put(null, "val");
try
{
url.setParameters(map);
fail();
}
catch (IllegalArgumentException e)
{
//
}
map = new HashMap();
map.put("name", "val");
map.put("name2", new Object());
try
{
url.setParameters(map);
fail();
}
catch (IllegalArgumentException e)
{
//
}
map = new HashMap();
map.put("name", new String[]{"val"});
map.put("name2", null);
try
{
url.setParameters(map);
fail();
}
catch (IllegalArgumentException e)
{
//
}
return new EndTestResponse();
}
});
}
}
|