当前位置:   article > 正文

Python接口自动化测试-篇1(postman+requests+pytest+allure)_python postman

python postman

Python接口自动化测试是一种使用Python编程语言来编写脚本以自动执行针对应用程序接口(APIs)的测试过程。这种测试方法专注于检查系统的不同组件或服务之间的交互,确保它们按照预期规范进行通信,而不涉及用户界面(UI)的验证。

目录

一、接口测试基础

二、工具实现接口测试

2.1、postman接口测试

2.2、postman自动关联

2.3、postman批量执行

2.4、登录单接口测试

2.5、postman断言

2.6、postman参数化

2.7、课程增删改查测试

三、代码实现接口测试

2.1、图片验证码获取及登录自动化

2.2、课程新增代码自动化

2.3、合同上传与新增接口自动化

2.4、登录单接口自动化测试

2.5、登录单接口自动化-数据驱动实现

2.6、课程添加自动化

2.7、课程查询接口自动化

2.8、课程修改接口自动化

2.9、课程删除接口自动化

2.10、项目配置文件config

2.11、allure生成测试报告


一、接口测试基础

URL的组成=协议+服务器地址+端口号+资源路径+参数

Http请求:请求行+请求头+请求体

请求行=请求类型+资源地址+版本协议

请求头(键值对类型)=请求数据类型等

请求体=请求的数据,一般使用Json类型

Http响应:状态行+响应头

状态行=协议版本号+响应状态码+响应状态说明

响应头=响应服务器+响应时间+响应类型+响应内容长度

响应体=响应的内容,一般是json串的形式

二、工具实现接口测试

2.1、postman接口测试

1.使用postman发送GET请求:查询uuid

2.使用postman发送POST请求:根据uuid进行登录请求

2.2、postman自动关联

有多个接口请求,需要将一个接口的返回的结果保存为变量,另外一个接口请求的时候使用保存变量。

1.首先创建一个环境变量:并命名为FAT。

2.在第一个接口中设置环境变量,并将第一个接口请求的参数设置到环境变量中去。

3.在第二个接口的请求参数中直接动态引用从第一个接口中获取的动态变量值。

4.在登录接口中获取响应得到的token,存储为环境变量。

5.在新增课程的接口中,引用登录接口存储的token变量。

6.合同上传接口,需要获取登录接口保存的token环境变量。

7.在合同上传接口的请求体里设置待上传的合同文件。

8.需要在合同上传接口中将响应得到的fileName字段保存为环境变量。

9.在添加合同接口中使用{{fileName}}引用合同上传接口中保存的环境变量。

10.通过手机号查询合同信息。

2.3、postman批量执行

在接口自动化测试文件夹中选择run,然后点击如下箭头所示的Run自动化测试即可实现接口的批量执行。

2.4、登录单接口测试

1.可以创建一个文件夹,在文件夹下建立测试用例请求,进行一个接口的所有用例的测试。

2.5、postman断言

可以在postman中设置断言,Tests中断言函数,通过断言函数对响应结果进行断言。

2.6、postman参数化

设置文件并加载,然后使用动态参数{{变量名}}获取文件中的字段。

2.7、课程增删改查测试

由于增删改查的思路都是一致的,设置请求url,请求头以及请求体即可完成测试,在一个课程添加文件夹下可以测试与管理多个用例。

三、代码实现接口测试

接口自动化测试流程:1.选取自动化测试用例 2.搭建自动化测试环境 3.搭建自动化测试框架 4.代码实现自动化 5.输出测试报告 6.实现持续集成

核心技术:python语言+pytest框架+requests框架

自动化测试框架的目录结构:

2.1、图片验证码获取及登录自动化

第一步,获取图片验证码:

  1. # 获取图片验证码
  2. # 1.导包
  3. import requests
  4. # 2.发送请求
  5. response = requests.get(url="http://kdtx-test.itheima.net/api/captchaImage")
  6. # 3.查看响应
  7. print(response.status_code)
  8. print(response.text)

第二步:根据获取的验证码uuid发送登录请求

  1. # 登录
  2. # 1.导包
  3. import requests
  4. # 2.发送请求
  5. url = "http://kdtx-test.itheima.net/api/login"
  6. header_data = {
  7. "Content-Type": "application/json"
  8. }
  9. login_data = {
  10. "username": "admin",
  11. "password": "HM_2023_test",
  12. "code": "2",
  13. "uuid": "98648849e1214e67bd7c9d4af396ab69"
  14. }
  15. try:
  16. response = requests.post(url=url,headers=header_data,json=login_data)
  17. except Exception as e:
  18. print("异常:", e)
  19. finally:
  20. pass
  21. # 3.获取响应结果
  22. print(response.status_code)
  23. print(response.json())

