联教测试部[web自动化]培训3_unittest框架.docx
《联教测试部[web自动化]培训3_unittest框架.docx》由会员分享,可在线阅读,更多相关《联教测试部[web自动化]培训3_unittest框架.docx(45页珍藏版)》请在三一办公上搜索。
1、WEB自动化测试培训32016/06/03课程讲师 肖能尤课程目的熟悉和掌握Unittest单元测试框架课程内容1 Unittest单元测试框架介绍unittest是python的单元测试框架, 在python的官方文档中,对unittest有详细的介绍,想更深一步研究的同学可以到https:/www.python.org/doc/去了解,当然,我这里也会接介绍的。unittest单元测试提供了创建测试用例,测试套件以及批量执行的方案,unittest在安装pyhton以后就直接自带了,直接import unittest就可以使用。作为单元测试的框架,unittest也是可以对程序最小模块的一
2、种敏捷化的测试。在自动化测试中,我们虽然不需要做白盒测试,但是必须需要知道所使用语言的单元测试框架,这是因为把selenium2的API全部学习完后,就会遇到用例的组织问题,虽然函数式编程和面向对象编程提供了对代码的重构,但是对于所编写的每个测试用例,总不能编写成一个函数(方法)来调用执行吧?很显然,这是不明智的作法。利用单元测试框架,创建一个类,该类继承unittest的TestCase,这样可以把每个case看成是一个最小的单元,由测试容器组织起来,到时候直接执行,同时引入测试报告(这是一直所期望的),对于unittest部分,下面详细的依次介绍。unittest各组件的关系为: 1.1
3、unittest模块实战unittest支持测试的自动化处理,也同时包含测试的初始化和结束测试,以及把测试用例按模块化封装成一个测试套件,来进行批量的处理。在一个模块化的测试用例中,包含共同的代码,如公司教务网的登录的测试用例,都得先打开浏览器访问项目地址,执行测试用例完成后,关闭浏览器结束测试,一般开始使用“setUp”表示,结束使用“tearDown”,setUp和tearDown被称为测试固件。在测试执行的时候,setUp首先被执行,而且仅会执行一次,这个方法执行通过后,不管后面的测试是否通过,都会执行tearDown来结束测试。在unittest中,提供了TestRunner来为运行测
4、试,该类对象提供了run方法,其中接受TestCase或者TestSuite参数,并且返回测试结果,一般经常使用的是TextTestRunner运行器,可以看成是测试容器。下面写以教务网的登陆例子来验证登陆这个用例是否登陆成功来说明备注:切记在unittest中,测试用例必须以test开头。实现的代码:代码:# -*- coding: utf-8 -*-from selenium import webdriverfrom selenium.webdriver.support.ui import Selectimport unittest, time, reclass Login(unittes
5、t.TestCase): def setUp(self): self.driver = webdriver.Firefox() self.driver.implicitly_wait(30) self.base_url = http:/192.168.30.180/Uet-Uechn/ def test_login(self): check login success or fail driver = self.driver driver.get(self.base_url) driver.find_element_by_id(txtUserName).clear() driver.find_
6、element_by_id(txtUserName).send_keys(18634564149) driver.find_element_by_id(txtPassword).clear() driver.find_element_by_id(txtPassword).send_keys(123123) time.sleep(2) driver.find_element_by_link_text(u登录).click() time.sleep(1) def tearDown(self): self.driver.quit() if _name_ = _main_:unittest.main(
7、verbosity=2)运行结果:脚本讲解:我们来详细的介绍下如上的代码和输出结果,导入了unittest,创建了测试的类(测试模块名称),继承TestCase,在测试固件中分别写的测试时候的初始化和测试结束后资源释放的代码,中间test_login是测试用例,也就是自动化的测试用例,在主函数中,直接调用main(),在main中加入verbosity=2,这样测试的结果就会显示的更加详细。这里的verbosity是一个选项,表示测试结果的信息复杂度,有三个值0 (静默模式): 你只能获得总的测试用例数和总的结果 比如 总共100个 失败20 成功801 (默认模式): 非常类似静默模式 只是
8、在每个成功的用例前面有个“.” 每个失败的用例前面有个 “F”2 (详细模式):测试结果会显示每个测试用例的所有相关的信息在编写的每个case中,可以加注释,这样在测试结果中,我们就知道该case是测试那个功能的,如上的截图,依据测试结果,我们就知道第一个testcase是测试登陆的。1.2 构建测试套件在1.1介绍测试模块的时候,借助unittest测试框架编写了一个简单的case,在节中,来介绍怎么构建测试套件,测试套件顾名思义就是测试用例的容器。 在说明测试套件的时候,以老师平板的项目为案例,来说明测试套件在项目中的实际应用。新建testCase的package,在package中创建t
9、est_a1_login 登陆模块和test_a10_safe_custody 安全监护模块等,见目录结构test_a10_safe_custody模块代码:#coding:utf-8from appium import webdriverfrom selenium import webdriverfrom time import sleepfrom mon.by import Byimport unittest,syssys.path.append(./page)from page.baseTestCase import AppTestCase#安全监护class Safe_custody(
10、AppTestCase): def test_a1_Safe_custody(self): 首页-安全监护 self.driver.find_element(By.NAME,u安全监护).click() self.wait def test_a2_Safe_custody_bottom(self): 点击安全监护-讲台-底部 self.driver.find_element(By.NAME,u安全监护).click() self.wait self.driver.find_element(By.ID,com.uet.teacherspad:id/rdobtn_reverse).click()
11、self.wait def test_a3_Safe_custody_top(self): 点击安全监护-讲台-底部-顶部 self.driver.find_element(By.NAME,u安全监护).click() self.wait self.driver.find_element(By.ID,com.uet.teacherspad:id/rdobtn_reverse).click() self.wait self.driver.find_element(By.ID,com.uet.teacherspad:id/rdobtn_obverse).click() self.wait if _
12、name_=_main_: unittest.main(verbosity=2) # # #构造测试集# suite = unittest.TestSuite() # suite.addTest(Safe_custody(test_a3_Safe_custody_top)# # # 执行测试# runner = unittest.TextTestRunner()# runner.run(suite)1.2.1 addTest的应用当有多个或者几百测试用例的时候,这样就需要一个测试容器(测试套件),把测试用例放在该容器中进行执行,unittest模块中提供了TestSuite类来生成测试套件,使
13、用该类的构造函数可以生成一个测试套件的实例,该类提供了addTest来把每个测试用例加入到测试套件中。在weke模块中编写了测试使用到的方法,下来我们test_a10_safe_custody模块中编写几个测试用例,以实例的方式来说明addTest的应用,见wekeTest模块中的代码和执行结果截图:代码:#coding:utf-8from appium import webdriverfrom selenium import webdriverfrom time import sleepfrom mon.by import Byimport unittest,syssys.path.appe
14、nd(./page)from page.baseTestCase import AppTestCase#安全监护class Safe_custody(AppTestCase): def test_a1_Safe_custody(self): 首页-安全监护 self.driver.find_element(By.NAME,u安全监护).click() self.wait def test_a2_Safe_custody_bottom(self): 点击安全监护-讲台-底部 self.driver.find_element(By.NAME,u安全监护).click() self.wait sel
15、f.driver.find_element(By.ID,com.uet.teacherspad:id/rdobtn_reverse).click() self.wait def test_a3_Safe_custody_top(self): 点击安全监护-讲台-底部-顶部 self.driver.find_element(By.NAME,u安全监护).click() self.wait self.driver.find_element(By.ID,com.uet.teacherspad:id/rdobtn_reverse).click() self.wait self.driver.find_
16、element(By.ID,com.uet.teacherspad:id/rdobtn_obverse).click() self.wait if _name_=_main_: #构造测试集 suite = unittest.TestSuite() suite.addTest(Safe_custody(test_a1_Safe_custody) suite.addTest(Safe_custody(test_a2_Safe_custody_bottom) suite.addTest(Safe_custody(test_a3_Safe_custody_top) # 执行测试 runner = u
17、nittest.TextTestRunner(verbosity=2) runner.run(suite) 运行结果:依据执行结果的截图,可以很清楚的看到,先执行test_a1,至到test_a3,这是由如下代码决定的: suite = unittest.TestSuite() suite.addTest(Safe_custody(test_a1_Safe_custody) suite.addTest(Safe_custody(test_a2_Safe_custody_bottom) suite.addTest(Safe_custody(test_a3_Safe_custody_top)sui
18、te是测试套件的实例,调用addTest()方法添加需要执行的case,顺序可以依次来,或者按自己的想法来,添加case到测试套件后,调用unittest模块中TextTestRunner类的run()方法,传入参数为测试套件的实例suite。使用addTest方法,可以实现把测试的case添加到测试套件suite中,但是我个人不建议使用addTest()方法,理由很简单,如果测试case很多,都得需要添加,感觉是重复造轮子。1.2.2 makeSuite()在介绍addTest()方法的时候,就说到了它的缺点,重复造轮子并不是想要的,但是代码还是得一步一步的重构。在unittest框架中提供
19、了makeSuite()的方法,makeSuite可以实现把测试用例类内所有的测试case组成的测试套件TestSuite,unittest调用makeSuite的时候,只需要把测试类名称传入即可。把上面的代码使用makeSuite重构后为:代码重构:#coding:utf-8from appium import webdriverfrom selenium import webdriverfrom time import sleepfrom mon.by import Byimport unittest,syssys.path.append(./page)from page.baseTest
20、Case import AppTestCase#安全监护class Safe_custody(AppTestCase): def test_a1_Safe_custody(self): 首页-安全监护 self.driver.find_element(By.NAME,u安全监护).click() self.wait def test_a2_Safe_custody_bottom(self): 点击安全监护-讲台-底部 self.driver.find_element(By.NAME,u安全监护).click() self.wait self.driver.find_element(By.ID,
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- web自动化 测试 web 自动化 培训 _unittest 框架
链接地址:https://www.31ppt.com/p-1674976.html