Home » displaytag-1.1.1-src » org » displaytag » jsptests » [javadoc | source]

    1   package org.displaytag.jsptests;
    2   
    3   import org.displaytag.test.DisplaytagCase;
    4   
    5   import com.meterware.httpunit.GetMethodWebRequest;
    6   import com.meterware.httpunit.WebRequest;
    7   import com.meterware.httpunit.WebResponse;
    8   import com.meterware.httpunit.WebTable;
    9   
   10   
   11   /**
   12    * Test for DISPL-181 - allow use of arrays as input instead of List.
   13    * @author Fabrizio Giustina
   14    * @version $Revision$ ($Author$)
   15    */
   16   public class Displ181Test extends DisplaytagCase
   17   {
   18   
   19       /**
   20        * @see org.displaytag.test.DisplaytagCase#getJspName()
   21        */
   22       public String getJspName()
   23       {
   24           return "DISPL-181.jsp";
   25       }
   26   
   27       /**
   28        * No exception when an invalid page is requested.
   29        * @param jspName jsp name, with full path
   30        * @throws Exception any axception thrown during test.
   31        */
   32       public void doTest(String jspName) throws Exception
   33       {
   34           WebRequest request = new GetMethodWebRequest(jspName);
   35   
   36           WebResponse response = runner.getResponse(request);
   37   
   38           if (log.isDebugEnabled())
   39           {
   40               log.debug(response.getText());
   41           }
   42   
   43           WebTable[] tables = response.getTables();
   44           assertEquals("Wrong number of tables in result.", 1, tables.length);
   45           assertEquals("Wrong number of rows in result.", 3, tables[0].getRowCount());
   46   
   47           if (log.isDebugEnabled())
   48           {
   49               log.debug(response.getText());
   50           }
   51   
   52           assertEquals("Wrong column content.", "ant", tables[0].getCellAsText(1, 0));
   53           assertEquals("Wrong column content.", "ant", tables[0].getCellAsText(2, 0));
   54       }
   55   
   56   }

Home » displaytag-1.1.1-src » org » displaytag » jsptests » [javadoc | source]