上述的代码并没有合理的实现api的封装与调用,下面将登录过程封装到api包下的loginAPI类中,再后续的测试中直接实例化登录类,并调用相应的方法即可实现登录。

  1. # 依据接口文档,封接口信息,需要使用的测试数据从测试用例传递
  2. # 接口方法被调用需要返回对应的响应结果
  3. # 1.导包
  4. import requests
  5. # 2.创建接口类
  6. class loginAPI:
  7. # 初始化
  8. def __init__(self):
  9. # 指定url
  10. self.url_verify = "http://kdtx-test.itheima.net/api/captchaImage"
  11. self.url_login = "http://kdtx-test.itheima.net/api/login"
  12. # 验证码
  13. def get_verify_code(self):
  14. return requests.get(url=self.url_verify)
  15. # 登录
  16. def login(self, test_data):
  17. return requests.post(self.url_login, json=test_data)

在具体的测试类中调用封装的api进行获取验证码以及登录。

  1. # 1.导包
  2. from api.login import loginAPI
  3. # 2.创建测试类
  4. class TestContractBusiness:
  5. # 2.1 前置处理
  6. def setup(self):
  7. # 实例化接口对象
  8. self.login_api = loginAPI()
  9. # 2.2 后置处理
  10. def teardown(self):
  11. pass
  12. # 01.登录成功
  13. def test01_login_success(self):
  14. # 获取验证码
  15. res_first = self.login_api.get_verify_code()
  16. print(res_first.status_code)
  17. print(res_first.json())
  18. # 登录
  19. login_data = {
  20. "username": "admin",
  21. "password": "HM_2023_test",
  22. "code": "2",
  23. "uuid": res_first.json().get("uuid")
  24. }
  25. res_second = self.login_api.login(login_data)
  26. print(res_second.status_code)
  27. print(res_second.json())
  28. if __name__ == '__main__':
  29. test = TestContractBusiness()
  30. test.setup()
  31. test.test01_login_success()
2.2、课程新增代码自动化

首先封装课程新增接口类。

  1. # 课程接口的封装
  2. # 导包
  3. import requests
  4. # 创建接口类
  5. class courseAPI:
  6. # 初始化
  7. def __init__(self):
  8. self.add_course_url = "http://kdtx-test.itheima.net/api/clues/course/"
  9. # 课程添加
  10. def add_course(self, test_data, token):
  11. return requests.post(url=self.add_course_url, json=test_data, headers={"Authorization": token})

然后在测试类中,定义课程新增测试方法。

  1. # 1.导包
  2. from api.login import loginAPI
  3. from api.course import courseAPI
  4. # 2.创建测试类
  5. class TestContractBusiness:
  6. # 2.1 前置处理
  7. def setup(self):
  8. # 实例化接口对象
  9. self.login_api = loginAPI()
  10. self.course_api = courseAPI()
  11. self.token = None
  12. # 2.2 后置处理
  13. def teardown(self):
  14. pass
  15. # 01.登录成功
  16. def test01_login_success(self):
  17. # 获取验证码
  18. res_first = self.login_api.get_verify_code()
  19. print(res_first.status_code)
  20. print(res_first.json())
  21. # 登录
  22. login_data = {
  23. "username": "admin",
  24. "password": "HM_2023_test",
  25. "code": "2",
  26. "uuid": res_first.json().get("uuid")
  27. }
  28. res_second = self.login_api.login(login_data)
  29. print(res_second.status_code)
  30. print(res_second.json())
  31. TestContractBusiness.token = res_second.json().get("token")
  32. # 新增课程成功
  33. def test02_add_course(self):
  34. add_data = {
  35. "name": "测试开发课程",
  36. "subject": "6",
  37. "price": "344",
  38. "applicablePerson": "2"
  39. }
  40. res_third = self.course_api.add_course(test_data=add_data, token=TestContractBusiness.token)
  41. print(res_third.status_code)
  42. print(res_third.json())
  43. if __name__ == '__main__':
  44. test = TestContractBusiness()
  45. test.setup()
  46. test.test01_login_success()
  47. test.test02_add_course()
2.3、合同上传与新增接口自动化

