Need some pointers for this. Found this and this, but I'm still kind a confused.

I just want to mock ActionExecutedContext, pass it, let filter to work a bit and check result.

Any help?

Source of filter you can find here
(it's changed a bit, but that's not a point at the moment).

So - i want unit test, that RememberUrl filter is smart enough to save current URL in session.

link|improve this question

ActionExecutedContext is derived from ControllerContext. Haacked's answer is exactly about mocking ControllerContext - stackoverflow.com/questions/32640/…. In what exactly are you confused? – eu-ge-ne Jun 29 '09 at 11:33
Just haven't done it yet. I guess i lack knowledge of asp.net mvc innerworkings. :) – Arnis L. Jun 29 '09 at 11:39
Then post your code. We will try to help :) – eu-ge-ne Jun 29 '09 at 11:41
feedback

2 Answers

up vote 4 down vote accepted

1) Mocking Request.Url in ActionExecutedContext:

var request = new Mock<HttpRequestBase>();
request.SetupGet(r => r.HttpMethod).Returns("GET");
request.SetupGet(r => r.Url).Returns(new Url("http://somesite/action"));

var httpContext = new Mock<HttpContextBase>();
httpContext.SetupGet(c => c.Request).Returns(request.Object);

var actionExecutedContext = new Mock<ActionExecutedContext>();
actionExecutedContext.SetupGet(c => c.HttpContext).Returns(httpContext.Object);

2) I suppose you are injecting session wrapper in your RememberUrlAttribute's public constructor.

var rememberUrl = new RememberUrlAttribute(yourSessionWrapper);

rememberUrl.OnActionExecuted(actionExecutedContext.Object);

// and then check what is in your SessionWrapper
link|improve this answer
rememberUrl haven't "ActionExecutedCotnext" method. – Arnis L. Jun 29 '09 at 12:50
It's OnActionExecuted. Anyway - it seems that i finally got it. Just need to properly mock httpContext. Thanks again - I really appreciate Your help. :) – Arnis L. Jun 29 '09 at 12:57
....... Fixed :) – eu-ge-ne Jun 29 '09 at 13:07
any ideas how to test something like this: gist.github.com/raw/88936/… ? :) – Arnis L. Jun 30 '09 at 7:32
I would start from mocking ViewContext class – eu-ge-ne Jun 30 '09 at 11:44
feedback

This is the result:

#region usages

using System;
using System.Collections.Specialized;
using System.Web;
using System.Web.Mvc;
using x.TestBase;
using x.UI.y.Infrastructure.Enums;
using x.UI.y.Infrastructure.Filters;
using x.UI.y.Test.Mocks;
using Moq;

//considering switch to NUnit... :D
using Microsoft.VisualStudio.TestTools.UnitTesting;

#endregion

namespace x.UI.y.Test.Unit.Infrastructure.Filters
{
    [TestClass]
    public class RememberUrlTester : TesterBase
    {
        private static HttpContextBaseMock _context = 
            new HttpContextBaseMock();
        private static ActionExecutedContextMock _actionContext = 
            new ActionExecutedContextMock(_context.Object);

        [TestMethod]
        //"Can save url in session" (i prefer test names in my own language :)
        public void SpeejPieglabaatUrlSesijaa()
        {
            //Arrange
            const string _url = "http://www.foo.bar/foo?bar=bar";
            _context.RequestMock.SetUrl(_url);    
            var filter = new RememberUrlAttribute();

            //Act
            filter.OnActionExecuted(_actionContext.Object);

            //Assert
            _context.SessionMock.Verify
                (m => m.Add(SessionKey.PreviousUrl.ToString(), _url));
        }
    }
}

Wrapped Mock<HttpWhatever> to keep tests clean.

I'm sure things can be done better, but I think it's a great start and I'm feeling quite excited.

Finally that HttpContext monster is under control! ^^

link|improve this answer
Why NUnit? IMHO xUnit.NET is much better ;) – eu-ge-ne Jun 30 '09 at 11:48
Could give some arguments for that? – Arnis L. Jun 30 '09 at 12:31
If it's working for you, that's cool, but the xUnit folks wrote about why they built it, which is worth a read: xunit.codeplex.com/… – ZeroBugBounce Jun 30 '10 at 21:22
@richdiet this one was long ago. I would prefer xUnit nowadays. – Arnis L. Jun 30 '10 at 21:32
Heh, sorry, me not paying attention to years! – ZeroBugBounce Jul 1 '10 at 5:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.