BDD - SpecFlow ExternalData Plugin 导入外部测试数据

news/2024/11/29 23:47:27/

BDD - SpecFlow ExternalData Plugin 导入外部测试数据

  • 引言
  • SpecFlow ExternalData 插件
    • 支持的数据源
    • Tags
  • 实践
    • 创建一个 Class Libary Project
    • 添加 NuGet Packages
    • 添加测试数据源文件
      • CSV 文件
      • Excel 文件
    • 添加 Feature 文件
    • 实现 Step Definition
    • 执行
      • Scenario 导入测试数据源
      • Scenario Outline 导入测试数据源
      • 重命名数据源中的列名
      • Excel 指定 worksheet

引言

在设计 BDD Scenarios 时,有时会用到大量的测试数据,或是多个 Scenarios 共享这些大量数据,如果将这些数据都列在 Sceanrios 中,会使得 Scenario 非常庞大,大量重复的数据快也使得 Feature 文件非常庞大,数据行非常长等,导致可读性差,不够简洁。

这时我们就会思考能不能将数据放在某个文件中,Scenarios 中的参数可以跟这些外部数据关联起来。非常棒的是 SpecFlow 可以做到,支持加载外部数据源,并且非常方便地将这加载的数据导入到 Scenarios 中。

SpecFlow ExternalData 插件

利用 SpecFlow ExternalData 插件,可以实现将测试数据和测试 Scenarios 分开,并且 Scenarios 之间可以重用这些测试数据。这个插件支持最低版本 SpecFlow 3.5.5 起。

支持的数据源

  1. CSV 文件(格式 ‘CSV’, 扩展名 .csv)

Note: 标准的 RFC 4180 CSV 格式是带一行 header line,也就是表头 (ExternalData 插件利用 CsvHelper 来解析这类文件).

  1. Excel 文件(格式 Excel, 扩展名 .xlsx, .xls, .xlsb)

Note: XLSX 和 XLS 都是支持的 (ExternalData 插件利用 ExcelDataReader 来解析这类文件).

注意:SpecFlow ExternalData 某些版本可能支持 JSON 格式的文件,可参考官网实例 ExternalDataSample,但是这个插件后面被重写了,最新版本不再支持 JSON 文件加载导入到 Scenarios 中,具体参考 Issue #2559

Tags

@DataSource:path-to-file
这个 tag 主要是指明数据来源,可以加到 Scenario 或 Scenario Outline 上。

注意: 这个路径是基于 Feature 文件所在 folder 的相对路径。也就是说数据源文件应该放在 Feature 文件夹范围内,不能 Feature 文件夹范围外其它地方,不然编译会出错。

@DisableDataSource
@DataSource tag 可以加在 Feature 节点上,将所有 scenarios 转化成 scenario outlines。当整个 Feature 文件都用到相同的外部数据源时,这种方式非常有用。@DisableDataSource 用于少数 Scenarios 不使用这个 tag 在 Feature 节点的外部数据源。

@DataFormat:format
这个 tag 仅用在文件的扩展名不能被识别。

@DataSet:data-set-name
这个 tag 只应用于 Excel 文件。 默认是指定第一个 worksheet,当有多个 worksheet,就可以用这个 tag 指明特定的 worksheet。

@DataField:name-in-feature-file=name-in-source-file
这个 tag 用于 “重命名” 外部数据源的列名

tags 汇总:

  • Tags 可加在 Feature,scenario, scenario outline 或 scenario outline examples 上
  • Tags 可从 Feature 节点上继承,但是可覆盖父类 tag 或者用 @DisableDataSource 弃用数据源。
  • Tags 不能包含空格,通常用下划线 (_) 代表一个空格。目前不支持访问访问一个文件名或路径含有空格的文件

实践

创建一个 Class Libary Project

在这里插入图片描述

添加 NuGet Packages

都是最新版本:
SpecFlow 3.9.74
SpecRun.SpecFlow 3.9.31

SpecFlow.ExternalData 3.9.74

FluentAssertions 6.8.0

在这里插入图片描述

添加测试数据源文件