首先封装合同上传与新增接口,如下:

  1. # 1.导包
  2. import requests
  3. # 2.定义合同接口类
  4. class ContractAPI:
  5. # 初始化
  6. def __init__(self):
  7. self.url_upload = "http://kdtx-test.itheima.net/api/common/upload"
  8. self.add_contract_url = "http://kdtx-test.itheima.net/api/contract"
  9. # 合同上传接口
  10. def upload_abstract(self, test_data, token):
  11. return requests.post(url=self.url_upload, files={"file": test_data}, headers={"Authorization": token})
  12. # 合同新增接口
  13. def add_abstract(self, test_data, token):
  14. return requests.post(url=self.add_contract_url, json=test_data, headers={"Authorization": token})

编写合同上传和合同新增测试脚本:
 

  1. # 1.导包
  2. from api.login import LoginAPI
  3. from api.course import CourseAPI
  4. from api.contract import ContractAPI
  5. # 2.创建测试类
  6. class TestContractBusiness:
  7. # 2.1 前置处理
  8. token = None
  9. file_name = None
  10. def setup(self):
  11. # 实例化接口对象
  12. self.login_api = LoginAPI()
  13. self.course_api = CourseAPI()
  14. self.contract_api = ContractAPI()
  15. # 2.2 后置处理
  16. def teardown(self):
  17. pass
  18. # 01.登录成功
  19. def test01_login_success(self):
  20. # 获取验证码
  21. res_first = self.login_api.get_verify_code()
  22. print(res_first.status_code)
  23. print(res_first.json())
  24. # 登录
  25. login_data = {
  26. "username": "admin",
  27. "password": "HM_2023_test",
  28. "code": "2",
  29. "uuid": res_first.json().get("uuid")
  30. }
  31. res_second = self.login_api.login(login_data)
  32. print(res_second.status_code)
  33. print(res_second.json())
  34. TestContractBusiness.token = res_second.json().get("token")
  35. # 02.新增课程成功
  36. def test02_add_course(self):
  37. add_data = {
  38. "name": "测试开发课程1",
  39. "subject": "6",
  40. "price": "344",
  41. "applicablePerson": "2"
  42. }
  43. res_third = self.course_api.add_course(test_data=add_data, token=TestContractBusiness.token)
  44. print(res_third.status_code)
  45. print(res_third.json())
  46. # 03.合同上传接口
  47. def test03_upload_abstract(self):
  48. file = open("../data/test_file.txt", "rb")
  49. response = self.contract_api.upload_abstract(test_data=file, token=TestContractBusiness.token)
  50. print(response.status_code)
  51. print(response.json())
  52. TestContractBusiness.file_name = response.json().get("fileName")
  53. # 04.合同新增接口
  54. def test04_add_abstract(self):
  55. add_data = {
  56. "name": "测试",
  57. "phone": "13827648970",
  58. "contractNo": "HT20240ww3",
  59. "subject": "6",
  60. "courseId": "99",
  61. "channel": "0",
  62. "activityId" : 77,
  63. "fileName": TestContractBusiness.file_name
  64. }
  65. response = self.contract_api.add_abstract(test_data=add_data, token=TestContractBusiness.token)
  66. print(response.status_code)
  67. print(response.json())
  68. if __name__ == '__main__':
  69. test = TestContractBusiness()
  70. test.setup()
  71. test.test01_login_success()
  72. test.test02_add_course()
  73. test.test03_upload_abstract()
  74. test.test04_add_abstract()

2.4、登录单接口自动化测试

首先封装获取验证码与登录接口。

  1. # 依据接口文档,封接口信息,需要使用的测试数据从测试用例传递
  2. # 接口方法被调用需要返回对应的响应结果
  3. # 1.导包
  4. import requests
  5. # 2.创建接口类
  6. class LoginAPI:
  7. # 初始化
  8. def __init__(self):
  9. # 指定url
  10. self.url_verify = "http://kdtx-test.itheima.net/api/captchaImage"
  11. self.url_login = "http://kdtx-test.itheima.net/api/login"
  12. # 验证码
  13. def get_verify_code(self):
  14. return requests.get(url=self.url_verify)
  15. # 登录
  16. def login(self, test_data):
  17. return requests.post(self.url_login, json=test_data)

