KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > displaytag > jsptests > NoContextTest


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 /**
13  * Tests for dynamic links.
14  * @author Fabrizio Giustina
15  * @version $Revision: 894 $ ($Author: fgiust $)
16  */

17 public class NoContextTest extends DisplaytagCase
18 {
19
20     /**
21      * @see org.displaytag.test.DisplaytagCase#getJspName()
22      */

23     public String JavaDoc getJspName()
24     {
25         return "nocontext.jsp";
26     }
27
28     /**
29      * Test link generated for paging and export.
30      * @param jspName jsp name, with full path
31      * @throws Exception any axception thrown during test.
32      */

33     public void doTest(String JavaDoc jspName) throws Exception JavaDoc
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 JavaDoc url = links[j].getURLString();
52             assertTrue("Invalid url: " + url, url.startsWith("/goforit"));
53         }
54     }
55
56 }
Popular Tags