如何以编程方式启动ASP.NET MVC应用程序并与之交互?

时间:2013-12-01 23:08:05

标签: .net asp.net-mvc integration-testing

我正在研究ASP.NET MVC应用程序。它的HttpApplication看起来像这样:

public class MvcApplication : HttpApplication
{
    protected void Application_Start()
    {
        //Do some sort of initialisation. Set the DependencyResolver.
    }
}

对于集成测试,我想以编程方式启动应用程序并使用其DependencyResolver与之交互。访问DependencyResolver似乎很容易,因为我可以致电DependencyResolver.Current。但是,我还没有想出如何运行应用程序初始化逻辑。

我尝试过调用new MvcApplication().Init(),但这似乎没有触发Application_Start方法调用。我尝试从MvcApplication继承并提供直接调用Application_Start的访问权限,但是由于ASP.NET MVC的异常而失败。

1 个答案:

答案 0 :(得分:0)

您可以使用Selenium WebDriver进行MVC应用程序的集成测试。您可以通过编写Web浏览器的操作编码来与应用程序UI进行预先交互。然后可以从MSTest运行集成测试,以便您可以针对UI编写断言。以下是Selenium http://docs.seleniumhq.org/docs/03_webdriver.jsp

的文档

以下是代码示例:

    [TestMethod]
    public void runUITest()
    {
        driver = new FirefoxDriver(); //launches a Firefox window so you can observe the test run
        driver.Manage().Timeouts().ImplicitlyWait(new TimeSpan(0, 0, 7));                
        driver.Navigate().GoToUrl("http://localhost/yourWebApp"));
        //assert something
Assert.IsTrue(driver.FindElement(By.XPath("//fieldset[@id='YourControl']/div/div[2]/label/span/span")).Displayed);
        //find an element and click it
        driver.FindElement(By.Id("FormSubmitButton")).Click();           
    }

Selenium WebDriver以NuGet包的形式提供。