编写等于测试用例脚本,并对响应结果做校验。

  1. # 1.导包
  2. from api.login import LoginAPI
  3. # 2.创建测试类
  4. class TestLoginAPI:
  5. uuid = None
  6. # 前置处理
  7. def setup(self):
  8. # 实例化
  9. self.login_api = LoginAPI()
  10. # 获取验证码
  11. response = self.login_api.get_verify_code()
  12. # 获取验证码中的uuid
  13. TestLoginAPI.uuid = response.json().get("uuid")
  14. # 后置处理
  15. def teardown(self):
  16. pass
  17. # 登录成功
  18. def login_success(self):
  19. login_data = {
  20. "username": "admin",
  21. "password": "HM_2023_test",
  22. "code": "2",
  23. "uuid": TestLoginAPI.uuid
  24. }
  25. response = self.login_api.login(test_data=login_data)
  26. # 断言验证码
  27. assert 200 == response.status_code
  28. # 断言响应数据包含成功
  29. assert '成功' in response.text
  30. # 断言响应json数据中的code值
  31. assert 200 == response.json().get("code")
  32. # 登录成功
  33. # 登录失败
  34. def login_fail(self):
  35. login_data = {
  36. "username": "",
  37. "password": "HM_2023_test",
  38. "code": "2",
  39. "uuid": TestLoginAPI.uuid
  40. }
  41. response = self.login_api.login(test_data=login_data)
  42. # 断言验证码
  43. assert 200 == response.status_code
  44. # 断言响应数据包含成功
  45. assert '错误' in response.text
  46. # 断言响应json数据中的code值
  47. assert 500 == response.json().get("code")
  48. if __name__ == '__main__':
  49. test_login = TestLoginAPI()
  50. test_login.setup()
  51. test_login.login_success()
  52. test_login.setup()
  53. test_login.login_fail()
2.5、登录单接口自动化-数据驱动实现

数据驱动:以测试数据驱动脚本执行,维护焦点从脚本转向测试数据的一种自动化测试用例设计模式。

方式1:直接定义测试数据,然后使用pytest框架进行参数化,实现数据驱动。

  1. # 1.导包
  2. from api.login import LoginAPI
  3. import pytest
  4. # 测试数据
  5. test_data = [("admin", "HM_2023_test", 200, '成功', 200),
  6. ("", "HM_2023_test", 200, '错误', 500)]
  7. # 2.创建测试类
  8. class TestLoginAPI:
  9. uuid = None
  10. # 前置处理
  11. def setup(self):
  12. # 实例化
  13. self.login_api = LoginAPI()
  14. # 获取验证码
  15. response = self.login_api.get_verify_code()
  16. # 获取验证码中的uuid
  17. TestLoginAPI.uuid = response.json().get("uuid")
  18. # 后置处理
  19. def teardown(self):
  20. pass
  21. # 登录成功
  22. @pytest.mark.parametrize("username, password, status, message, code", test_data)
  23. def test_login_success(self, username, password, status, message, code):
  24. login_data = {
  25. "username": username,
  26. "password": password,
  27. "code": "2",
  28. "uuid": TestLoginAPI.uuid
  29. }
  30. response = self.login_api.login(test_data=login_data)
  31. # 断言验证码
  32. assert status == response.status_code
  33. # 断言响应数据包含成功
  34. assert message in response.text
  35. # 断言响应json数据中的code值
  36. assert code == response.json().get("code")
  37. # 登录成功
  38. # 登录失败
  39. @pytest.mark.parametrize("username, password, status, message, code", test_data)
  40. def test_login_fail(self, username, password, status, message, code):
  41. login_data = {
  42. "username": username,
  43. "password": password,
  44. "code": "2",
  45. "uuid": TestLoginAPI.uuid
  46. }
  47. response = self.login_api.login(test_data=login_data)
  48. # 断言验证码
  49. assert status == response.status_code
  50. # 断言响应数据包含成功
  51. assert message in response.text
  52. # 断言响应json数据中的code值
  53. assert code == response.json().get("code")

方式2:

首先在data文件夹定义:login.json文件用于测试数据。

  1. [
  2. {
  3. "username": "admin",
  4. "password": "HM_2023_test",
  5. "status": 200,
  6. "message": "成功",
  7. "code": 200
  8. },
  9. {
  10. "username": "",
  11. "password": "HM_2023_test",
  12. "status": 200,
  13. "message": "错误",
  14. "code": 500
  15. }
  16. ]

