如何将SpecFlow表转换为Dictionary <string,list <string =“”>&gt; C#

时间:2017-01-20 10:18:27

标签: c# dictionary specflow

我必须遵循SpecFlow代码:

    And I get and validate parameters
        | ParameterName| Value | Answers | Mandatory | Meta | Modified | ReadOnly | Submit | SubmitValues | Tag    |
        | SurName      |       |         | true      |      | false    | false    | true   |              | input  |
        | Name         |       |         | true      |      | false    | false    | false  |              | input  |
.....

我希望此表将其转换为Dictionary<string, List<string>>,头列将是键,其余信息将是值。我硬编了一些值:

Dictionary<string, List<string>> dictionary = new Dictionary<string, List<string>>();
dictionary.Add("ParameterName", new List<string> {"SurName", "Name", "Age"});
dictionary.Add("Value", new List<string> { "", "", "" });
dictionary.Add("Answers", new List<string> { "", "", "" });
dictionary.Add("Mandatory", new List<string> { "true", "true", "true" });
dictionary.Add("Meta", new List<string> { "", "", "" });
dictionary.Add("Modified", new List<string> { "false", "false", "false" });
dictionary.Add("ReadOnly", new List<string> { "false", "false", "false" });
dictionary.Add("Submit", new List<string> { "true", "false", "true" });
dictionary.Add("SubmitValues", new List<string> { "", "", "" });
dictionary.Add("Tag", new List<string> { "input", "input", "select" });

但是实际的表格有很多值,我需要为所有这些值做这些,并且它们可能会改变,这就是为什么我不需要硬编码字典。 我怎么能这样做?

3 个答案:

答案 0 :(得分:0)

在这样的字典中,检索同一行非常尴尬(你应该索引值列表)......

相反,我会创建一个List<TestParameters>,其中TestParameters类包含一个具有正常强类型属性的行:

public class TestParameters
{
    public string ParameterName { set; set; }
    public int Value { set; set; }
    public bool Mandatory { set; set; }
    // etc.
}

所以现在你有一个像这样的测试步骤:

[Given(@"I get and validate parameters")]
public void GetParameters(Table parameters)
{
}

只需将Table替换为更具体的类型:

[Given(@"I get and validate parameters")]
public void GetParameters(List<TestParameters> parameters)
{
}

只需在帮助程序类中定义一个Table-&gt; List转换步骤:

[Binding]
public class Transformations
{
    [StepArgumentTransformation]
    public List<TestParameters> GetTestParameters(Table table)
    {
        return table.Rows.Select(row => new TestParameters
        {
            // string prop
            ParameterName = row["ParameterName"],

            // int prop
            Value = !String.IsNullOrEmpty(row["Value"]) ? Int32.Parse(row["Value"]) : 0,

            // bool prop
            Mandatory = row["Mandatory"]?.ToLowerInvariant() == "true"

            // TODO: other properties
        }).ToList();
    }
}

当然,转换的结果也可以是Dictionary<string, List<string>>,如果你真的坚持那样......

答案 1 :(得分:0)

您还可以使用TechTalk.SpecFlow.Assist命名空间中的CreateSet扩展方法 请查看此处的文档:http://specflow.org/documentation/SpecFlow-Assist-Helpers/

小例子:

  

CreateSet是一个表格的扩展方法,它将转换   表数据到一组对象。例如,如果您有以下内容   步骤:

Given these products exist
    | Sku              | Name             | Price |
    | BOOK1            | Atlas Shrugged   | 25.04 |
    | BOOK2            | The Fountainhead | 20.15 |
  

您可以将表格中的数据转换为一组对象,如下所示:

[Given(@"Given these products exist")]
public void x(Table table)
{
    var products = table.CreateSet<Product>();
    // ...
}

答案 2 :(得分:0)

回答这个问题为时已晚,但可能会对其他人有所帮助。

在集合中处理此类数据的更好方法应该是List>格式。

以下扩展方法应在这方面有所帮助-

    public static List<Dictionary<string, string>> ConvertToDictionaryList(this Table dt)
    {
        var lstDict = new List<Dictionary<string, string>>();

        if (dt!=null)
        {
            var headers = dt.Header;

            foreach (var row in dt.Rows)
            {
                var dict = new Dictionary<string, string>();
                foreach (var header in headers)
                {
                    dict.Add(header, row[header]);
                }

                lstDict.Add(dict);
            }
        }

        return lstDict;
    }

但是如果您仍然想使用Dictionary>,则可以使用以下代码段

    public static List<Dictionary<string, string>> ConvertToDictionaryList(this Table dt)
    {
        var lstDict = new Dictionary<string, List<string>>();

        if (dt != null)
        {
            var headers = dt.Header;

            foreach (var row in dt.Rows)
            {
                foreach (var header in headers)
                {
                    if (lstDict.ContainsKey(header))
                    {
                        lstDict[header].Add(row[header]);
                    }
                    else
                    {
                        lstDict.Add(header, new List<string> { row[header] });
                    }
                }
            }
        }

        return lstDict;

    }