当前位置:网站首页>Pytest learning ----- detailed explanation of the request for interface automation test
Pytest learning ----- detailed explanation of the request for interface automation test
2022-07-06 17:49:00 【Peng Yuyan in the testing industry】
One 、 Interface automation implementation
Tool classes realize interface automation :
1.Postman+Newman+git/svn+jenkins
2.jmeter+Ant+git/svn+jenkins
Build a code framework to realize interface automation :
Use the development language + Tool class : Such as Java、Python
Two 、 Why do you build an interface automation framework
1. agile development , When iterating over a product project , Generally, the number of interfaces is relatively large , It is convenient for the team to realize interface test version control .( Main cause )
2. The function of the tool is too rigid , Some interfaces are completely impossible to implement ( For example, complex encryption interface , Signature interface, etc ,postman Only use md5 encryption )
3. There are many interfaces with different protocols in the interface project .
4. It's difficult to make mistakes , Inconvenient positioning , It needs to be combined with packet capturing .
5. There is no way to generate beautiful test reports , Especially for outsourcing companies .
6. Multiple interfaces in series , Database validation , Log monitoring, etc
7. Some companies do web automation + Interface automation .
3、 ... and 、Python+requests The module realizes interface automation
1.requests Third party libraries are mainly used to send http request , Interface automation
install requests library :pip install requests

2.requests Overall view
request :
1.requests.get() send out get request
2.requests.post() send out post request
3.requests.delete() send out delete request
4.requests.put() send out put request
5.requests.request() The core approach
Respond to :
import requests
rep = requests.request()
# Return string data
print(rep.text)
# Returns data in dictionary format
print(rep.json())
# Return status code
print(rep.status_code)
# return cookies
print(rep.cookies)
# Returns the encoding format
print(rep.encoding)
# Return response header
print(rep.headers)
3. Interface practice
Request mode :get、post、delete、put
Request parameter type : Key value pair 、JSON Format 、 File format .
import time
import pytest
import requests
# class setup_class:
class TestSendRequsets:
# def setup(self):
# print(" Before each use case is executed ")
# def teardown(self):
# print(" After each use case is executed ")
# @pytest.fixture()
def test_getImgCode(self):
# Interface url
t = time.time()
timess = str(int(round(t * 1000)))
times = str(int(t))
url = "http://124.71.230.185:9002/jeecg-boot/sys/randomImage/" + "" + timess
# Parameters
data = {
"_t": times,
}
# # get request
rep = requests.request('get', url, params=data)
print(rep.text)
# Only execute smoke
# @pytest.mark.smoke
def test_Login(self):
# post request
url = "http://124.71.230.185:9002/jeecg-boot/sys/login"
# Parameters
data = {
"captcha": "[email protected]#2019",
"checkKey": 1637811815838,
"password": "123456",
"remember_me": 1,
"username": "admin"
}
rep = requests.request('post', url, json=data)
statues = rep.json()["success"]
message = rep.json()["message"]
if statues:
print(message)
else:
# raise Exception(message)
print(message)
if __name__ == '__main__':
pytest.main(['-vs']);
Use case management framework : install pytestpip install pytest
The default rules :
1. Test file with test End or already test start
2. Test function to test_ start
3. Test method with Test start , But not with init() Method ;
Be careful :
get Request by params Pass parameters
post Request by json perhaps data Pass parameters , The difference is that :
data:
The data packet dict Dictionary type : By default, the request header is application/x-www-form-urlencoded, Said to form Form transmission , Format a=1&b=2&c=3
json:
The data packet : Whether it's dict Type or str type , The default is application/json, Format {"a":1,"b":2}
json.dumps(data), serialize , Convert data in dictionary format into str Data of type
json.loads(data), Deserialization , hold str Convert format to dictionary format .
![]()
The following is the supporting information , For doing 【 software test 】 For our friends, it should be the most comprehensive and complete war preparation warehouse , This warehouse also accompanied me through the most difficult journey , I hope it can help you !
Last : It can be in the official account : Programmer Xiaohao ! Get a free copy of 216 Page software testing engineer interview guide document information . And the corresponding video learning tutorial is free to share !, It includes basic knowledge 、Linux necessary 、Shell、 The principles of the Internet 、Mysql database 、 Special topic of bag capturing tools 、 Interface testing tool 、 Test advanced -Python Programming 、Web automated testing 、APP automated testing 、 Interface automation testing 、 Testing advanced continuous integration 、 Test architecture development test framework 、 Performance testing 、 Safety test, etc. .
If my blog helps you 、 If you like my blog content , please “ give the thumbs-up ” “ Comment on ” “ Collection ” One button, three links ! Friends who like software testing , You can join our testing technology exchange group :779450660 There are various software testing resources and technical discussions )
边栏推荐
- EasyCVR接入设备开启音频后,视频无法正常播放是什么原因?
- VR panoramic wedding helps couples record romantic and beautiful scenes
- Wechat applet obtains mobile number
- 【MySQL入门】第四话 · 和kiko一起探索MySQL中的运算符
- About selenium starting Chrome browser flash back
- Automatic operation and maintenance sharp weapon ansible Foundation
- 历史上的今天:Google 之母出生;同一天诞生的两位图灵奖先驱
- [translation] principle analysis of X Window Manager (I)
- [ASM] introduction and use of bytecode operation classwriter class
- The most complete tcpdump and Wireshark packet capturing practice in the whole network
猜你喜欢

Pytorch extract middle layer features?

05 personal R & D products and promotion - data synchronization tool

The solution that flutterweb browser cannot be rolled back after refreshing

yarn : 无法加载文件 D:\ProgramFiles\nodejs\yarn.ps1,因为在此系统上禁止运行脚本

sql语句优化,order by desc速度优化
![[rapid environment construction] openharmony 10 minute tutorial (cub pie)](/img/b5/feb9c56a65c3b07403710e23078a6f.jpg)
[rapid environment construction] openharmony 10 minute tutorial (cub pie)

Pyspark operator processing spatial data full parsing (4): let's talk about spatial operations first

Unity小技巧 - 绘制瞄准准心

Optimization of middle alignment of loading style of device player in easycvr electronic map

Huawei certified cloud computing hica
随机推荐
Unity particle special effects series - treasure chest of shining stars
Alertmanager sends the alarm email and specifies it as the Alibaba mailbox of the company
[introduction to MySQL] the first sentence · first time in the "database" Mainland
Uipath browser performs actions in the new tab
2022年大厂Android面试题汇总(一)(含答案)
Debug and run the first xv6 program
Establishment of graphical monitoring grafana
In terms of byte measurement with an annual salary of 30W, automated testing can be learned in this way
Kali2021 installation and basic configuration
Mysqlimport imports data files into the database
Compile and build, from the bottom to the top
EasyCVR平台通过接口编辑通道出现报错“ID不能为空”,是什么原因?
EasyCVR电子地图中设备播放器loading样式的居中对齐优化
Solution qui ne peut pas être retournée après la mise à jour du navigateur Web flutter
Concept and basic knowledge of network layering
MySQL error reporting solution
Flink parsing (VII): time window
【MySQL入门】第四话 · 和kiko一起探索MySQL中的运算符
[elastic] elastic lacks xpack and cannot create template unknown setting index lifecycle. name index. lifecycle. rollover_ alias
[translation] principle analysis of X Window Manager (I)