使用pytest做参数化,完成数据驱动测试。

  1. # 1.导包
  2. from api.login import LoginAPI
  3. import pytest
  4. import json
  5. # 读取json文件
  6. def build_data(json_file):
  7. # 定义空列表
  8. test_data = []
  9. # 打开json
  10. with open(json_file, "r", encoding='utf-8') as file:
  11. # 加载json数据
  12. json_data = json.load(file)
  13. # 循环遍历测试数据
  14. for case_data in json_data:
  15. # 解析数据
  16. username = case_data.get("username")
  17. password = case_data.get("password")
  18. status = case_data.get("status")
  19. message = case_data.get("message")
  20. code = case_data.get("code")
  21. test_data.append((username, password, status, message, code))
  22. return test_data
  23. # 2.创建测试类
  24. class TestLogin:
  25. uuid = None
  26. # 前置处理
  27. def setup(self):
  28. # 实例化
  29. self.login_api = LoginAPI()
  30. # 获取验证码
  31. response = self.login_api.get_verify_code()
  32. # 获取验证码中的uuid
  33. TestLogin.uuid = response.json().get("uuid")
  34. # 后置处理
  35. def teardown(self):
  36. pass
  37. # 登录成功
  38. @pytest.mark.parametrize("username, password, status, message, code", build_data(json_file="../data/login.json"))
  39. def test_login__success(self, username, password, status, message, code):
  40. login_data = {
  41. "username": username,
  42. "password": password,
  43. "code": "2",
  44. "uuid": TestLogin.uuid
  45. }
  46. response = self.login_api.login(test_data=login_data)
  47. # 断言验证码
  48. assert status == response.status_code
  49. # 断言响应数据包含成功
  50. assert message in response.text
  51. # 断言响应json数据中的code值
  52. assert code == response.json().get("code")
  53. # 登录成功
  54. # 登录失败
  55. @pytest.mark.parametrize("username, password, status, message, code", build_data(json_file="../data/login.json"))
  56. def test_login_fail(self, username, password, status, message, code):
  57. login_data = {
  58. "username": username,
  59. "password": password,
  60. "code": "2",
  61. "uuid": TestLogin.uuid
  62. }
  63. response = self.login_api.login(test_data=login_data)
  64. # 断言验证码
  65. assert status == response.status_code
  66. # 断言响应数据包含成功
  67. assert message in response.text
  68. # 断言响应json数据中的code值
  69. assert code == response.json().get("code")

正常pychram调试的时候方法和类是没有绿色三角形的,即不能单独调试,需要自定义main函数进行实例并调用方法调试,但是可以将类与方法加载到pytest框架中即可单独调试函数和类。

但是需要注意2点:

第一:需要设置测试框架使用pytest

第二,类和方法的命名要符合pytest框架规范,pytest才能识别:

类需要以Test开头,方法需要以test_开头,另外python文件名需要以test_开头,或_test结尾

2.6、课程添加自动化

首先需要在api目录下封装登录接口与课程上传接口。

  1. # 1.导包
  2. import requests
  3. # 2.创建接口类
  4. class LoginAPI:
  5. # 初始化
  6. def __init__(self):
  7. # 指定url
  8. self.url_verify = "http://kdtx-test.itheima.net/api/captchaImage"
  9. self.url_login = "http://kdtx-test.itheima.net/api/login"
  10. # 验证码
  11. def get_verify_code(self):
  12. return requests.get(url=self.url_verify)
  13. # 登录
  14. def login(self, test_data):
  15. return requests.post(self.url_login, json=test_data)
  1. # 导包
  2. import requests
  3. # 创建接口类
  4. class CourseAPI:
  5. # 初始化
  6. def __init__(self):
  7. self.add_course_url = "http://kdtx-test.itheima.net/api/clues/course/"
  8. # 课程添加
  9. def add_course(self, test_data, token):
  10. return requests.post(url=self.add_course_url, json=test_data, headers={"Authorization": token})

