1 package org.displaytag.jsptests; 2 3 import org.displaytag.test.DisplaytagCase; 4 5 import com.meterware.httpunit.GetMethodWebRequest; 6 import com.meterware.httpunit.WebLink; 7 import com.meterware.httpunit.WebRequest; 8 import com.meterware.httpunit.WebResponse; 9 import com.meterware.httpunit.WebTable; 10 11 12 17 public class NoContextTest extends DisplaytagCase 18 { 19 20 23 public String getJspName() 24 { 25 return "nocontext.jsp"; 26 } 27 28 33 public void doTest(String jspName) throws Exception 34 { 35 WebRequest request = new GetMethodWebRequest(jspName); 36 37 WebResponse response = runner.getResponse(request); 38 if (log.isDebugEnabled()) 39 { 40 log.debug(response.getText()); 41 } 42 43 WebTable[] tables = response.getTables(); 44 assertEquals("Wrong number of tables.", 1, tables.length); 45 46 WebLink[] links = response.getLinks(); 47 assertEquals("Wrong number of links in result.", 8, links.length); 48 49 for (int j = 0; j < links.length; j++) 50 { 51 String url = links[j].getURLString(); 52 assertTrue("Invalid url: " + url, url.startsWith("/goforit")); 53 } 54 } 55 56 } | Popular Tags |