gpt4 book ai didi

asp.net-mvc - 模拟 FormsAuthentication.Authenticate() 方法

转载 作者:行者123 更新时间:2023-12-04 01:24:45 24 4
gpt4 key购买 nike

有什么办法可以用测试凭证模拟 FormsAuthentication.Authenticate("username", "password") 方法吗?我的测试目标是确保如果身份验证失败,它会重定向到正确的位置。我使用 Rhino Mocks 作为模拟框架。

非常感谢您的帮助,

最佳答案

由于您使用的是 mvc,如果您创建一个新项目并查看 Account Controller 的代码,您会发现以下说明:

The FormsAuthentication type is sealed and contains static members, so it is difficult to unit test code that calls its members. The interface and helper class below demonstrate how to create an abstract wrapper around such a type in order to make the AccountController code unit testable.



在此之下,有这些声明:
public interface IFormsAuthentication
public class FormsAuthenticationService : IFormsAuthentication
public interface IMembershipService
public class AccountMembershipService : IMembershipService

您可以在引用的代码中寻找实现。

关于asp.net-mvc - 模拟 FormsAuthentication.Authenticate() 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/742437/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com