将SpecFlow结果发布到TestRail

时间:2017-06-05 10:30:02

标签: c# json specflow testrail

免责声明:我是一名正在学习的相关编码新手。

我已经设置了一个使用Cucumber和C#Selenium的Specflow项目并下载了TestRail API。我按照现有示例将测试结果发布到场景结束时的静态测试轨道ID。

{              Gurock.TestRail.APIClient client = new Gurock.TestRail.APIClient(“https://testrail.placeholder.com/testrail”);              client.User =“user@email.com”; //将您的用户的电子邮件发送到此处              client.Password =“密码”; //将用户的密码放在这里

         Dictionary<string, object> testResult = new Dictionary<string, object>();
         if (null != ScenarioContext.Current.TestError)
         {
             testResult["status_id"] = "5"; //failed;
             testResult["comment"] = ScenarioContext.Current.TestError.ToString();
         }
         else
         {
             testResult["status_id"] = "1"; //passed
         }
            client.SendPost("add_result_for_case/:run_id/:case_id"); //Here I am using a hardcoded test id.}

我可以使用基于场景标记的If将上述代码链接到场景,例如

if (ScenarioContext.Current.ScenarioInfo.Tags.Contains("case_id"))

但问题是我必须为每个场景复制上面的代码,每次都使用唯一的IF语句和标记。我想要的是一种对发布进行paramatarise的方法,这样我只需要一个代码块就可以将每个场景的结果发送到正确的静态TestRail ID。

1 个答案:

答案 0 :(得分:0)

我会为CaseID标签添加前缀,以便您可以将它们与普通标签区分开来 让我们说TC_,以便您的标签命名为TC_1,TC_42,...

要立即获取测试用例ID,您必须在ScenarioContext.Current.ScenarioInfo.Tags

中找到一个以TC_开头的条目

此代码可能如下所示:

var tags = ScenarioContext.Current.ScenarioInfo.Tags;
var testCaseIds = tags
                    .Where(i => i.StartsWith("TC_")) //get all entries that start with TC_
                    .Select(i => i.Substring(3)); //get only the part after TC_
                    .ToList();

现在您有一个包含测试用例ID的列表,可以将其传递给TestRails API。