目录
1.背景
最近都在写Python自动化测试代码,Java暂时放一放。没办法,挣钱吃饭只能听“老板”的,打工人都懂~~很久没写Python所以,遇到好些小问题。
2.问题合集
1)Pytest+allure自动化框架
接口自动化框架(Pytest+request+Allure)_软件测试官的博客-CSDN博客_接口自动化框架
Python+Pytest+Allure+Git+Jenkins接口自动化框架 - wuwei丶 - 博客园
2)Pytest中几个好用插件
python有哪些插件_Python测试工具 | 8 个很棒的pytest插件_weixin_39846612的博客-CSDN博客
3)判断一个字典在另一个字典中
def is_contained(self,exp,act):
expect=set(exp.items())
actual=set(act.items())
if expect.issubset(actual):
return True
return False
上面这个方法仅适用于有一层字典的情况。即,判断期望的exp是否在act中
exp = {
"k1": v1,
"k2": v2
}
act = {
"k1": v1,
"k2": v2,
"k3": v3
}
4)retrying的使用
一个服务的Pod正常就绪以后,还没有立刻对外提供服务,所以在访问服务的RESTFul接口时,并不会立刻访问通过。直接通过requests访问接口的时候,会出现类似这样的错误:
HTTPSConnectionPool(host=‘xxx.xxx.xxx.xxx’, port=xxx): Max retries exceeded with url: / (Caused by ProxyError(‘Cannot connect to proxy.’, NewConnectionError(’<urllib3.connection.HTTPSConnection object at 0x0000017A3B8D0208>: Failed to establish a new connection: [WinError 10061] 由于目标计算机积极拒绝,无法连接。’)))
这时需要重试。
# 最大重试次数和最大延迟时间30s
@retry(stop_max_attempt_number=5, stop_max_delay=30000)
def _foo(url):
response = requests.get(url)
assert response.status_code == 200, f"访问{url}失败"
return response
def foo(url):
try:
response = _foo(url)
result = response.text
except Exception as e:
allure.attach(f"{e}")
return result
Python3,异常进阶写法之retrying。_Carl_奕然的博客-CSDN博客_python3 retrying
5)yaml中的变量替换
虽然最终没有使用这里的种种方案,但不妨提供给大家参考。
python替换yaml变量的多种方法以及踩坑_小生测试的博客-CSDN博客_python替换yaml
6)随机生成中文字符
https://www.jb51.net/article/128987.htm
7)allure
参考高手--allure清空上一次运行的记录(--clean-alluredir) - 清风吹拂啊狂风肆虐 - 博客园
8)登录密码的RSA加密
项目中采用前后端分离,前端将明文密码通过RSA加密后传给后端。RSA加密需要的公钥是找开发同学要过来的。
import base64
from Crypto.Cipher import PKCS1_v1_5 as Cipher_pksc1_v1_5
from Crypto.PublicKey import RSA
def generate_pwd(password):
public_key = "找开发同学要的公钥"
key = '-----BEGIN PUBLIC KEY-----\n' + public_key + '\n-----END PUBLIC KEY-----'
rsakey = RSA.importKey(key)
cipher = Cipher_pksc1_v1_5.new(rsakey)
encrypt_text = cipher.encrypt(password.encode())
cipher_text_tmp = base64.b64encode(encrypt_text)
encrypt_res = cipher_text_tmp.decode()
return encrypt_res
**** 在此特别感谢参考文案中这位道友提供的方法: