gpt4 book ai didi

c# - 测试用于 ASP 成员资格的自定义用户配置文件

转载 作者:太空宇宙 更新时间:2023-11-03 14:21:40 25 4
gpt4 key购买 nike

我刚刚在我的 MVC 项目中实现了一个基本的 asp 成员资格,我正准备编写一些测试。我在模拟提供者时遇到了一些最初的问题,但现在已经解决了。显然,由于提供者被模拟,其中没有数据,您也不能添加任何数据,但是不能直接模拟配置文件,因为每次需要用户配置文件时都会创建它们。我不确定如何测试这些,因为(显然)当调用配置文件时它返回 null。

例如:

使用 DI 注入(inject)我的存储库:

    public AccountMembershipService(MembershipProvider provider)
{
_provider = provider ?? Membership.Provider;

}

让我们以创建用户方法为例

    public MembershipCreateStatus CreateUser(string userName, string password, string email, string passwordQuestion, string passwordAnswer)
{
if (String.IsNullOrEmpty(userName)) throw new ArgumentException("Value cannot be null or empty.", "userName");
if (String.IsNullOrEmpty(password)) throw new ArgumentException("Value cannot be null or empty.", "password");
if (String.IsNullOrEmpty(email)) throw new ArgumentException("Value cannot be null or empty.", "email");

MembershipCreateStatus status;
_provider.CreateUser(userName, password, email, passwordQuestion, passwordAnswer, true, null, out status);

if (status == MembershipCreateStatus.Success)
{
UserProfile profile = UserProfile.GetProfile(userName);
profile.IPAddress = "0.0.0.0";
profile.Save();
}
return status;
}

.CreateUser 工作完美(就模拟而言)但是当涉及到 GetProfile 时,显然不存在配置文件,所以它只是错误。关于我如何能够对此进行测试的任何想法?

我已经盯着这个看了好几个小时了,非常感谢任何帮助!!

最佳答案

看看使用 Pex Moles替换 Base UserProfile 类的 Create 方法。

另一种选择是创建一个调用 GetProfile() 的服务对象,然后可以将其抽象化并在运行时将具体类注入(inject)到 AccountMembershipService 中,或者在单元测试期间传递给构造函数。

关于c# - 测试用于 ASP 成员资格的自定义用户配置文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5170674/

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