然后编写测试脚本课程上传并断言结果。

  1. # 导包
  2. from api.login import LoginAPI
  3. from api.course import CourseAPI
  4. # 课程添加类
  5. class TestAddCourseAPI:
  6. token = None
  7. def setup(self):
  8. # 初始化接口
  9. self.api_login = LoginAPI()
  10. self.api_course = CourseAPI()
  11. # 获取验证码
  12. res = self.api_login.get_verify_code()
  13. # 登录
  14. login_data = {
  15. "username": "admin",
  16. "password": "HM_2023_test",
  17. "code": "2",
  18. "uuid": res.json().get("uuid")
  19. }
  20. response = self.api_login.login(test_data=login_data)
  21. TestAddCourseAPI.token = response.json().get("token")
  22. def teardown(self):
  23. pass
  24. # 课程添加成功
  25. def test_add_course_success(self):
  26. add_data = {
  27. "name": "测试开发课程",
  28. "subject": "6",
  29. "price": "344",
  30. "applicablePerson": "2"
  31. }
  32. response = self.api_course.add_course(test_data=add_data, token=TestAddCourseAPI.token)
  33. # 断言响应状态码
  34. assert 200 == response.status_code
  35. # 断言message
  36. assert '成功' in response.text
  37. # 断言code
  38. assert 200 == response.json().get("code")

2.7、课程查询接口自动化

首先封装查询课程接口api,同时需要封装登录接口api。

  1. # 导包
  2. import requests
  3. # 创建接口类
  4. class CourseAPI:
  5. # 初始化
  6. def __init__(self):
  7. self.add_course_url = "http://kdtx-test.itheima.net/api/clues/course/"
  8. self.select_course_url = "http://kdtx-test.itheima.net/api/clues/course/list"
  9. # 课程添加
  10. def add_course(self, test_data, token):
  11. return requests.post(url=self.add_course_url, json=test_data, headers={"Authorization": token})
  12. # 查询课程列表
  13. def select_course(self, test_data, token):
  14. return requests.get(url=self.select_course_url + f"{test_data}", headers={"Authorization": token})

使用pytest框架调用封装的课程查询接口实现课程查询自动化。

  1. # 导包
  2. from api.login import LoginAPI
  3. from api.course import CourseAPI
  4. # 课程添加类
  5. class TestAddCourseAPI:
  6. token = None
  7. def setup(self):
  8. # 初始化接口
  9. self.api_login = LoginAPI()
  10. self.api_course = CourseAPI()
  11. # 获取验证码
  12. res = self.api_login.get_verify_code()
  13. # 登录
  14. login_data = {
  15. "username": "admin",
  16. "password": "HM_2023_test",
  17. "code": "2",
  18. "uuid": res.json().get("uuid")
  19. }
  20. response = self.api_login.login(test_data=login_data)
  21. TestAddCourseAPI.token = response.json().get("token")
  22. def teardown(self):
  23. pass
  24. # 课程查询成功
  25. def test_select_course_success(self):
  26. response = self.api_course.select_course(test_data="?name=测试开发提升课", token=TestAddCourseAPI.token)
  27. # 断言
  28. assert 200 == response.status_code
  29. assert '成功' in response.text
  30. assert 200 == response.json().get("code")
  31. # 课程查询失败
  32. def test_select_course_fail(self):
  33. response = self.api_course.select_course(test_data="?name=测试开发提升课", token="***")
  34. # 断言
  35. assert 200 == response.status_code
  36. assert '认证失败' in response.text
  37. assert 401 == response.json().get("code")
2.8、课程修改接口自动化

首先在api包下先封装课程修改接口,如下:

  1. # 导包
  2. import requests
  3. # 创建接口类
  4. class CourseAPI:
  5. # 初始化
  6. def __init__(self):
  7. self.add_course_url = "http://kdtx-test.itheima.net/api/clues/course/"
  8. self.select_course_url = "http://kdtx-test.itheima.net/api/clues/course/list"
  9. # 课程添加
  10. def add_course(self, test_data, token):
  11. return requests.post(url=self.add_course_url, json=test_data, headers={"Authorization": token})
  12. # 查询课程列表
  13. def select_course(self, test_data, token):
  14. return requests.get(url=self.select_course_url + f"{test_data}", headers={"Authorization": token})
  15. # 修改课程
  16. def update_course(self, test_data, token):
  17. return requests.put(url=self.add_course_url, json=test_data, headers={"Authorization": token})

在script包下编写测试脚本,测试课程修改接口:
 

  1. # 导包
  2. from api.login import LoginAPI
  3. from api.course import CourseAPI
  4. # 课程添加类
  5. class TestUpdateCourseAPI:
  6. token = None
  7. def setup(self):
  8. # 初始化接口
  9. self.api_login = LoginAPI()
  10. self.api_course = CourseAPI()
  11. # 获取验证码
  12. res = self.api_login.get_verify_code()
  13. # 登录
  14. login_data = {
  15. "username": "admin",
  16. "password": "HM_2023_test",
  17. "code": "2",
  18. "uuid": res.json().get("uuid")
  19. }
  20. response = self.api_login.login(test_data=login_data)
  21. TestUpdateCourseAPI.token = response.json().get("token")
  22. def teardown(self):
  23. pass
  24. # 课程修改成功
  25. def test_update_course_success(self):
  26. update_data = {
  27. "id": "109",
  28. "name": "测试接口001",
  29. "subject": "6",
  30. "price": 999,
  31. "applicablePerson": "2",
  32. "info": "课程介绍003"
  33. }
  34. response = self.api_course.update_course(test_data=update_data, token=TestUpdateCourseAPI.token)
  35. # 断言
  36. assert 200 == response.status_code
  37. assert '成功' in response.text
  38. assert 200 == response.json().get("code")
  39. # 课程修改失败
  40. def test_update_course_fail(self):
  41. update_data = {
  42. "id": "109",
  43. "name": "测试接口001",
  44. "subject": "6",
  45. "price": 999,
  46. "applicablePerson": "2",
  47. "info": "课程介绍003"
  48. }
  49. response = self.api_course.update_course(test_data=update_data, token="***")
  50. # 断言
  51. assert 200 == response.status_code
  52. assert '认证失败' in response.text
  53. assert 401 == response.json().get("code")
2.9、课程删除接口自动化

首先封装删除课程的接口,具体如下:

  1. # 课程接口的封装
  2. # 导包
  3. import requests
  4. # 创建接口类
  5. class CourseAPI:
  6. # 初始化
  7. def __init__(self):
  8. self.add_course_url = "http://kdtx-test.itheima.net/api/clues/course/"
  9. self.select_course_url = "http://kdtx-test.itheima.net/api/clues/course/list"
  10. # 课程添加
  11. def add_course(self, test_data, token):
  12. return requests.post(url=self.add_course_url, json=test_data, headers={"Authorization": token})
  13. # 查询课程列表
  14. def select_course(self, test_data, token):
  15. return requests.get(url=self.select_course_url + f"{test_data}", headers={"Authorization": token})
  16. # 修改课程
  17. def update_course(self, test_data, token):
  18. return requests.put(url=self.add_course_url, json=test_data, headers={"Authorization": token})
  19. # 删除课程
  20. def delete_course(self, course_id, token):
  21. return requests.delete(self.add_course_url + f"/{course_id}", headers={"Authorization": token})

然后编写测试脚本对课程删除接口进行测试,并断言测试结果。

  1. # 导包
  2. from api.login import LoginAPI
  3. from api.course import CourseAPI
  4. # 课程删除类
  5. class TestDeleteCourseAPI:
  6. token = None
  7. def setup(self):
  8. # 初始化接口
  9. self.api_login = LoginAPI()
  10. self.api_course = CourseAPI()
  11. # 获取验证码
  12. res = self.api_login.get_verify_code()
  13. # 登录
  14. login_data = {
  15. "username": "admin",
  16. "password": "HM_2023_test",
  17. "code": "2",
  18. "uuid": res.json().get("uuid")
  19. }
  20. response = self.api_login.login(test_data=login_data)
  21. TestDeleteCourseAPI.token = response.json().get("token")
  22. def teardown(self):
  23. pass
  24. # 课程删除成功
  25. def test_delete_course_success(self):
  26. response = self.api_course.delete_course(course_id=109, token=TestDeleteCourseAPI.token)
  27. # 断言
  28. assert 200 == response.status_code
  29. assert '成功' in response.text
  30. assert 200 == response.json().get("code")
  31. # 课程删除失败(课程id不存在)
  32. def test_delete_course_fail_id(self):
  33. response = self.api_course.delete_course(course_id=1000000000, token=TestDeleteCourseAPI.token)
  34. # 断言
  35. assert 200 == response.status_code
  36. assert '操作失败' in response.text
  37. assert 500 == response.json().get("code")
  38. # 课程删除失败(未登录)
  39. def test_delete_course_fail_login(self):
  40. response = self.api_course.delete_course(course_id=110, token="***")
  41. # 断言
  42. assert 200 == response.status_code
  43. assert '认证失败' in response.text
  44. assert 401 == response.json().get("code")

2.10、项目配置文件config

在主项目的根目录下定义一个config1.py文件定义url的共用路径与当前根目录的地址。

  1. # 配置类
  2. import os
  3. # 设置项目环境域名
  4. BASE_URL = "http://kdtx-test.itheima.net"
  5. # 项目根路径
  6. BASE_PATH = os.path.dirname(__file__)

