vote up 1 vote down star
1

Hi,

While looking at the unit tests that come with the standard ASP.MVC Web Project template, I noticed that these do not test whether or not a proper HttpVerbs attribute is set on each action method.

It's very easy to test this with reflection, but the question is whether or not it It's worth the effort. Do you check HttpVerbs in your unit test, or do you leave this up to Integration testing?

flag

I think that the "asp.net-mvc" tag is better than two separate "asp.net" and "mvc" tags. – eu-ge-ne Jun 26 at 11:43
thanks for the heads-up. Not sure if this is the reason for the low response rate, but it can't hurt. – Adrian Grigore Jun 26 at 13:11
It helped (the retagging) as I am browsing for asp.net-mvc tagged questions and this is how I stumbled upon your (good!) question. – Andrei Rinea Aug 14 at 10:03

3 Answers

vote up 1 vote down check

In case someone else finds this question: I've started checking all of my action method accept attributes in my unit tests. A bit of reflection does the trick just fine. Here's some code if you'd like to do this as well:

protected void CheckAcceptVerbs<TControllerType>(string methodName, HttpVerbs verbs)
{              
    CheckAcceptVerbs(methodName, typeof(TControllerType).GetMethod(methodName, BindingFlags.Public|BindingFlags.Instance,null,new Type[]{},null), verbs);
}

protected void CheckAcceptVerbs<TControllerType>(string methodName, Type[] ActionMethodParameterTypes, HttpVerbs verbs)
{
    CheckAcceptVerbs(methodName, typeof(TControllerType).GetMethod(methodName, BindingFlags.Public | BindingFlags.Instance, null, ActionMethodParameterTypes, null), verbs);
}

private void CheckAcceptVerbs<TControllerType>(string methodName, MethodInfo actionMethod, HttpVerbs verbs)
{
    Assert.IsNotNull(actionMethod, "Could not find action method " + methodName);
    var attribute =
        (AcceptVerbsAttribute)
        actionMethod.GetCustomAttributes(false).FirstOrDefault(
            c => c.GetType() == typeof(AcceptVerbsAttribute));


    if (attribute == null)
    {
        Assert.AreEqual(HttpVerbs.Get, verbs);
        return;
    }

    Assert.IsTrue(HttpVerbsEnumToArray(verbs).IsEqualTo(attribute.Verbs));
}

The first method is for action methods without parameters, the second is for those with parameters. You can also just use the third method directly, but I wrote the first two overloads as convenience functions.

link|flag
Great code sample :) – Andrei Rinea Aug 16 at 10:02
vote up 0 vote down

I don't but that's only because it hasn't crossed my mind until you mentioned it. I will from now on.

link|flag
oh, in this case you might find the code in my answer useful. – Adrian Grigore Aug 15 at 22:14
vote up 0 vote down

As for me I'm always checking for a proper AcceptVerbsAttribute on each action in my controllers.

link|flag

Your Answer

Get an OpenID
or

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