有没有人解决过如何将SpecFlow Step Argument Transformations应用于表格中的单元格,以及SpecFlow.Assist CreateInstance / CreateSet? (代码组合起来节省空间)
Given a table like the following:
| Price | Zip | Effective Date |
| 10.00 | 90210 | in 2 days |
When the 'given' step executes
And the table data populates a poco
Then the effective date should be transformed into a DateTime with value of 2 days from today
[Given(@"a table like the following:")]
public void GivenATableLikeTheFollowing(Table table)
{
var temp = table.CreateInstance<Temp>();
}
internal class Temp
{
decimal Price { get; set; }
int Zip { get; set; }
DateTime EffectiveDate { get; set; }
}
[Binding]
public class Transforms
{
[StepArgumentTransformation(@"in (\d+) days?")]
public DateTime InXDaysTransform(int days)
{
return DateTime.Today.AddDays(days);
}
}
StepArgumentTransformation绑定显然不适用于表格单元格内容(因为步骤的参数是类型表),但不知何故,SpecFlow.Assist CreateInstance / CreateSet仍会转换基本类型的单元格数据。
例如,如果生效日期的内容为'11 / 13/2016'而不是'在2天内',则基础poco的EffectiveDate属性转换为DateTime就好了(或者是int,decimal等)。
我看到其他一些解决方案,例如在步骤定义中应用转换,例如here或创建StepArgumentTransformation for the whole table,但是......显而易见的缺点。更新:this question类似,但解决方案也避免使用CreateInstance / CreateSet混合StepArgumentTransformation。
SpecFlow Assist Helpers文档中还有一节关于通过注册值检索器/比较器进行扩展,但在我的示例中,DateTime集已经存在。那么,也许是自定义DateTime类型?似乎可能会检查已知类型上的StepArgumentTransformations,或类似的东西。
在DateTime retriever中,类似于......
public virtual DateTime GetValue(string value)
{
var returnValue = DateTime.MinValue;
// check for StepArgumentTransformations here first?
DateTime.TryParse(value, out returnValue);
return returnValue;
}
在使用table.CreateInstance时,有什么想法可以让StepArgumentTransformation应用于表格单元格内容?或者是最好/唯一的解决方案之一?
答案 0 :(得分:2)
我创建了一个小型原型,可用于重新配置Assist,以便能够通过[StepArgumentTransformation]
绑定获取转化。
我的计划是撰写关于它的博客文章,但在它准备好之前,也许你可以从这个要点中脱颖而出。 (我在一年前为SpecFlow v2.0做过,所以可能需要一些较小的适应性。)
答案 1 :(得分:0)
我不认为你想要的是目前实现的,但理论上我认为它可以实现。您可以自己实现一个新的增强型DateTimeValueRetriever
,它会检查该字符串是否可以先解析为日期时间,如果不是,则检查是否有任何[StepArgumentTransformation]
方法可以解析它,然后{{3 }}。然后你可以提交一个pr版本,提供你的新版本作为对现有版本的增强,看看它的胃口是什么。