Cucumber简介

作者: kawa007 | 来源:发表于2018-07-31 14:25 被阅读95次

    Cucumber 是 BDD 模式下实现可执行规范(Executable Specifications)的开源工具,但是它的使命并不局限于做自动化验收测试,更加重要的在于其能够在团队成员之间构建统一的交流基础(feature 文件)、规范交流用语(Domain Specific Language)、提高各个利益相关方(Business Stakeholders)沟通效率和效果,从而达到提升产品质量、做成客户期望得到的产品这一最终目标。

    • 可执行性(Executable):您可以像执行代码(Java、Ruby...)一样运行这些规范,来验证、验收目标应用。当然,这一点是从技术人员的视角来看的;

    • 规范性(Specification):从非技术人员的视角触发,相比验证本身,他们更加关心系统功能的清晰描述:系统在什么场景下能够做什么样的事情。

    这看似简单的两方面似乎关联并不是很大,但是如何能够在同一个基础(feature files)之上做到两者的融合,却是 Cucumber 最大的妙处。从项目管理人员的角度来看,Cucumber 是技术人员和非技术人员交流的桥梁,从更加深的层面来看,Cucumber 能够增加各个利益相关方的沟通,因为只有深入的沟通,在各方都理解了真正期望的功能这一基础之上,才能产出都认可的 Executable Specification!

    Cucumber Wiki

    常用的BDD框架,除了ruby的cucumber,还有python的Behave

    如何使用Cucumber

    这里以ruby为例介绍Cucumber的安装

    
    cucumber --init
    
    

    Gherkin

    Cucumber的核心是一个叫Gherkin的语言。

    Gherkin是一种被设计于定义测试用例来检查软件行为,而不用指定该行为实现的DSL语言,Cucumber的测试用例正是使用Gherkin来编写的。

    A domain-specific language (DSL) is a computer language specialized to a particular application domain.
    DSL是指专门针对特定领域设计的计算机语言

    注:Cocoapods的Podfile文件就是用DSL语言来编写的,DSL在iOS开发中应用,可以参考这篇文章

    Cherkin的语法定义在Cucumber基础代码库的Treetop语法中

    Gherkin支持60多种语言的来编写

    Gherkin默认使用英语,如果希望使用指定的语言,只需在feature文件的第一行加上# language: your-language,以中文为例:# language: zh-CN

    查看Gherkin所有可用的语言

    
    cucumber --i18n-languages
    
    

    查看关键字

    
    cucumber --i18n-keywords zh-CN
    
    
    
     | feature | "功能"  |
    
     | background  | "背景"  |
    
     | scenario  | "场景", "剧本"  |
    
     | scenario_outline | "场景大纲", "剧本大纲"  |
    
     | examples  | "例子"  |
    
     | given | "* ", "假如", "假设", "假定" |
    
     | when  | "* ", "当" |
    
     | then  | "* ", "那么"  |
    
     | and | "* ", "而且", "并且", "同时" |
    
     | but | "* ", "但是"  |
    
     | given (code)  | "假如", "假设", "假定"  |
    
     | when (code) | "当" |
    
     | then (code) | "那么"  |
    
     | and (code)  | "而且", "并且", "同时"  |
    
     | but (code)  | "但是"  |
    
    

    一个Gherkin源文件通常看起来是这样的

    
     1: Feature: Some terse yet descriptive text of what is desired
    
     2:  Textual description of the business value of this feature
    
     3:  Business rules that govern the scope of the feature
    
     4:  Any additional information that will make the feature easier to understand
    
     5: 
    
     6:  Scenario: Some determinable business situation
    
     7:  Given some precondition
    
     8:  And some other precondition
    
     9:  When some action by the actor
    
    10:  And some other action
    
    11:  And yet another action
    
    12:  Then some testable outcome is achieved
    
    13:  And something else we can check happens too
    
    14: 
    
    15:  Scenario: A different situation
    
    16:  ...
    
    

    第一行feature描述期待的功能。

    第2–4行描述这个功能的商业价值。

    第6行开始一个场景。

    第7行到第13行是场景的步骤。

    第15行开始下一个场景

    编写Cucumber测试用例可使用Intellij IDEA这个编辑器,参考这篇文章

    运行单元测试

    执行单元测试

    bundle exec cucumber
    

    输出报表

    bundle exec cucumber --format html --out /Users/yangfangming/Desktop/TuanFund-Appium/report/report.html
    

    更多帮助

    cucumber --help
    

    Example

    使用Cucumber的工程Exampe

    参考

    Cucumber文档

    Gherkin文档

    Gherkin维基百科

    https://www.ibm.com/developerworks/cn/java/j-lo-cucumber01/index.html

    相关文章

      网友评论

        本文标题:Cucumber简介

        本文链接:https://www.haomeiwen.com/subject/kxchvftx.html