我正在研究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的异常而失败。
答案 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包的形式提供。