博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpecFlow特性介绍2-Context
阅读量:5291 次
发布时间:2019-06-14

本文共 2436 字,大约阅读时间需要 8 分钟。

应用SpecFlow做Acceptance Test的时候经常遇到不同的Step之间传递数据,例子:

Feature: Components

    As a logged in user
    I want to be able to add new components
    So that I can perform asssessments on them

@LogIn

@SetCurrentSection
Scenario: Add new component
    Given I am on the components page
    When I add a new component
    Then the component should be added to the overview

我们在When中创建了一个component名字(或者Title)TestName,在Then步骤中我需要查找到这个名字TestName。

下面介绍几种常用的方法:

实例字段:SpecFlow可以创建一个对象实例,该类包括所有的Scenario steps在一个class中,这样我们可以使用私有字段来在不同方法中传递数据。下面例子来自SpecFlow wiki:

[Binding]public class SearchSteps{    private ActionResult actionResult;    [When(@"I perform a simple search on '(.*)'")]    public void WhenIPerformASimpleSearchOn(string searchTerm)    {        var controller = new CatalogController();        actionResult = controller.Search(searchTerm);    }    [Then(@"the book list should exactly contain book '(.*)'")]    public void ThenTheBookListShouldExactlyContainBook(string title)    {         var books = actionResult.Model
>(); CustomAssert.Any(books, b => b.Title == title); }}
上下文连接:SpecFlow提供了2个Context实例, ScenarioContext, FeatureContext.
我们可以使用ScenarioContext为一个scenario创建实例,它会在Scenario执行完后自动销毁。类似FeatureContext在第一个scenario时创建,并且整个feature执行完后销毁。我一般使用多的是ScenarioContext。我们回到开头提到的例子。这里When和Then放在不同的class中,没法使用之前的私有成员来在不同的方法传递数据。

[Binding]

class ComponentsWhen
{
    [When(@"I add a new component")]
    public void WhenIAddANewComponent()
    {
        var page = WebBrowser.Current.Page<ComponentsPage>();
        var driver = new ComponentsDriver(page);
        string componentName = "Test Component Name" + new Random().Next(100);
        ScenarioContext.Current.Set<string>(componentName, TestConstants.ContextKeys.ComponentName);
        driver.AddNewComponent(componentName);
    }
}

[Binding]

public class ComponentsThen
{
    [Then(@"the component should be added to the overview")]
    public void ThenTheComponentShouldBeAddedToTheOverview()
    {
        var page = WebBrowser.Current.Page<ComponentsPage>();
        var driver = new ComponentsDriver(page);
        string componentName = ScenarioContext.Current.Get<string>(TestConstants.ContextKeys.ComponentName);
        page.ComponentsTable.WaitUntil(x => x.Enabled);
        Assert.That(page.ComponentsTable.ContainsText(componentName), "Expected component name: " + componentName);
    }
}
我们的做法是在When步骤设置ScenarioContext.Current对象,我们可以看出ScenarioContext继承Dictionary<string, object>, 并时间 IDisposable接口。

转载于:https://www.cnblogs.com/SandyYu/archive/2013/01/06/2846459.html

你可能感兴趣的文章
理解运算符重载 4
查看>>
快来熟练使用 Mac 编程
查看>>
第二周
查看>>
断言简介
查看>>
Node.js 入门:Express + Mongoose 基础使用
查看>>
plsql使用,为什么可以能看见其他用户的表
查看>>
一步步教你轻松学奇异值分解SVD降维算法
查看>>
Scripting Java #3:Groovy与invokedynamic
查看>>
2014-04-21-阿里巴巴暑期实习-后台研发-二面经验
查看>>
数据结构中线性表的基本操作-合并两个线性表-依照元素升序排列
查看>>
使用pager进行分页
查看>>
吐医疗器械研发可配置性需求的槽点
查看>>
UVA - 1592 Database
查看>>
机器翻译评价指标 — BLEU算法
查看>>
机器学习基石(9)--Linear Regression
查看>>
Min Stack
查看>>
从LazyPhp说起
查看>>
Fine Uploader文件上传组件
查看>>
Spring Boot与Spring的区别
查看>>
查看linux 之mysql 是否安装的几种方法
查看>>