使用sampletest进行web测试

 Web不测试不同于一般的单元测试,它是基于HTTP协议的.这表现在HTTP协议的特点是没有链接状态的.同时又涉及到于浏览器的交互(包括表单,链接状态),所以比较麻烦.SimpleTest提供了一套比较完整的基于PHP的测试脚本

一: 表单测试

<? php
require_once 'simpletest/unit_tester.php'
;
require_once 'simpletest/web_tester.php'
;
require_once 'simpletest/reporter.php'
;
class PassportRegister extends
 WebTestCase {

     
// 论坛登录测试

    function  testPhpChina() {
        
$this->get('http://www.phpchina.com/bbs/logging.php?action=login'
);
        
$this->setField('username', 'your_username'
);
        
$this->setField('password', '******'
);
        
//元素的type属性为submit的input元素的name

        $this->clickSubmitByName('loginsubmit' );
        
        
// 登录结果页包含文本

        $this->assertText('your_username' );
    }
}
if (!defined('RUN_ALL'
)) {
    
$test = new
 PassportRegister();
    
$test->run(new HtmlReporter('utf-8'
));
}
?>

待续......

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值