• pytest + yaml 框架 -4.用例参数化parameters功能实现


    前言

    当一个用例用到多组测试数据的时候,我们必然会用到参数化,接下来看下如何在yaml文件中实现参数化

    pip 安装插件

    pip install pytest-yaml-yoyo
    
    • 1

    参数化功能在v1.0.3版本上实现

    参数化的实现

    用例参数化的实现,我设计了2种实现方式

    参数化方式1:

      config:
         name: post示例
         fixtures: username, password
         parameters:
           - [test1, '123456']
           - [test2, '123456']
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    参数化方式2:

      config:
         name: post示例
         parameters:
           - {"username": "test1", "password": "123456"}
           - {"username": "test2", "password": "1234562"}
    
    • 1
    • 2
    • 3
    • 4
    • 5

    使用 fixtures 功能实现参数化

    基本实现原理参考pytest框架的参数化实现

    import pytest
    @pytest.mark.parametrize("test_input,expected",
                             [ ["3+5", 8],
                               ["2+4", 6[,
                               ["6 * 9", 42[,
                             ])
    def test_eval(test_input, expected):
        assert eval(test_input) == expected
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    在上面的用例中,只需要关注参数化的2个变量test_input, expected 也就是在测试用例中传的2个值,可以理解为用例的2个fixture参数
    还需要关注测试数据,测试数据结构必须是list,里面是可以迭代的数据,因为有2个变量,所以每组数据是2个值。

    在yaml文件中

    • 参数化需要的变量写到config的fixtures 位置
    • 参数化需要的数据写到 parameters

    示例
    test_params.yml

    # 作者-上海悠悠 微信/QQ交流:283340479
    # blog地址 https://www.cnblogs.com/yoyoketang/
    
    config:
      name: post示例
      fixtures: username, password
      parameters:
        - [test1, '123456']
        - [test2, '123456']
    
    teststeps:
    -
      name: post
      request:
        method: POST
        url: http://httpbin.org/post
        json:
          username: ${username}
          password: ${password}
      extract:
          url:  body.url
      validate:
        - eq: [status_code, 200]
        - eq: [headers.Server, gunicorn/19.9.0]
        - eq: [$..username, '${username}']
        - eq: [body.json.username, '${username}']
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26

    运行yaml文件

    pytest test_params.yml
    
    • 1

    会自动生成2个测试用例

    (venv) D:\code\tests>pytest test_params.yml
    ======================== test session starts ========
    platform win32 -- Python 3.8.5, pytest-7.2.0, pluggy-1.0.0
    rootdir: D:\code\pytest-yaml-yoyo
    plugins: yaml-yoyo-1.0.3
    collected 2 items                                                                                          
    
    test_params.yml ..                                   [100%]
    
    
    =================== 2 passed in 0.77s  ================
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    parameters 实现参数化

    第二种实现方式,可以不用在fixtures 中传变量,但是 parameters 测试数据必须是字典类型,从字典的 ke y中动态读取变量名称
    test_params_2.yml

    # 作者-上海悠悠 微信/QQ交流:283340479
    # blog地址 https://www.cnblogs.com/yoyoketang/
    config:
      name: post示例
      parameters:
        - {"username": "tes1", "password": "123456"}
        - {"username": "tes2", "password": "123456"}
    
    teststeps:
    -
      name: post
      request:
        method: POST
        url: http://httpbin.org/post
        json:
          username: ${username}
          password: ${password}
      extract:
          url:  body.url
      validate:
        - eq: [status_code, 200]
        - eq: [headers.Server, gunicorn/19.9.0]
        - eq: [$..username, '${username}']
        - eq: [body.json.username, '${username}']
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24

    运行yaml文件

    pytest test_params.yml
    
    • 1

    以上2种实现参数化方式效果是一样的

  • 相关阅读:
    告别脏乱差,多应用,快交付的智能公寓管理平台来啦
    双目立体校正
    第三章、注册中心-Zookeeper(实例1)
    无代码开发:让程序员更高效,让非编程人员也能参与
    NuGet包使用方法
    区块链隐私计算中的密码学原理及应用(1)
    Java(四)(多态,final,常量,抽象类,接口)
    suanfa5==前缀数组
    leetcode做题笔记126. 单词接龙 II
    cuda编程基础:基于cuda的简单加法和基于cuda的矩阵相加算法实现,以及对应的cpu实现对比
  • 原文地址:https://blog.csdn.net/qq_27371025/article/details/128125921