package org.displaytag.jsptests; import org.displaytag.tags.TableTagParameters; import org.displaytag.test.DisplaytagCase; import org.displaytag.util.ParamEncoder; import org.junit.Assert; import org.junit.Test; import com.meterware.httpunit.GetMethodWebRequest; import com.meterware.httpunit.HTMLElement; import com.meterware.httpunit.WebRequest; import com.meterware.httpunit.WebResponse; /** * Test for DISPL-109 - Center of paging banner number. * @author Fabrizio Giustina * @version $Revision$ ($Author$) */ public class Displ109Test extends DisplaytagCase { /** * @see org.displaytag.test.DisplaytagCase#getJspName() */ public String getJspName() { return "DISPL-109.jsp"; } /** * No exception when an invalid page is requested. * @param jspName jsp name, with full path * @throws Exception any axception thrown during test. */ @Test public void doTest() throws Exception { WebRequest request = new GetMethodWebRequest(getJspUrl(getJspName())); ParamEncoder encoder = new ParamEncoder("table"); request.setParameter(encoder.encodeParameterName(TableTagParameters.PARAMETER_PAGE), "9"); WebResponse response = runner.getResponse(request); if (log.isDebugEnabled()) { log.debug(response.getText()); } HTMLElement pagination = response.getElementWithID("pagination"); Assert.assertNotNull("Paging banner not found.", pagination); Assert.assertEquals("Pagination links are not as expected.", "7, 8, [9], 10, 11", pagination.getText()); } }