TIB自动化测试工作室
wwwblogs/testware/
HttpUnit简介
主页:
httpunit.sourceforge/
HttpUnit是SourceForge下面的一个开源项目,它是基于JUnit的一个测试框架,主要关注于测试Web应用,解决使用JUnit框架无法对远程Web内容进行测试的弊端。
HttpUnit让测试者可以通过Java类和服务器进行交互,并且将服务器端的响应当作文本或者DOM对象进行处理。HttpUnit还提供了一个模拟Servlet容器,让你可以不需要发布Servlet,就可以对Servlet的内部代码进行测试。
为了让HtpUnit正常运行,需要安装JDK1.3.1或者以上版本。
Automated testing is a great way to ensure that code being maintained works. The Extreme Programming (XP) methodology relies heavily on it, and practitioners have available to them a range of testing frameworks, most of which work by making direct calls to the code being tested. But what if you want to test a web application? Or what if you simply want to use a web-site as part of a distributed application?
In either case, you need to be able to bypass the browser and access your site from a program. HttpUnit makes this easy. Written in Java, HttpUnit emulates the relevant portions of browser behavior, including form submission, JavaScript, basic http authentication, cookies and automatic page redirection, and allows Java test code to examine returned pages either as text, an XML DOM, or containers of forms, tables, and links. When combined with a framework such as JUnit, it is fairly easy to write tests that very quickly verify the functioning of a web site.
The same techniques used to test web sites can be used to test and develop servlets without a servlet container using ServletUnit, included in the download.
HTTPUnit的工作原理:
HttpUnit通过模拟浏览器的行为,处理页面框架(frames),cookies,页面跳转(redirects)等。通过HttpUnit提供的功能,你可以和服务器端进行信息交互,将返回的网页内容作为普通文本、XML DOM对象或者是作为链接、页面框架、图像、表单、表格等的集合进行处理。可以结合使用JUnit框架进行测试。还可以导向一个新的页面,然后进行新页面的处理,这个功能使你可以处理一组在一个操作链中的页面。
WebConversation类模拟浏览器与网站服务器进行交互
WebRequest类发送请求
WebResponse类接收响应
getText
getURL
getTables
getLinksgetLinkWith
getForms
可以测试:
1、测试某个指定的页面是否存在
2、测试页面跳转是否正确
3、测试页面内容是否正确
4、测试链接
5、测试表单
HTTPUnit和其他商业工具的对比:
商业工具一般使用记录、回放的功能来实现测试,但是这里有个缺陷,就是当页面设计被修改以后,这些被记录的行为就不能重用了,需要重新录制才能继续测试。 举个例子:如果页面上有个元素最先的设计是采用单选框,这个时候你开始测试,那么这些工具记录的就是你的单项选择动作,但是如果你的设计发生了变化,比如说我改成了下拉选择,或者使用文本框接受用户输入,这时候,你以前录制的测试过程就无效了,必须要重新录制。
    而HttpUnit因为关注点是这些控件的内容,所以不管你的外在表现形式如何变化,都不影响你已确定测试的可重用性。
目前最新版本:
20 May 2008
HttpUnit 1.7 released
下载并解压HttpUnit之后,目录结构应该如下所示:
httpunit
  +--- jars //包含创建、测试以及运行HttpUnit所必须的jar
  |
  +--- lib  // 包含HttpUnit jar
  |
  +--- doc  //文档
  |      |
  |      +--- tutorial  //基于servlet web网站的测试优先开发的简单教程
  |      |
  |      +--- api      // javadoc
  |      |
  |      +--- manual    // 用户手册
  |
  +--- examples // 采用HttpUnit编写的一些示例程序
  |
  +--- src      // HttpUnit 源代码
  |
  +--- test    // HttpUnit单元测试的一些很好的例子
只有libjars两个目录对运行HttpUnit是必须的。至少你必须将HttpUnit jar添加到系统的classpath,而其他的一些jar均为可选。
HttpUnit包括许多可选的功能。如果你并不需要这些功能,则不必在classpath中包含相应的库但至少你必须有一个HTML解析器(JTidy和NekoHTML都可被支持)和一个与jaxp兼容的解析器(在发行版中包含了xerces 2.2)。
Jar名称
所需关系
相关文档
nekohtml.jar
HTML解析器——即使是再糟糕的HTML也可适用。需要xerces-j 2.2 或更高版本
/~andyc/neko/doc/html/index.html.
tidy.jar
要求苛刻的HTML解析器。可与任何兼容jaxp解析器配合使用
lempinen/sami/jtidy/
xmlParserAPIs.jar
支持xerces-j的通用解析API
xercesImpl.jar
xerces-j 2.2可执行单元
js.jar
支持javascript
/rhino
servlet.jar
servlet单元测试工具ServletUnit 所必须的
Java.sun
junit.jar
运行单元测试
mail.jar
测试文件的上传功能(运行HttpUnit本身并不需要)
Java.sun/products/javamail/
activation.jar
测试文件的上传功能(运行HttpUnit本身并不需要)
Java.sun/products/javabeans/glasgow/jaf.html
直接获取页面内容
The very first step in any interaction with a web site is to obtain a start page. To do this, we create a WebConversation object to play the role of the web browser. This object will store browser state such a cookies, windows, and so on. We then ask for the page by specifying the desired URL:
WebConversation wc = newweb网站开发教程 WebConversation();
WebResponse wr = wc.getResponse( "ware" );
System.out.println( wr.getText() );
This example will simply print out the text of the retrieved page. Obviously, given this text, it is easy to search for particular strings on the page, if that is desired.
在Eclipse中使用HttpUnit:
import java.io.IOException;
import l.sax.SAXException;
import ware.httpunit.*;
public class Test {
    /**
    * @param args
    */
    public static void main(String[] args) {
        WebConversation wc = new WebConversation();
        WebResponse wr = null;
        try {
            wr = wc.getResponse( "127.0.0.1:1080/WebTours/" );
            System.out.println( wr.getText() );
        } catch (IOException e) {
            e.printStackTrace();
        } catch (SAXException e) {
            e.printStackTrace();
        }
    }
}
通过Get方法访问页面并且加入参数
例:
        System.out.println("向服务器发送数据,然后获取网页内容:");
        //建立一个WebConversation实例
        WebConversation wc = new WebConversation();
        //向指定的URL发出请求
        WebRequest req = new GetMethodWebRequest( "127.0.0.1:1080/WebTours/nav.pl");
        //给请求加上参数
        req.setParameter("in","home");
        //获取响应对象
        WebResponse resp;
        try {
            resp = wc.getResponse( req );       
            //getText方法获取相应的全部内容
            //System.out.println将获取的内容打印在控制台上
            System.out.println( Text() );
        } catch (IOException e) {
            e.printStackTrace();
        } catch (SAXException e) {
            e.printStackTrace();
        }
测试WebTours的例子:
import java.io.IOException;

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。