ASP.NET MVC3でフィルタをテストする

ASP.NET MVC3に限らずWebシステムではフィルタを利用することが多いと思いますが、フィルタをテストする際にネックになってくるのがSession変数などの扱いです。これまではどうにもうまく扱うことができずテストが書けないでいたのですが、調べてみると結構便利なツールがありましたので早速利用してみました。

利用方法はファイルをダウンロードして解凍後、MvcContrib.TestHelper.dll を参照するだけですなのでとても簡単です。 (TestHelper以外にもユーティリティがあるようですね。)

テストでどのように利用するかについてはこちらにサンプルがあります。

http://mvccontrib.codeplex.com/wikipage?title=TestHelper&referringTitle=Documentation#Examples

ということで、サンプルを元に例外を集約するフィルタを元に試してみました。例外処理フィルタがテスト対象のフィルタです。

[sourcecode language="csharp"] /// <summary> /// 例外処理フィルタ /// </summary> public class ExceptionLoggerAttribute:FilterAttribute,IExceptionFilter { private static readonly ILog Logger = LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);

#region Implementation of IExceptionFilter

public void OnException(ExceptionContext filterContext)
{
    var ctx = filterContext.Controller.ControllerContext.HttpContext;

    string loginId=&quot;&quot;;
    if(ctx.Session[ControllerConst.UserInfoIdSessionName]!=null)
    {
        loginId = ctx.Session[ControllerConst.UserInfoIdSessionName].ToString();
    }

    var s =
        string.Format(&quot;Exception is thrownd [login Id &gt;&gt; {0}] \nError Message:{1}\nStack Trace:{2}\nInnerException Message:{3}&quot;,
                      loginId, filterContext.Exception.Message, filterContext.Exception.StackTrace,
                      filterContext.Exception.InnerException == null
                          ? &quot;&quot;
                          : filterContext.Exception.InnerException.Message);
    Logger.Fatal(s);

    // 例外処理済みとする
    filterContext.ExceptionHandled = true;

    // エラー画面へリダイレクトする
    filterContext.Result = new RedirectResult(&quot;~/Content/Error.html&quot;);
    return;
}

#endregion

} [/sourcecode]

例外処理フィルタに対するテストクラスは以下の通りです。

[sourcecode language="csharp"]

[TestMethod] public void TestOnException() { var attribute = new ExceptionLoggerAttribute(); Assert.IsNotNull(attribute);

// コンテキストを生成する
var builder = new TestControllerBuilder();
var controller = new AuthController();

builder.InitializeController(controller);
var controllerContext = controller.ControllerContext;
controller.Session[ControllerConst.UserInfoIdSessionName] = &quot;1&quot;;

var aec = new ExceptionContext(controllerContext, new Exception(&quot;テスト例外&quot;, null));
aec.Result = new RedirectResult(&quot;/normarly_executed_path&quot;);

attribute.OnException(aec);

Assert.IsNotNull(aec);

// リダイレクト先が変更されていることを確認する
string s = ((RedirectResult)aec.Result).Url;
Assert.AreEqual(&quot;~/Content/Error.html&quot;, s);

} [/sourcecode]

認証を行ったりする場合も上記にMoqなどを組み合わせることでテスト可能です。Railsの時もそうでしたが、テストに関しては便利なツールを知っているかどうかが鍵になりますね。

■参考にしたサイト Christophe Geers' Blog