Mocking Asp.net-mvc Controller Context - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T08:19:43Zhttp://stackoverflow.com/feeds/question/32640http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/32640/mocking-asp-net-mvc-controller-context11Mocking Asp.net-mvc Controller ContextTheDeeno2008-08-28T15:50:35Z2009-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#326729Answer by Haacked for Mocking Asp.net-mvc Controller ContextHaacked2008-08-28T16:06:37Z2008-10-07T15:13:07Z<p>Using MoQ it looks something like this:</p>
<pre><code>var request = new Mock<HttpRequestBase>();
request.Expect(r => r.HttpMethod).Returns("GET");
var mockHttpContext = new Mock<HttpContextBase>();
mockHttpContext.Expect(c => c.Request).Returns(request.Object);
var controllerContext = new ControllerContext(mockHttpContext.Object
, new RouteData(), new Mock<ControllerBase>().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#335970Answer by Matt Hinze for Mocking Asp.net-mvc Controller ContextMatt Hinze2008-08-28T23:01:25Z2008-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#337520Answer by Jason for Mocking Asp.net-mvc Controller ContextJason2008-08-29T01:26:39Z2008-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#337984Answer by TheDeeno for Mocking Asp.net-mvc Controller ContextTheDeeno2008-08-29T01:53:09Z2008-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<HttpContextBase>();
var mockRequest = MockRepository.GenerateMock<HttpRequestBase>();
mockHttpContext.Stub(x => x.Request).Return(mockRequest);
// tell the mock to return "GET" when HttpMethod is called
mockRequest.Stub(x => 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#2201131Answer by ruslan rusu for Mocking Asp.net-mvc Controller Contextruslan rusu2008-10-20T22:04:51Z2008-10-20T22:04:51Z<p>Hi great stuff ... i've finsihed with this spec</p>
<pre><code>public abstract class Specification <C> where C: Controller
{
protected C controller;
HttpContextBase mockHttpContext;
HttpRequestBase mockRequest;
protected Exception ExceptionThrown { get; private set; }
[SetUp]
public void Setup()
{
mockHttpContext = MockRepository.GenerateMock<HttpContextBase>();
mockRequest = MockRepository.GenerateMock<HttpRequestBase>();
mockHttpContext.Stub(x => x.Request).Return(mockRequest);
mockRequest.Stub(x => 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<T>() where T: class
{
return MockRepository.GenerateMock<T>();
}
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 <ManageUsersController>
</code></pre>
<p>{
private IUserRepository userRepository;
FormCollection form;</p>
<pre><code> ActionResult result;
User retUser;
protected override void EstablishContext()
{
userRepository = Mock<IUserRepository>();
controller = new ManageUsersController(userRepository);
retUser = new User();
userRepository.Expect(x => x.GetById(5)).Return(retUser);
userRepository.Expect(x => 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 => x.GetById(5));
userRepository.AssertWasCalled(x => x.Update(retUser));
}
}
</code></pre>
<p>enjoy</p>
http://stackoverflow.com/questions/32640/mocking-asp-net-mvc-controller-context/491798#4917981Answer by RoyOsherove for Mocking Asp.net-mvc Controller ContextRoyOsherove2009-01-29T14:29:07Z2009-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(()=>HttpContext.Request.HttpMethod).WillReturn("Get");
</code></pre>
http://stackoverflow.com/questions/32640/mocking-asp-net-mvc-controller-context/785123#7851230Answer by Steve_0 for Mocking Asp.net-mvc Controller ContextSteve_02009-04-24T09:18:04Z2009-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>