为了区分数据源 path,我们将准备两个数据源,一个直接放在 Feature 文件夹下,一个放在 Feature 文件夹下的子文件夹下。

CSV 文件

Feature/TestData 目录下添加一个 CSV 文件 products.csv

在这里插入图片描述

在这里插入图片描述

Excel 文件

Feature 目录下添加一个 Excel 文件 products.xlsx

在这里插入图片描述

在这里插入图片描述

添加 Feature 文件

Products.feature

Feature: Products@DataSource:TestData/products.csv
Scenario: The basket price is calculated correctly (csv)Given the price of <product> is<price>And the customer has put 1 piece of <product> in the basketWhen the basket price is calculatedThen the basket price should be €<price>@DataSource:TestData/products.csv
Scenario Outline: Valid product prices are calculated (csv Outline)	Given the price of <product> is<price>And the customer has put 1 piece of <product> in the basketWhen the basket price is calculatedThen the basket price should be €<price>Examples: | product    | price || Cheesecake | 2.0   |@DataSource:TestData/products.csv @DataField:product-name=product @DataField:price-in-EUR=price
Scenario: The basket price is calculated correctly (csv renamed fields)	Given the price of <product-name> is<price-in-EUR>And the customer has put 1 piece of <product-name> in the basketWhen the basket price is calculatedThen the basket price should be €<price-in-EUR>@DataSource:products.xlsx @DataSet:other_products
Scenario: The basket price is calculated correctly for other productsGiven the price of <product> is<price>And the customer has put 1 piece of <product> in the basketWhen the basket price is calculatedThen the basket price should be €<price>

在这里插入图片描述

实现 Step Definition

ProductBindings.cs
这里我们只是想知道 Scenarios 中的参数和测试文件的联系,所以只实现了部分 step,保证 Scenarios 能跑起来就 OK。

using System;
using TechTalk.SpecFlow;namespace ExternalData.Steps
{[Binding]public class ProductBindings{[Given(@"the price of (.*) is €(.*)")]public void GivenThePriceOfProductIsPrice(string product, float price){Console.WriteLine($"product:{product}");Console.WriteLine($"price:{price}");}[Given(@"the customer has put (.*) piece of (.*) in the basket")]public void GivenTheCustomerHasPutPieceOfProductInTheBasket(int number, string product){}[When(@"the basket price is calculated")]public void WhenTheBasketPriceIsCalculated(){}[Then(@"the basket price should be €(.*)")]public void ThenTheBasketPriceShouldBePrice(string price){}}
}

在这里插入图片描述

执行

Scenario 导入测试数据源

这个 Scenario 导入了 TestData/products.csv 文件的数据,注意文件路径
@DataSource:TestData/products.csv

@DataSource:TestData/products.csv
Scenario: The basket price is calculated correctly (csv)Given the price of <product> is<price>And the customer has put 1 piece of <product> in the basketWhen the basket price is calculatedThen the basket price should be €<price>

products.csv 中有三行数据,所以 Scenario 会自动转换成 Scenario outline

在这里插入图片描述

在这里插入图片描述
执行其中一个 Scenario,Step 中的 参数和 CSV 列名对应上了,自动关联起来了。

Given the price of <product> is<price>
 [Given(@"the price of (.*) is €(.*)")]public void GivenThePriceOfProductIsPrice(string product, float price){Console.WriteLine($"product:{product}");Console.WriteLine($"price:{price}");}

在这里插入图片描述

Scenario Outline 导入测试数据源

@DataSource:TestData/products.csv
Scenario Outline: Valid product prices are calculated (csv Outline)	Given the price of <product> is<price>And the customer has put 1 piece of <product> in the basketWhen the basket price is calculatedThen the basket price should be €<price>Examples: | product    | price || Cheesecake | 2.0   |

生成了 4 个 Scenarios,其中绿色部分是 Scenario 中 Example 中的数据,黄色高亮是 CSV 中三行数据生成的。

在这里插入图片描述

重命名数据源中的列名

@DataField:product-name=product @DataField:price-in-EUR=price 通过这种方式将 Scenario 中的参数名和数据源中的列名映射起来。

