接口框架项目实战-pytest(六)csv数据驱动

csv 数据驱动 为了解决数据量大 导致yaml文件重复太多

yaml_util.py

bash 复制代码
import os

import jsonpath
import yaml

from pytestdemo.common.base_util import get_path
from pytestdemo.common.csv_util import analysis_parameters


def read_config_file(one_node,two_node):
    with open(f'{get_path()}/common/config.yml',encoding="utf-8") as f:
        value=yaml.load(f,yaml.FullLoader)
        # print(value[one_node][two_node])
        return value[one_node][two_node]
def read_extract_file(node_name):
    with open(f'{get_path()}/common/extract.yml',encoding="utf-8") as f:
        value=yaml.load(f,yaml.FullLoader)
        return value[node_name]
def write_extract_file(data):
    with open(f'{get_path()}/common/extract.yml',encoding="utf-8",mode="a") as f:
        yaml.dump(data,f,allow_unicode=True)

def clean_extract_file():
    with open(f'{get_path()}/common/extract.yml',encoding="utf-8",mode="w") as f:
       f.truncate()
def read_testcase_yaml(file_path):
    print(f'{get_path()}{file_path}')
    with open(f'{get_path()}{file_path}',encoding="utf-8") as f:
        value = yaml.load(f, yaml.FullLoader)
        if len(value)==1:
            if jsonpath.jsonpath(value,"$..parameters"):
                return analysis_parameters(value)
        return value
if __name__ == '__main__':
    # print (read_config_file("base","base_php_url"))
    print(read_testcase_yaml("\\testcases\\get_token.yml"))

csv_util.py

bash 复制代码
import csv
import json

from pytestdemo.common.base_util import get_path


def read_csv(file_path):
    data_list=[]
    with open(f'{get_path()}{file_path}',encoding="utf-8") as f:
        reader = csv.reader(f)
        for r in reader:
            data_list.append(r)
    return data_list
def analysis_parameters(case_data):
    keys=dict(*case_data).keys()
    case_data_str=json.dumps(case_data)
    list=[]
    if "parameters" in keys:
        for p_key,p_value in dict(*case_data)["parameters"].items():
            p_list=read_csv(p_value)
            for r in range(1,len(p_list)):
                temp_case_data_str=case_data_str
                for c in range(0,len(p_list[r])):
                    temp_case_data_str=temp_case_data_str.replace("$csv{"+p_list[0][c]+"}",p_list[r][c])
                list.extend(json.loads(temp_case_data_str))
    return list
# if __name__ == '__main__':
#     print(read_csv("/testcases/data/get_token.csv"))
    # data=read_testcase_yaml("/testcases/get_token.yml")
    # analysis_parameters(data)

conftest.py

bash 复制代码
@pytest.fixture(scope="session",autouse=True)
def clean_extract():
    clean_extract_file()

test_demo4.py

bash 复制代码
import random

import pytest

from pytestdemo.common.requests_util import RequestsUtil
from pytestdemo.common.yaml_util import write_extract_file, read_testcase_yaml


class Test4Api:
    access_token=""
    @pytest.mark.parametrize("data",read_testcase_yaml("/testcases/get_token.yml"))
    def test_get_token(self,data):
        RequestsUtil("base","base_wx_url").analysis_yml_send_reqeust(data)
      
    @pytest.mark.parametrize("data", read_testcase_yaml("/testcases/get_tags.yaml"))
    def test_get_tags(self,data):
        RequestsUtil("base", "base_wx_url").analysis_yml_send_reqeust(data)
    

get_token.yml

bash 复制代码
- name: $csv{name}
  parameters:
    data_file: /testcases/data/get_token.csv
  request:
    method: get
    url: /cgi-bin/token
    params:
      grant_type: $csv{grant_type}
      appid: $csv{appid}
      secret: $csv{secret}
  extract:
      access_token: '"access_token":"(.*?)"'
  validate:
      - equals: {status_code: 200}
      - contains: $csv{assert_str}

get_token.csv

bash 复制代码
name,grant_type,appid,secret,assert_str
"获取鉴权码","client_credential","wx6b11b3efd1cdc2901","106a9c6157c4db5f6029918738f9529d2","access_token"
"appid必填检验","client_credential","","106a9c6157c4db5f6029918738f9529d2","errcode"

get_tags.yaml

bash 复制代码
- name: 获取标签
  request:
    method: get
    url: /cgi-bin/tags/get?access_token={{access_token}}
  validate:
      equals: {status_code: 200}
- name: 获取标签222
  request:
    method: get
    url: /cgi-bin/tags/get?access_token={{access_token}}
  validate:
      equals: {status_code: 200}
相关推荐
我的xiaodoujiao10 小时前
使用 Python 语言 从 0 到 1 搭建完整 Web UI自动化测试学习系列 44--将自动化测试结果自动推送至钉钉工作群聊
前端·python·测试工具·ui·pytest
我的xiaodoujiao13 小时前
使用 Python 语言 从 0 到 1 搭建完整 Web UI自动化测试学习系列 45--生成项目需要的requirements.txt依赖文件
python·学习·测试工具·pytest
月明长歌14 小时前
全栈测试修炼指南:从接口策略到 Python+Pytest+Allure 企业级架构
python·架构·pytest
一晌小贪欢1 天前
Python 测试利器:使用 pytest 高效编写和管理单元测试
python·单元测试·pytest·python3·python测试
我送炭你添花1 天前
Pelco KBD300A 模拟器:20.搭建pytest集成测试基础框架 + 模拟器闭环测试
python·集成测试·pytest
我送炭你添花3 天前
Pelco KBD300A 模拟器:18. 按依赖顺序 + 复杂度由低到高逐步推进pytest单元测试
python·单元测试·log4j·pytest
生活很暖很治愈3 天前
Pytest-order插件
python·测试工具·测试用例·pytest
测试人社区—66795 天前
2025区块链分层防御指南:AI驱动的安全测试实战策略
开发语言·驱动开发·python·appium·pytest
我送炭你添花6 天前
pytest 入门指南:从零开始掌握 Python 测试框架的核心概念与使用方法
chrome·python·pytest
though the night6 天前
Python UI 自动化测试框架搭建demo(Selenium+Pytest 版)
自动化测试·selenium·测试工具·pytest