Python BDD自动化测试框架初探

 

1. 什么是BDD

BDD全称Behavior Driven Development,译作"行为驱动开发",是基于TDD (Test Driven Development 测试驱动开发)的软件开发过程和方法。

BDD可以让项目成员(甚至是不懂编程的)使用自然语言来描述系统功能和场景,从而根据这些描述步骤进行系统自动化的测试。(详见附录4.1)

2. 常用BDD框架介绍

目前常用的BDD测试框架有Ruby中的Cucumber,Python中的Behave、Lettuce及Freshen等。

基本的流程如下图所示(Lettuce官方图):

简单来说就是"写用例->跑测试->看结果->写实现->看结果"这样的一个循环。

Behave网站列出了上面提到的几个自动化测试框架的对比(详见附录4.2),基于此原因,本文选择behave来介绍Python BDD自动化测试框架。

3. Behave示例

3.1 Behave安装

1pip install behave # 全新安装
2pip install -U behave # 更新

3.2 基础知识

3.2.1 Gherkin语法

上文提到的几种BDD框架均使用Gherkin 语法,这是一种简单易懂的语言,使用关键字来定义系统特征和测试。

使用Gherkin语法编写的feature文件基本结构如下:

1Title (one line describing the story/feature)
2  
3    As a     [role]
4    I want   [feature]
5    So that  [benefit]
6  
7    Scenario: Title1 (for Behaviour 1)
8  
9        Given  [context or setup]
10        And   [some more context]...
11        When  [event occurs]
12        Then  [expected outcome]
13        And   [another outcome]...
14  
15    Scenario: Title2 (for Behaviour 2)
16        ...

3.2.2 断言模块

使用BDD测试框架前,需要选择一个好用的断言模块。Python有很多可用的断言模块(下表),本文我们选择hamcrest模块为例。

Matcher Library Description
Native assert Starting point, but not enough information when assert fails.
hamcrest First assertion matcher library, now part of JUnit4. Supports several programming languages: http://code.google.com/p/hamcrest/
nose.tools Part of the nose test framework
should-dsl An interesting small matcher library, http://www.should-dsl.info/
sure Provided by the maker of lettuce, github:/gabrielfalcao/sure
compare http://pypi.python.org/pypi/compare
describe http://pypi.python.org/pypi/describe

3.2.3 目录结构

Behave项目的目录格式如下:

1$PROJECT/
2+-- features/                   -- Contains all feature files.
3|       +-- steps/
4|       |     +-- step_*.py     -- Step definitions for features.
5|       +-- environment.py      -- Environment for global setup...
6|       +-- tutorial*.feature   -- Feature files.

3.3 Behave示例

我们以fibnacci数列计算为例,来了解下behave框架结构及如何使用(网上基本都是以阶乘或WEB页面为例,为显示本文的原创性,我们以fib数列为例

首先,比较pythonic的实现fib数列的代码如下:

1# -*- coding:utf-8 -*-
2def fibs(num):
3    a=b=1
4    for i in range(num):
5        yield a
6        a,b=b,a+b
7print list(fibs(10))

使用behave的详细步骤如下:

1. 新建目录fib,在此目录下新建文件fib.feature,内容如下

1Feature:Calc Fib
2    In order to introduce Behave
3    We calc fib as example
4  
5  Scenario: Calc fib number
6     Given we have the number 10
7      when we calc the fib
8      then we get the fib number 55

2. 新建目录fib/steps,在此目录下新建文件fib.py,内容如下

1from behave import *
2from hamcrest import *
3  
4def fibs(num):
5    a=b=1
6    for i in range(num):
7        yield a
8        a,b=b,a+b
9  
10@given('we have the number {number}')
11def have_number(context,number):
12    context.fib_number = int(number)
13  
14@when('we calc the fib')
15def calc_fib(context):
16    context.fib_number=list(fibs(context.fib_number))[-1]
17  
18@then('we get the fib number {number}')
19def get_number(context,number):
20    context.expected_number = int(number)
21    assert_that(context.fib_number, equal_to(context.expected_number),"Calc fib number: %d" %context.fib_number)

这段Python代码主要分为三部分:

@given部分将输入的number=10转为整形并存入变量中

@when部分调用fib函数,计算fib数列值

@then 部分将计算出的fib值与预期值进行断言比较,判断结果是否相等

3. 切换到fib目录,执行behave命令,结果如下

4. Scenario Outlines场景大纲

有时相同的一个Scenario需要在很多不同的参数情况下运行,为了避免写过多重复的Scenario ,我们需要使用Scenario Outlines,如fib.feature文件内容可以修改如下:

1Feature:Calc Fib
2    In order to introduce Behave
3    We calc fib as example
4  
5  Scenario Outline: Calc fib number
6     Given we have the number <number>
7      when we calc the fib
8      then we get the fib number <fib_number>
9  
10      Examples: Some Numbers
11        | number    | fib_number |
12        | 1         | 1          |
13        | 2         | 2          |
14        | 10        | 55         |

执行结果如下:

5. 更多的beahve示例可以参考附录4.4

4. 附录

作者只对Python BDD自动化测试框架进行了简单了解和学习,没有在实际的项目中进行实践,本文只算是一篇BDD自动化测试的入门。

各位若想更深入了解BDD,可参考如下网页资料:

4.1 BDD详细介绍:https://pythonhosted.org/behave/philosophy.html

4.2 常用测试框架对比:https://pythonhosted.org/behave/comparison.html

4.3 Hamcrest断言模块:https://github.com/hamcrest/PyHamcrest

4.4 Behave示例:http://jenisys.github.io/behave.example/

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值