接口封装类中换成BASE_URL拼接的形式。

  1. # 导包
  2. import requests
  3. import config1
  4. # 创建接口类
  5. class CourseAPI:
  6. # 初始化
  7. def __init__(self):
  8. self.add_course_url = config1.BASE_URL + "/api/clues/course/"
  9. self.select_course_url = config1.BASE_URL + "/api/clues/course/list"
  10. # 课程添加
  11. def add_course(self, test_data, token):
  12. return requests.post(url=self.add_course_url, json=test_data, headers={"Authorization": token})
  13. # 查询课程列表
  14. def select_course(self, test_data, token):
  15. return requests.get(url=self.select_course_url + f"{test_data}", headers={"Authorization": token})
  16. # 修改课程
  17. def update_course(self, test_data, token):
  18. return requests.put(url=self.add_course_url, json=test_data, headers={"Authorization": token})
  19. # 删除课程
  20. def delete_course(self, course_id, token):
  21. return requests.delete(self.add_course_url + f"/{course_id}", headers={"Authorization": token})

具体的路径中换成BASE_PATH拼接的形式。

  1. # 1.导包
  2. from api.login import LoginAPI
  3. import pytest
  4. import json
  5. import config1
  6. # 读取json文件
  7. def build_data(json_file):
  8. # 定义空列表
  9. test_data = []
  10. # 打开json
  11. with open(json_file, "r", encoding='utf-8') as file:
  12. # 加载json数据
  13. json_data = json.load(file)
  14. # 循环遍历测试数据
  15. for case_data in json_data:
  16. # 解析数据
  17. username = case_data.get("username")
  18. password = case_data.get("password")
  19. status = case_data.get("status")
  20. message = case_data.get("message")
  21. code = case_data.get("code")
  22. test_data.append((username, password, status, message, code))
  23. return test_data
  24. # 2.创建测试类
  25. class TestLogin:
  26. uuid = None
  27. # 前置处理
  28. def setup(self):
  29. # 实例化
  30. self.login_api = LoginAPI()
  31. # 获取验证码
  32. response = self.login_api.get_verify_code()
  33. # 获取验证码中的uuid
  34. TestLogin.uuid = response.json().get("uuid")
  35. # 后置处理
  36. def teardown(self):
  37. pass
  38. # 登录成功
  39. @pytest.mark.parametrize("username, password, status, message, code", build_data(json_file=config1.BASE_PATH + "/data/login.json"))
  40. def test_login__success(self, username, password, status, message, code):
  41. login_data = {
  42. "username": username,
  43. "password": password,
  44. "code": "2",
  45. "uuid": TestLogin.uuid
  46. }
  47. response = self.login_api.login(test_data=login_data)
  48. # 断言验证码
  49. assert status == response.status_code
  50. # 断言响应数据包含成功
  51. assert message in response.text
  52. # 断言响应json数据中的code值
  53. assert code == response.json().get("code")
  54. # 登录成功
  55. # 登录失败
  56. @pytest.mark.parametrize("username, password, status, message, code", build_data(json_file=config1.BASE_PATH + "/data/login.json"))
  57. def test_login_fail(self, username, password, status, message, code):
  58. login_data = {
  59. "username": username,
  60. "password": password,
  61. "code": "2",
  62. "uuid": TestLogin.uuid
  63. }
  64. response = self.login_api.login(test_data=login_data)
  65. # 断言验证码
  66. assert status == response.status_code
  67. # 断言响应数据包含成功
  68. assert message in response.text
  69. # 断言响应json数据中的code值
  70. assert code == response.json().get("code")
2.11、allure生成测试报告

使用pip指令安装allure:pip install allure-pytest

然后下载并配置allure,下载地址:Central Repository: io/qameta/allure/allure-commandline

下载安装解压到指定目录,并将allure的bin目录路径配置到环境变量中系统变量的path。

配置完成后使用allure --version命令检测。

在pytest.ins文件中配置执行信息。包含报告输出信息、测试脚本路径、测试类、测试函数等

  1. [pytest]
  2. addopts =-s --alluredir report
  3. testpaths =./script
  4. python_files = test*.py
  5. python_classes = Test*
  6. python_functions = test*

在pychram的终端中使用命令:pytest 批量执行测试用例

使用allure serve report 命令查看测试报告:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/620371
推荐阅读
相关标签
  

闽ICP备14008679号