4

単体テストを作成している MVC 4 アプリケーションがあります。私の GameController には、現在のユーザー ID を必要とするアクション JoinGame があります。これWebSecurity.CurrentUserIdはコントローラー内で取得します。

JoinGame の単体テストを実行すると、UserId が入力されません。明らかに、単体テスト中は「現在の」ユーザーは存在しません。私はそれを嘲笑する方法を理解しようとしています。

私が最初に得たエラーはSystem.ArgumentNullException: Value cannot be null. Parameter name; httpContext

次に、このMocking WebSecurity プロバイダーを見つけました

Web セキュリティ用のラッパー インターフェイスとクラスを作成し、ラッパーをモックして、Web セキュリティ ラッパーをゲーム コントローラーに挿入しました。これにより、httpContext が解決されました (なぜこれが機能し、HttpContextFactory が機能しなかったのか、現在のところよくわかりません)。しかし、websecuritywrapper によって返される CurrentUserId は常に 0 です。public int CurrentUserId{ get { return 1; }}

明らかに、私は何か間違ったことをしています。何がわからないだけです。単体テスト、コントローラー、およびラッパーのコードを以下に投稿しました。

public RedirectToRouteResult JoinGame(int gameid)
    {
        //_wr is the websecuritywrapper
        int UserID =  _wr.CurrentUserId; //WebSecurity.CurrentUserId;            

        // get userteam for this user and this game
        UserTeam ut = _UserTeamRepository.GetUserTeam(userteamid:0, gameid: gameid, userid: UserID);
        int intUTID = 0;
        if (ut == null)
        {
            // no userteam found, create it
            OperationStatus opStatus = _UserTeamRepository.CreateUserTeam(UserID, gameid);
            if (opStatus.Status) intUTID = (int)opStatus.OperationID;
        }
        else {intUTID = ut.Id; }
        if (intUTID > 0)
        {
            return RedirectToAction("Index", "ViewPlayers", new { id = intUTID });
        }
        else
        {
            return RedirectToAction("Index", "Game");
        }           
    }

[Test]
    public void Game_JoinGame_Returns_RedirectToAction()
    {
        UserProfile creator = new UserProfile();
        UserProfile user = new UserProfile();
        Game game = new Game();
        ICollection<UserTeam> uteams = null;
        UserTeam ut = new UserTeam();
        ICollection<UserTeam_Player> utp = null;

        List<Game> games = new List<Game>
        {
            new Game { Id = 1, CreatorId = 1, Name = "Game1", Creator = creator, UserTeams=uteams},
        };

        List<UserTeam> userteams = new List<UserTeam>
        {
            new UserTeam {Id=1, UserId = 1, GameId=1, User=user, Game = game, UserTeam_Players=utp}
        };

        Mock<IGameRepository> mockGameRepository = new Mock<IGameRepository>();
        Mock<IUserTeamRepository> mockUserTeamRepository = new Mock<IUserTeamRepository>();
        Mock<IWebSecurityWrapper> mockWSW = new Mock<IWebSecurityWrapper>();

        mockUserTeamRepository.Setup(mr => mr.GetAllUserTeams()).Returns(userteams);
        mockUserTeamRepository.Setup(mr => mr.GetUserTeam(0,1,1)).Returns(ut);
        mockUserTeamRepository.Setup(mr => mr.CreateUserTeam(1, 1));

        //Arrange
        GameController Controller = new GameController(mockGameRepository.Object, mockUserTeamRepository.Object, mockWSW.Object);

       // This didn't work
        //HttpContextFactory.SetFakeAuthenticatedControllerContext(Controller);

        //Act
        RedirectToRouteResult result = Controller.JoinGame(1);

        Assert.AreEqual("Index", result.RouteValues["action"]);
    }

