1

DotNetOpenAuth (正式には DotNetOpenId と呼ばれる)Responseオブジェクトを受け取るメソッドがあります。私のメソッドは、要求されたデータを抽出し、このユーザーがシステムに存在するかどうかを確認します。

さて、moqを使用してこの応答オブジェクトをモックアップし、認証方法をテストするにはどうすればよいAuthenticateUser()でしょうか ( )。

switch (response.Status)
{
    case AuthenticationStatus.Authenticated:

    User user = null;
    try
    {
        // Extract the claimed information and 
        // check if this user is valid, etc.
        // Any errors with be thrown as Authentication Errors.
        user = _authenticationService.AuthenticateUser(response) as User;
    }
    catch (AuthenticationException exception)
    {
        ViewData.ModelState.AddModelError("AuthenticationError", exception);
    }

    .. other code, like forms auth, other response.status' etc. ..
}

モッキング フレームワーク: moq
言語: .NET C# 3.5 sp1
応答オブジェクト: DotNetOpenAuth フレームワークから取得

4

1 に答える 1

2

特にMoqは詳しくありませんが、レスポンスオブジェクトは を実装する型なDotNetOpenAuth.OpenId.RelyingParty.IAuthenticationResponseので、同じインターフェースを実装し、同じ種類の値を返す準備をしているクラスを作ることで簡単にモック化できます。

... Moq をダウンロードして、次のように IAuthenticationResponse をモックアップしました。

var response = new Mock<IAuthenticationResponse>(MockBehavior.Loose);
response.SetupGet(r => r.ClaimedIdentifier)
        .Returns("http://blog.nerdbank.net/");
response.SetupGet(r => r.Status)
        .Returns(AuthenticationStatus.Authenticated);
response.SetupGet(r => r.FriendlyIdentifierForDisplay)
        .Returns("blog.nerdbank.net");

IAuthenticationResponse resp = response.Object;
Console.WriteLine(resp.ClaimedIdentifier);

明らかに、結果を送信するのではなく、テストしているメソッドにオブジェクトをConsole.WriteLine渡したいと思うでしょう。resp

于 2009-05-05T01:01:42.443 に答える