SONiC-mgmt系列3:编写测试用例代码

参考tests目录下用例,根据几个常见基础场景生成测试用例并进行注释: 端口Ethernet0 up ,光模块在位、 收光功率 大于10dbm 。 实际工作中这3个场景应该放到3个不同的py 文件,但本文为了便于展示就放在一个文件中。

脚本的核心逻辑是:

  1. tests/platformtests/cli 封装show命令
  2. 解析上一步show命令的输出,获取用于下一步断言判断的值
  3. 断言判断
python 复制代码
# 导入日志模块(sonic-mgmt 官方脚本必备)
import logging
# 导入正则表达式模块,用于解析命令输出
import re
# 导入 pytest 测试框架
import pytest

# 导入 sonic-mgmt 官方输出解析工具(和 test_sfpshow.py 一致)
from .util import parse_output

# 导入 sonic-mgmt 官方断言函数
from tests.common.helpers.assertions import pytest_assert


# 官方脚本固定的日志配置
logger = logging.getLogger(__name__)

# SONiC 交换机的CLI 命令进行封装
CMD_INTERFACE_STATUS = "show interface status Ethernet0"  # 查接口状态
CMD_SFP_PRESENCE   = "show interface transceiver presence"  # 查模块在位
CMD_SFP_DOM        = "show interface transceiver eeprom --dom"  # 查 DOM 诊断

# ==============================
# pytest 标记:
# topology('any'):任何拓扑都能跑
# device_type('hw'):只在物理机(hardware)上跑
# ==============================
pytestmark = [
    pytest.mark.topology('any'),
    pytest.mark.device_type('hw')  # 物理机测试
]

def test_ethernet0_sfp_present_up_rx(duthosts, enum_frontend_dut):
    """
    验证 Ethernet0 端口:
    1. 接口状态 Up
    2. 光模块在位
    3. 收光功率 > 10 dBm
    """
    # 获取 DUT 交换机对象
    duthost = enum_frontend_dut
    test_port = "Ethernet0"

    # ==================================================
    # 步骤1:执行命令,获取接口状态
    # ==================================================
    logger.info("=== 检查接口 %s 状态 ===" % test_port)
    intf_output = duthost.command(CMD_INTERFACE_STATUS)["stdout"]

    # 用官方 parse_output 方法解析输出
    intf_table = parse_output(intf_output)
    port_info = intf_table.get(test_port, None)

    pytest_assert(port_info is not None, "端口 {} 不存在".format(test_port))

    # 断言接口 oper status 为 up
    oper_status = port_info.get("oper", "").lower()
    pytest_assert(
        oper_status == "up",
        "{} 接口未UP,当前状态:{}".format(test_port, oper_status)
    )

    # ==================================================
    # 步骤2:检查光模块在位
    # ==================================================
    logger.info("=== 检查光模块在位 ===")
    presence_output = duthost.command(CMD_SFP_PRESENCE)["stdout"]

    presence_table = parse_output(presence_output)
    port_present = presence_table.get(test_port, None)

    pytest_assert(port_present is not None, "{} 无模块信息".format(test_port))

    present = port_present.get("presence", "").lower()
    pytest_assert(
        present == "present",
        "{} 光模块不在位!".format(test_port)
    )

    # ==================================================
    # 步骤3:检查 Rx 收光功率 > 10 dBm
    # ==================================================
    logger.info("=== 检查收光功率 Rx Power ===")
    dom_output = duthost.command(CMD_SFP_DOM)["stdout"]

    # 匹配收光功率(正则:官方 test_sfpshow.py 常用方式)
    rx_pattern = r"{}[\s\S]*?Rx Power\s+:\s+([\d\-.]+)\s+dBm".format(test_port)
    match = re.search(rx_pattern, dom_output)

    pytest_assert(match, "{} 未获取到 Rx Power".format(test_port))

    rx_power = float(match.group(1))
    pytest_assert(
        rx_power > 10.0,
        "{} 收光功率过低:{} dBm,要求 > 10 dBm".format(test_port, rx_power)
    )

    logger.info(" 所有检查通过:接口UP、模块在位、Rx Power 满足要求")
相关推荐
胡图图不糊涂^_^10 小时前
测试用例篇——设计测试用例的方法
笔记·学习·测试用例·判定表法·正交法生成用例测试·等价类·边界值
icsocket13 小时前
大阵列排布1000~15000+Pin芯片测试:芯片测试座结构设计及场景化应用
测试用例
川石课堂软件测试14 小时前
作为一名测试工程师如何学习Kubernetes(k8s)技能
学习·测试工具·容器·职场和发展·kubernetes·测试用例·harmonyos
2401_835261381 天前
抽奖系统测试用例
测试用例
icsocket2 天前
芯片FT(Final Test)最终测试:芯片测试架构与芯片测试座Socket
测试用例
程序员杰哥3 天前
接口自动化测试:多环境配置实战
自动化测试·软件测试·python·测试工具·职场和发展·测试用例·接口测试
程序员小远4 天前
系统性能指标全解析
自动化测试·软件测试·python·测试工具·职场和发展·测试用例·性能测试
执子手 吹散苍茫茫烟波5 天前
文件的测试与下载测试用例
测试用例