python behave框架做接口测试原理
2021/9/9 20:34:44
本文主要是介绍python behave框架做接口测试原理,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1、behave简介
behave 是一种行为驱动开发的模式,python安装: pip install behave
behave官方文档教程:Tutorial — behave 1.2.7.dev2 documentationhttps://behave.readthedocs.io/en/latest/tutorial.html
2、 behave文件结构
#最简单的文件结构
features/ features/everything.feature #case文件 features/steps/ features/steps/steps.py #包含python步骤实现的函数,一些关键字的实现 除以上文件结构,开发者可根据需要新建目录或者文件编写函数实现需求。
#文件内容示例
#1、feature文件示例 Feature: test1111 #有时,一个场景应该与多个变量一起运行,给出一组已知状态、要采取的行动和预期结果,所有这些都使用相同的基本行动 Scenario 1: 场景名称1 Given I put <thing> in a blender, When I switch the blender on Then it should transform into <other thing> Examples: Amphibians | thing | other thing | | Red Tree Frog | mush | Examples: Consumer Electronics | thing | other thing | | iPhone | toxic waste | | Galaxy Nexus | toxic waste | Scenario 2: 场景名称2 # * 符号代表given * 请求"POST"接口"xxx/xxxx" ''' {.....} ''' #2、steps.py 步骤实现示例 from behave import * @given(u'请求"(?P<method>.*)"接口"(?P<api>.*)"') def send_request(context, method, api): xxxxx @when('we implement a test') def step_impl(context): assert True is not False @then('behave will test it for us!') def step_impl(context): assert context.failed is False #3、context的使用 全局?保存变量?取值?
这篇关于python behave框架做接口测试原理的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-14获取参数学习:Python编程入门教程
- 2024-11-14Python编程基础入门
- 2024-11-14Python编程入门指南
- 2024-11-13Python基础教程
- 2024-11-12Python编程基础指南
- 2024-11-12Python基础编程教程
- 2024-11-08Python编程基础与实践示例
- 2024-11-07Python编程基础指南
- 2024-11-06Python编程基础入门指南
- 2024-11-06怎么使用python 计算两个GPS的距离功能-icode9专业技术文章分享