使用PNunit运行并行测试,无法从配置文件中读取

时间:2014-08-30 18:47:17

标签: visual-studio-2013 webdriver nunit browserstack pnunit

我想在Browserstack中运行pararell测试。这是我的测试项目

RTest(VS 2013中的单元测试项目)

-UnitTest1.cs

-RTest.config

我打开Nunit并浏览到我的dll bin / debug / RTest.dll,Nunit找到我的测试用例

问题 我的RTest.config文件如下所示:

<TestGroup>
  <ParallelTests>
      <ParallelTest>
        <Name>Testing</Name>
        <Tests>
          <TestConf>
            <Name>TestFF-20-Win8</Name>
            <Assembly>RTest.dll</Assembly>
            <TestToRun>RTest.UnitTest1.TestCase</TestToRun>
            <Machine>localhost:8080</Machine>
            <TestParams>
                <string>firefox</string> <!--browserName -->
                <string>20.0</string> <!-- version -->
                <string>Windows</string><!-- os -->
                <string>8</string><!-- os_version -->
            </TestParams>
          </TestConf>
          <TestConf>
            <Name>TestFF-21-win7</Name>
            <Assembly>RTest.dll</Assembly>
            <TestToRun>Test.UnitTest1.TestCase</TestToRun>
            <Machine>localhost:8080</Machine>
            <TestParams>
              <string>firefox</string>
              <!--browserName -->
              <string>21.0</string>
              <!-- version -->
              <string>Windows</string>
              <!-- os -->
              <string>7</string>
              <!-- os_version -->
            </TestParams>
          </TestConf>
        </Tests>
      </ParallelTest>
  </ParallelTests>
</TestGroup>

我的UnitTest1.cs看起来像这样:

using NUnit.Framework;
using PNUnit.Framework;
using System;
using System.Web;
using System.Text;
using System.Net;
using OpenQA.Selenium;
using OpenQA.Selenium.Remote;

namespace RTest
{
    [TestFixture()]
    public class UnitTest1
    {
        private IWebDriver driver;
        private string[] testParams;

        [SetUp]
        public void Init()
        {
            testParams = PNUnitServices.Get().GetTestParams();
            String params1 = String.Join(",", testParams);
            Console.WriteLine(params1);
            String browser = testParams[0];
            String version = testParams[1];
            String os = testParams[2];
            String os_version = testParams[3];
            DesiredCapabilities capability = new DesiredCapabilities();
            capability.SetCapability("browserName", browser);
            capability.SetCapability(CapabilityType.Version, version);
            capability.SetCapability("os", os);
            capability.SetCapability("os_version", os_version);
            capability.SetCapability("browserstack.user", "testUser");
            capability.SetCapability("browserstack.key", "testPW");

            Console.WriteLine("Capabilities" + capability.ToString());

            driver = new RemoteWebDriver(new Uri("http://hub.browserstack.com:80/wd/hub/"), capability);
        }

        [Test]
        public void TestCase()
        {
            driver.Navigate().GoToUrl("http://www.google.com");
            StringAssert.Contains("Google", driver.Title);
            IWebElement query = driver.FindElement(By.Name("q"));
            query.SendKeys("Browserstack");
            query.Submit();
        }

        [TearDown]
        public void Cleanup()
        {
            driver.Quit();
        }
    }
}

当我运行测试时,我收到mInstance为空...... 我在这里做错了什么?

2 个答案:

答案 0 :(得分:0)

尝试将RTest.config重命名为test.conf

答案 1 :(得分:0)

PNunit很长一段时间没有维护。我发现了一个新的开源分布式运行器,它可以在分布式和并行运行NUnit测试,你可以检查项目documentation

通常,您有测试控制器和测试代理。测试代理运行您的测试。 首先启动服务器

  

meissa.exe initServer

  1. 在相同或多台计算机上启动测试代理:
  2.   

    meissa.exe testAgent --testAgentTag =&#34; APIAgent&#34;   --testServerUrl =&#34; HTTP:// IPServerMachine:5000&#34;

    1. 运行指向服务器URL的测试
    2.   

      meissa.exe runner --resultsFilePath =&#34; pathToResults \ result.trx&#34;   --outputFilesLocation =&#34; pathToBuildedFiles&#34;   --agentTag =&#34; NUnit的&#34; --testTechnology =&#34; MSTestCore&#34;   --testLibraryPath =&#34; pathToBuildedFiles \ SampleTestProj.dll&#34;

      很棒,因为您根本不需要任何配置文件或更改代码。它可以与.NET Framework和.NET Core项目一起使用。