public class WebSecurityWrapper : IWebSecurityWrapper
{
    public int CurrentUserId{ get { return WebSecurity.CurrentUserId; }}
    public string CurrentUserName { get { return "admin_user"; } } // WebSecurity.CurrentUserName;
    public bool HasUserId { get { return WebSecurity.HasUserId; } }
    public bool Initialized { get { return WebSecurity.Initialized; } }
    public bool IsAuthenticated { get { return WebSecurity.IsAuthenticated; } }
    public bool ChangePassword(string userName, string currentPassword, string newPassword){return WebSecurity.ChangePassword(userName, currentPassword, newPassword);}
    public bool ConfirmAccount(string accountConfirmationToken) { return WebSecurity.ConfirmAccount(accountConfirmationToken); }
    public bool ConfirmAccount(string userName, string accountConfirmationToken) { return WebSecurity.ConfirmAccount(userName,accountConfirmationToken); }
    public string CreateAccount(string userName, string password, bool requireConfirmationToken = false) { return WebSecurity.CreateAccount(userName, password, requireConfirmationToken = false); }
    public string CreateUserAndAccount(string userName, string password, object propertyValues = null, bool requireConfirmationToken = false) { return WebSecurity.CreateUserAndAccount(userName, password, propertyValues = null, requireConfirmationToken = false); }
    public string GeneratePasswordResetToken(string userName, int tokenExpirationInMinutesFromNow = 1440) { return WebSecurity.GeneratePasswordResetToken(userName, tokenExpirationInMinutesFromNow = 1440); }
    public DateTime GetCreateDate(string userName) { return WebSecurity.GetCreateDate(userName); }
    public DateTime GetLastPasswordFailureDate(string userName){ return WebSecurity.GetLastPasswordFailureDate(userName); }
    public DateTime GetPasswordChangedDate(string userName) { return WebSecurity.GetPasswordChangedDate(userName); }
    public int GetPasswordFailuresSinceLastSuccess(string userName) { return WebSecurity.GetPasswordFailuresSinceLastSuccess(userName);}
    public int GetUserId(string userName){ return WebSecurity.GetUserId(userName);}
    public int GetUserIdFromPasswordResetToken(string token) { return WebSecurity.GetUserIdFromPasswordResetToken(token); }
    public void InitializeDatabaseConnection(string connectionStringName, string userTableName, string userIdColumn, string userNameColumn, bool autoCreateTables) { WebSecurity.InitializeDatabaseConnection(connectionStringName, userTableName, userIdColumn, userNameColumn, autoCreateTables); }
    public void InitializeDatabaseConnection(string connectionString, string providerName, string userTableName, string userIdColumn, string userNameColumn, bool autoCreateTables) { WebSecurity.InitializeDatabaseConnection(connectionString, providerName, userTableName, userIdColumn, userNameColumn, autoCreateTables); }
    public bool IsAccountLockedOut(string userName, int allowedPasswordAttempts, int intervalInSeconds) { return WebSecurity.IsAccountLockedOut(userName, allowedPasswordAttempts, intervalInSeconds); }
    public bool IsAccountLockedOut(string userName, int allowedPasswordAttempts, TimeSpan interval) { return WebSecurity.IsAccountLockedOut(userName, allowedPasswordAttempts, interval); }
    public bool IsConfirmed(string userName){ return WebSecurity.IsConfirmed(userName); }
    public bool IsCurrentUser(string userName) { return WebSecurity.IsCurrentUser(userName); }
    public bool Login(string userName, string password, bool persistCookie = false) { return WebSecurity.Login(userName, password, persistCookie = false); }
    public void Logout() { WebSecurity.Logout(); }
    public void RequireAuthenticatedUser() { WebSecurity.RequireAuthenticatedUser(); }
    public void RequireRoles(params string[] roles) { WebSecurity.RequireRoles(roles); }
    public void RequireUser(int userId) { WebSecurity.RequireUser(userId); }
    public void RequireUser(string userName) { WebSecurity.RequireUser(userName); }
    public bool ResetPassword(string passwordResetToken, string newPassword) { return WebSecurity.ResetPassword(passwordResetToken, newPassword); }
    public bool UserExists(string userName) { return WebSecurity.UserExists(userName); }
}
4

1 に答える 1

2

1 をハードコーディングしたときに 0 が返される理由は、次の行によるものです。

Mock<IWebSecurityWrapper> mockWSW = new Mock<IWebSecurityWrapper>();

取得している IWebSecurityWrapper のバージョンはモックです (そのように注入したため)。追加する

mockSW.Setup(x=>x.CurrentUserId).Returns(1);

必要なものが得られるはずです。現在、CurrentUserId を要求されたときに 1 を返すようにモックに指示しているため

HttpContextFactory が機能しなかった理由は、私が見た HttpContextFactory の実装がコントローラーのプロパティを処理しているためであり、HttpContext への依存関係が WebSecurity クラス自体の内部にあると思われるため、ラッパーが必要な理由です。

于 2013-06-14T06:53:06.503 に答える