1 package org.displaytag.jsptests; 2 3 import org.displaytag.tags.TableTagParameters; 4 import org.displaytag.test.DisplaytagCase; 5 import org.displaytag.util.ParamEncoder; 6 7 import com.meterware.httpunit.GetMethodWebRequest; 8 import com.meterware.httpunit.HTMLElement; 9 import com.meterware.httpunit.WebRequest; 10 import com.meterware.httpunit.WebResponse; 11 12 13 /** 14 * Test for DISPL-213 - Page Listing Incorrect. 15 * @author Fabrizio Giustina 16 * @version $Revision$ ($Author$) 17 */ 18 public class Displ213Test extends DisplaytagCase 19 { 20 21 /** 22 * @see org.displaytag.test.DisplaytagCase#getJspName() 23 */ 24 public String getJspName() 25 { 26 return "DISPL-213.jsp"; 27 } 28 29 /** 30 * The last page should show up in the list. 31 * @param jspName jsp name, with full path 32 * @throws Exception any axception thrown during test. 33 */ 34 public void doTest(String jspName) throws Exception 35 { 36 WebRequest request = new GetMethodWebRequest(jspName); 37 ParamEncoder encoder = new ParamEncoder("table"); 38 request.setParameter(encoder.encodeParameterName(TableTagParameters.PARAMETER_PAGE), "9"); 39 40 WebResponse response = runner.getResponse(request); 41 42 if (log.isDebugEnabled()) 43 { 44 log.debug(response.getText()); 45 } 46 47 HTMLElement pagination = response.getElementWithID("pagination"); 48 assertNotNull("Paging banner not found.", pagination); 49 assertEquals("Pagination links are not as expected.", "6, 7, 8, [9], 10", pagination.getText()); 50 51 } 52 53 }