我有一套用 C# 编写的 Webdriver 测试,我使用 MSTest 作为运行程序。此时 NUnit 不是一个选项,所以我需要弄清楚如何使它与当前配置一起工作。对于 CI,我使用的是 Jenkins 版本。1.514。我无法控制正在安装哪些插件或 Jenkins 何时更新,如果问这样的事情可能会导致不同团队的漫长等待和批准过程(讨厌 birocracy)。
所以.. 我有一些 DataDriven 测试,定义如下(我将粘贴其中一个)
[DataSource("Microsoft.VisualStudio.TestTools.DataSource.CSV", "UsersData.csv", "UsersData#csv", DataAccessMethod.Sequential)]
[TestMethod()]
public void Test_Login()
{
Logger.Info("");
Logger.Info("-----------------------------------------------------------------");
因此,这应该足够清楚,我正在使用 UsersData.csv 文件,该文件位于我项目的 TestData 文件夹中。为了在 Jenkins 中运行这个测试,我曾经使用这个命令行
mstest /testmetadata:"%WORKSPACE%\SeleniumJenkins.vsmdi" /testlist:Jenkins /resultsfile:"%WORKSPACE%\AllTests_Jenkins.trx" /runconfig:"%WORKSPACE%\Local.testsettings" /detail:stdout
一切正常,但有一天,当我在 TRX 结果文件中遇到此错误时:
The unit test adapter failed to connect to the data source or to read the data. For more information on troubleshooting this error, see "Troubleshooting Data-Driven Unit Tests" (http://go.microsoft.com/fwlink/?LinkId=62412) in the MSDN Library.Error details: The .Net Framework Data Providers require Microsoft Data Access Components(MDAC). Please install Microsoft Data Access Components(MDAC) version 2.6 or later.Retrieving the COM class factory for component with CLSID {2206CDB2-19C1-11D1-89E0-00C04FD7A829} failed due to the following error: 8007007e The specified module could not be found. (Exception from HRESULT: 0x8007007E).
但是,如果我登录从运行的机器并运行相同的命令,它似乎找到了 DataSource 文件并且运行正常。
此外,我安装了 psexec 并将命令放入 *.bat 文件中,然后我从 ps exec 中调用该文件,如下所示:
psexec \\my_IP -u "machine-name\jenkins-local" -p "password" cmd /C call "%WORKSPACE%\Selenium\msteststart.bat"
这似乎有效,但我没有任何登录 Jenkins,如果我将它重定向到一个文件,那么每当另一个构建开始并清除工作区时,文件就会丢失,所以我只有文件的最后一个版本我无法将它与其他版本进行比较。
local.testsettings 文件如下所示:
<?xml version="1.0" encoding="UTF-8"? >
<TestSettings name="Local" id="06505635-693a-4f31-b962-ecf8422b5eca" xmlns="http://microsoft.com/schemas/VisualStudio/TeamTest/2010">
<Description>These are default test settings for a local test run.</Description>
<Deployment>
<DeploymentItem filename="Selenium\TestData\UsersData.csv" />
</Deployment>
<NamingScheme baseName="Selenium_" useDefault="false" />
<Execution>
<Timeouts testTimeout="10800000" />
<TestTypeSpecific>
<UnitTestRunConfig testTypeId="13cdc9d9-ddb5-4fa4-a97d-d965ccfc6d4b">
<AssemblyResolution>
<TestDirectory useLoadContext="true" />
</AssemblyResolution>
</UnitTestRunConfig>
</TestTypeSpecific>
<AgentRule name="Execution Agents">
</AgentRule>
</Execution>
</TestSettings>
如果有人能给我一个提示,我将不胜感激。谢谢