Mocking Asp.net-mvc Controller Context - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T08:19:43Z http://stackoverflow.com/feeds/question/32640 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/32640/mocking-asp-net-mvc-controller-context 11 Mocking Asp.net-mvc Controller Context TheDeeno 2008-08-28T15:50:35Z 2009-04-24T09:18:04Z <p>So the controller context depends on some asp.net internals. What are some ways to cleanly mock these up for unit tests? Seems like its very easy to clog up tests with tons of setup when I only need, for example, Request.HttpMethod to return "GET".</p> <p>I've seen some examples/helpers out on the nets, but some are dated. Figured this would be a good place to keep the latest and greatest.</p> <p>I'm using latest version of rhino mocks</p> http://stackoverflow.com/questions/32640/mocking-asp-net-mvc-controller-context/32672#32672 9 Answer by Haacked for Mocking Asp.net-mvc Controller Context Haacked 2008-08-28T16:06:37Z 2008-10-07T15:13:07Z <p>Using MoQ it looks something like this:</p> <pre><code>var request = new Mock&lt;HttpRequestBase&gt;(); request.Expect(r =&gt; r.HttpMethod).Returns("GET"); var mockHttpContext = new Mock&lt;HttpContextBase&gt;(); mockHttpContext.Expect(c =&gt; c.Request).Returns(request.Object); var controllerContext = new ControllerContext(mockHttpContext.Object , new RouteData(), new Mock&lt;ControllerBase&gt;().Object); </code></pre> <p>I think the Rhino Mocks syntax is similar.</p> http://stackoverflow.com/questions/32640/mocking-asp-net-mvc-controller-context/33597#33597 0 Answer by Matt Hinze for Mocking Asp.net-mvc Controller Context Matt Hinze 2008-08-28T23:01:25Z 2008-08-28T23:01:25Z <p>I find that long mocking procedure to be too much friction.</p> <p>The best way we have found - using ASP.NET MVC on a real project - is to abstract the HttpContext to an IWebContext interface that simply passes through. Then you can mock the IWebContext with no pain.</p> <p>Here is an <a href="http://code.google.com/p/tarantino/source/browse/trunk/src/Tarantino.Core/Commons/Services/Web/IWebContext.cs" rel="nofollow">example</a></p> http://stackoverflow.com/questions/32640/mocking-asp-net-mvc-controller-context/33752#33752 0 Answer by Jason for Mocking Asp.net-mvc Controller Context Jason 2008-08-29T01:26:39Z 2008-08-29T01:26:39Z <p>Look at the sample code here:</p> <p><a href="http://code.google.com/p/dojoblog/" rel="nofollow">http://code.google.com/p/dojoblog/</a></p> <p>It was part of a demo I went to today on ASP.NET MVC, and it includes a pretty good lab exercise on testing.</p> http://stackoverflow.com/questions/32640/mocking-asp-net-mvc-controller-context/33798#33798 4 Answer by TheDeeno for Mocking Asp.net-mvc Controller Context TheDeeno 2008-08-29T01:53:09Z 2008-08-29T01:53:09Z <p>Here's a snippet from Jason's link. Its the same as Phil's method but uses rhino. </p> <p><em>Note: mockHttpContext.Request is stubbed to return mockRequest <strong>before</strong> mockRequest's internals are stubbed out. I believe this order is required.</em></p> <pre><code>// create a fake web context var mockHttpContext = MockRepository.GenerateMock&lt;HttpContextBase&gt;(); var mockRequest = MockRepository.GenerateMock&lt;HttpRequestBase&gt;(); mockHttpContext.Stub(x =&gt; x.Request).Return(mockRequest); // tell the mock to return "GET" when HttpMethod is called mockRequest.Stub(x =&gt; x.HttpMethod).Return("GET"); var controller = new AccountController(); // assign the fake context var context = new ControllerContext(mockHttpContext, new RouteData(), controller); controller.ControllerContext = context; // act ... </code></pre> http://stackoverflow.com/questions/32640/mocking-asp-net-mvc-controller-context/220113#220113 1 Answer by ruslan rusu for Mocking Asp.net-mvc Controller Context ruslan rusu 2008-10-20T22:04:51Z 2008-10-20T22:04:51Z <p>Hi great stuff ... i've finsihed with this spec</p> <pre><code>public abstract class Specification &lt;C&gt; where C: Controller { protected C controller; HttpContextBase mockHttpContext; HttpRequestBase mockRequest; protected Exception ExceptionThrown { get; private set; } [SetUp] public void Setup() { mockHttpContext = MockRepository.GenerateMock&lt;HttpContextBase&gt;(); mockRequest = MockRepository.GenerateMock&lt;HttpRequestBase&gt;(); mockHttpContext.Stub(x =&gt; x.Request).Return(mockRequest); mockRequest.Stub(x =&gt; x.HttpMethod).Return("GET"); EstablishContext(); SetHttpContext(); try { When(); } catch (Exception exc) { ExceptionThrown = exc; } } protected void SetHttpContext() { var context = new ControllerContext(mockHttpContext, new RouteData(), controller); controller.ControllerContext = context; } protected T Mock&lt;T&gt;() where T: class { return MockRepository.GenerateMock&lt;T&gt;(); } protected abstract void EstablishContext(); protected abstract void When(); [TearDown] public virtual void TearDown() { } } </code></pre> <p>and the juice is here </p> <pre><code>[TestFixture] public class When_invoking_ManageUsersControllers_Update :Specification &lt;ManageUsersController&gt; </code></pre> <p>{ private IUserRepository userRepository; FormCollection form;</p> <pre><code> ActionResult result; User retUser; protected override void EstablishContext() { userRepository = Mock&lt;IUserRepository&gt;(); controller = new ManageUsersController(userRepository); retUser = new User(); userRepository.Expect(x =&gt; x.GetById(5)).Return(retUser); userRepository.Expect(x =&gt; x.Update(retUser)); form = new FormCollection(); form["IdUser"] = 5.ToString(); form["Name"] = 5.ToString(); form["Surename"] = 5.ToString(); form["Login"] = 5.ToString(); form["Password"] = 5.ToString(); } protected override void When() { result = controller.Edit(5, form); } [Test] public void is_retrieved_before_update_original_user() { userRepository.AssertWasCalled(x =&gt; x.GetById(5)); userRepository.AssertWasCalled(x =&gt; x.Update(retUser)); } } </code></pre> <p>enjoy</p> http://stackoverflow.com/questions/32640/mocking-asp-net-mvc-controller-context/491798#491798 1 Answer by RoyOsherove for Mocking Asp.net-mvc Controller Context RoyOsherove 2009-01-29T14:29:07Z 2009-01-29T14:29:07Z <p>Or you can do this with Typemock Isolator with no need to send in a fake controller at all:</p> <pre><code>Isolate.WhenCalled(()=&gt;HttpContext.Request.HttpMethod).WillReturn("Get"); </code></pre> http://stackoverflow.com/questions/32640/mocking-asp-net-mvc-controller-context/785123#785123 0 Answer by Steve_0 for Mocking Asp.net-mvc Controller Context Steve_0 2009-04-24T09:18:04Z 2009-04-24T09:18:04Z <p>I use <a href="http://www.typemock.com" rel="nofollow">Typemock</a> and <a href="http://sm-art.biz/Ivonna.aspx" rel="nofollow">Ivonna</a> for unit testing ASP.NET and MVC</p>