@DataSource:TestData/products.csv @DataField:product-name=product @DataField:price-in-EUR=price
Scenario: The basket price is calculated correctly (csv renamed fields)	Given the price of <product-name> is<price-in-EUR>And the customer has put 1 piece of <product-name> in the basketWhen the basket price is calculatedThen the basket price should be €<price-in-EUR>

在这里插入图片描述

Excel 指定 worksheet

Excel 有三个 worksheet,其中 other_products 有两行测试数据。

在这里插入图片描述

@DataSet:other_products 通过 @DataSet 来指定特定的 worksheet

@DataSource:products.xlsx @DataSet:other_products
Scenario: The basket price is calculated correctly for other productsGiven the price of <product> is<price>And the customer has put 1 piece of <product> in the basketWhen the basket price is calculatedThen the basket price should be €<price>

生成了 2 条 Scenarios,并且参数能够自动关联起来。

在这里插入图片描述


http://www.ppmy.cn/news/1545.html

相关文章

VSCode\\VS2017下CPP环境的配置

VSCode下C环境配置一些问题VSCode下配置C环境&#xff1a;VSCode与boost总结&#xff1a;坑位待填&#xff1a;VSCode中3个json文件的作用&#xff1a;环境配置出现的问题以及解决VS2017 配置 C环境VS配置boost库包含项目中的自定义的.hpp文件&#xff0c;.h文件VSCode下配置C环…

Java入门教程(1)——Java概述

文章目录1.编程环境1.1 开发环境2.2 编程工具2.语言特点3.java的发展历程1.编程环境 1.1 开发环境 JDK称为Java开发包或Java开发工具&#xff0c;是一个编写Java的Applet小程序和应用程序的程序开发环境。JDK是整个Java的核心&#xff0c;包括了Java运行环境&#xff0c;一些…

kubernetes-Service详解

kubernetes-Service详解 8.1 Service介绍 在kubernetes中&#xff0c;pod是应用程序的载体&#xff0c;我们可以通过pod的ip来访问应用程序&#xff0c;但是pod的ip地址不是固定的&#xff0c;这也就意味着不方便直接采用pod的ip对服务进行访问。 为了解决这个问题&#xff0…

Reg注册表读写

在Windows 95及其后继版本中&#xff0c;采用了一种叫做“注册表”的数据库来统一进行管理&#xff0c;将各种信息资源集中起来并存储各种配置信息。按照这一原则&#xff0c;Windows各版本中都采用了将应用程序和计算机系统全部配置信息容纳在一起的注册表&#xff0c;用来管理…

MAUI Blazor (Windows) App 动态设置窗口标题

原文链接 https://www.cnblogs.com/densen2014/p/16950996.html 接着上一篇"如何为面向 Windows 的 MAUI Blazor 应用程序设置窗口标题&#xff1f;" Tips: 总所周知,MAUI 除了 Windows App 其他平台窗口是没有 Title 这回事的. 在 Blazor 里面可以直接给页面打上…

阿里云部署应用

安装jdk 查看已安装版本 rpm -qa | grep java yum命令查找JDK1.8软件包 yum -y list java-1.8* 安装列表中的JDK1.8软件包 yum -y install java-1.8.0-openjdk-devel.x86_64 java -version 配置环境变量 vim /etc/profile JAVA_HOME/usr/lib/jvm/java-1.8.0-openjdk-1.8.…

Linux-性能分析常用工具

stress stress 是一个 Linux 系统压力测试工具&#xff0c;这里我们用作异常进程模拟平均负载升高的场景。 stress --cpu 1 --timeout 600 # 拟一个 CPU 使用率 100% 的场景 stress -i 1 --timeout 600 #模拟 I/O 压力&#xff0c;即不停地执行 sync stress -c 8 --timeou…

Java多线程同步工具类:Semaphore原理剖析

Java多线程同步工具类&#xff1a;Semaphore原理剖析 文章目录Java多线程同步工具类&#xff1a;Semaphore原理剖析Semaphore原理实战案例前驱知识准备&#xff1a;AbstractQueuedSynchronizer队列同步器 [Java多线程之&#xff1a;队列同步器AbstractQueuedSynchronizer原理剖…