初探接口测试框架--python系列6
点击标题下「蓝色微信名」可快速关注
坚持的是分享,搬运的是知识,图的是大家的进步,没有收费的培训,没有虚度的吹水,喜欢就关注、转发(免费帮助更多伙伴)等来交流,想了解的知识请留言,给你带来更多价值,是我们期待的方向,有更多兴趣的欢迎切磋,我们微信订阅号,联系方式如下:
更多书籍,敬请期待
背景说明
这是python系列的第6课了,不知道前面的知识大家掌握的怎么样,是否有感觉到已经接触到了接口测试的框架了呢?话不多说,接着练习。
1作业内容
题目5:写一个网络请求,通过传入CityName 和 CountryName,获取天气情况URL:http://www.webservicex.net/globalweather.asmx/GetWeather
参数:CityName 和 CountryName
方法:post
要求:
1、参数的值从excel中获取(两列),实际值和结果反填写到对应的行的后面
2、每一行是一个测试用例
3、期望值,自己填写,并判断期望值和实际值是否相等,相等则结果为pass,否则为failed
4、填写每个请求的响应时间
2相关知识点
1、处理xlsx文件的库
http://www.python-excel.org/有列举,选用了第一种openpyxl,直接使用pipinstall安装。
Working with Excel Files in Python
This site contains pointers to the best information available about working with Excel files
in the Python programming language.
The Packages
There are python packages available to work with Excel files that will run on any Python
platform and that do not require either Windows or Excel to be used. They are fast, reliable
and open source:
openpyxl
The recommended package for reading and writing Excel 2010 files (ie: .xlsx)
Download | Documentation | Bitbucket
xlsxwriter
An alternative package for writing data, formatting information and, in particular, charts in
the Excel 2010 format (ie: .xlsx)
Download | Documentation | GitHub
xlrd
This package is for reading data and formatting information from older Excel files (ie: .xls)
Download | Documentation | GitHub
xlwt
This package is for writing data and formatting information to older Excel files (ie: .xls)
Download | Documentation | Examples | GitHub
xlutils
This package collects utilities that require both xlrd and xlwt, including the ability to copy
and modify or filter existing excel files.
NB: In general, these use cases are now covered by openpyxl!
Download | Documentation | GitHub
2、openpyxl库基本使用
打开表格
table = openpyxl.load_workbook(filename)
获取第一个sheet名
sheetname =table.get_sheet_names()[0].encode('ascii')
获得某个位置的值
Value = table[sheetname][XX].value.encode('ascii')
设置/修改某个位置的值
table[sheetname][XX].value = setvalue
保存表格
table.save(filename)
基本上就使用这几个命令来读取修改表格,其中位置是通过循环读取当前row拼接而成。
3、处理请求返回的xml
建立请求是之前的内容,使用urllib2进行请求,将传递的参数用urllib.urlencode进行编码。
req =urllib2.Request(url)
data = urllib.urlencode(data)
response= urllib2.urlopen(url, data)
这里返回的xml如下
<?xml version="1.0"encoding="utf-8"?>
<stringxmlns="http://www.webserviceX.NET"><?xmlversion="1.0" encoding="utf-16"?>
<CurrentWeather>
<Location>Beijing, China (ZBAA) 39-56N 116-17E55M</Location>
<Time>Mar 15, 2016 - 10:00 PM EDT / 2016.03.16 0200UTC</Time>
<Wind> from the ENE (060 degrees) at 7 MPH (6KT):0</Wind>
<Visibility> 1 mile(s):0</Visibility>
<Temperature> 48 F (9 C)</Temperature>
<DewPoint> 35 F (2 C)</DewPoint>
<RelativeHumidity> 61%</RelativeHumidity>
<Pressure> 30.06 in. Hg (1018hPa)</Pressure>
<Status>Success</Status>
</CurrentWeather></string>
是在一个xml里头又嵌套了一层。
处理方法想了两种:
1. 去掉一个头
先使用xml.sax.saxutils. unescape来处理html编码问题
再使用正则去掉第二行内容和末尾的</string>
再传给xml.dom.minidom.parseString格式化成为xml对象
2. 使用xml.dom.minidom.parseString两次
第一次将返回内容格式化后,取string xmlns这个child再格式化一次
因为xml.dom.minidom.parseString处理编码声明的UTF-16报错,还需做个替换,将其修改为UTF-8。使用方法1或2得到的xml对象用之前学习的方法getElementsByTagName取得需要的tag值。请求响应时间使用函数time()取了两次做减法来取得。
4、循环处理
通过openpyxl库的方法获取整个xlsx表的行数,将循环范围设定为从第二行到文件的最后一行。每读取一行,读取其中的参数,建立请求取得结果,进行结果对比,修改该行相关结果值。最后进行保存。
3后语
参考例子,请加入QQ群获取, 到此,我们第6课,第5次作业,需要的知识点和参考的样例全部奉献出来了,action起来!
推荐的文章
↓↓↓ 点击"阅读原文" 【查看更多信息】