- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我想知道是否有人知道在使用 Moq 模拟 DbContext
时导致 SaveChanges()
返回 0 以外的值的方法。我经常在我的代码中使用 SaveChanges()
来在已保存或未保存的项目更改数量小于或大于预期的更改数量时抛出错误。
根据我使用 Moq 的经验,如果您不调用数据库,DbContext.SaveChanges()
似乎不会做任何事情。
2016 年 9 月 8 日更新
Jeroen Heier 和 Nkosi 的建议帮助提供了解决方案。我应该更深入地研究 Mock 并意识到 SaveChanges()
是一个虚拟的(duh!)。作为引用,我将添加下面的代码来演示我在做什么。需要注意的一件事是,如果您的业务逻辑取决于保存到数据库中的项目数,则需要定义一个回调来保存更改 DbContext.Setup().Callback(() => {/* 做点什么 */})
。使用回调,您可以跟踪调用保存更改的预期次数,并在您的测试中断言它们。
PostService 类中的“SavePost”方法
public PostViewModel SavePost(PostViewModel currentPost, bool publishPost)
{
//_context.Configuration.ProxyCreationEnabled = false;
JustBlogContext currentContext = (JustBlogContext)_Context;
Post newPost = new Post();
List<Tag> postTags = new List<Tag>();
DateTime currentDateTime = DateTime.UtcNow;
bool saveSuccess = false;
if (currentPost != null)
{
//Post
newPost = new Post()
{
Category = currentPost.Category.Id.Value,
Description = currentPost.Description,
ShortDescription = currentPost.ShortDescription,
Title = currentPost.Title,
UrlSlug = currentPost.UrlSlug,
Published = currentPost.Published == true || publishPost == true ? true : false,
Meta = currentPost.Meta == "" || currentPost.Meta == null ? "No meta data" : currentPost.Meta,
PostedOn = currentPost.PostedOn,
Modified = currentDateTime
};
//Tags
foreach (Tag currentTag in currentPost?.Tags)
{
postTags.Add(new Tag()
{
Description = currentTag.Description,
Id = currentTag.Id,
Name = currentTag.Name,
UrlSlug = currentTag.UrlSlug
});
}
if (currentPost.PostedOn == null && publishPost)
{
newPost.PostedOn = currentDateTime;
}
/**
* Note that you must track all entities
* from the Post side of the Post - PostTagMap - Tag database schema.
* If you incorrectly track entites you will add new tags as opposed to
* maintaining the many-to-many relationship.
**/
if (currentPost?.Id == null)
{
//Add a new post
//Attach tags from the database to post
foreach (Tag clientTag in postTags)
{
if (currentContext.Entry(clientTag).State == EntityState.Detached)
{
currentContext.Tags.Attach(clientTag);
}
}
newPost.Tags = postTags;
currentContext.Posts.Add(newPost);
saveSuccess = currentContext.SaveChanges() > 0 ? true : false;
}
else
{
//Modify and existing post.
bool tagsModified = false;
newPost.Id = currentPost.Id.Value;
currentContext.Posts.Attach(newPost);
currentContext.Entry(newPost).State = EntityState.Modified;
saveSuccess = currentContext.SaveChanges() > 0 ? true : false;
List<Tag> dataTags = currentContext.Posts.Include(post => post.Tags).FirstOrDefault(p => p.Id == newPost.Id).Tags.ToList();
//Remove old tags
foreach (Tag tag in dataTags)
{
if (!postTags.Select(p => p.Id).ToList().Contains(tag.Id))
{
tagsModified = true;
newPost.Tags.Remove(tag);
}
}
if (postTags.Count() > 0)
{
//Add new tags
foreach (Tag clientTag in postTags)
{
//Attach each tag because it comes from the client, not the database
if (!dataTags.Select(p => p.Id).ToList().Contains(clientTag.Id))
{
currentContext.Tags.Attach(clientTag);
}
if (!dataTags.Select(p => p.Id).ToList().Contains(clientTag.Id))
{
tagsModified = true;
newPost.Tags.Add(currentContext.Tags.Find(clientTag.Id));
}
}
//Only save changes if we modified the tags
if (tagsModified)
{
saveSuccess = currentContext.SaveChanges() > 0 ? true : false;
}
}
}
}
if (saveSuccess != false)
{
return loadEditedPost(currentContext, newPost);
}
else
{
throw new JustBlogException($"Error saving changes to {newPost.Title}");
}
}
PostService_Test.cs 中的“SavePost_New_Post_Test”测试方法
/// <summary>
/// Test saving a new post
/// </summary>
[TestMethod]
public void SavePost_New_Post_Test()
{
//Arrange
var postSet_Mock = new Mock<DbSet<Post>>();
var justBlogContext_Mock = new Mock<JustBlogContext>();
justBlogContext_Mock.Setup(m => m.Posts).Returns(postSet_Mock.Object);
IPostService postService = new PostService(justBlogContext_Mock.Object);
// setup Test
CategoryViewModel newCategory = new CategoryViewModel()
{
Description = "Category Description",
Id = 0,
Modified = new DateTime(),
Name = "Name",
PostCount = 0,
Posts = new List<Post>(),
UrlSlug = "Category Url Slug"
};
Tag newTag = new Tag()
{
Description = "Tag Description",
Id = 1,
Modified = new DateTime(),
Name = "Tag Name",
Posts = new List<Post>(),
UrlSlug = "Url Slug"
};
Tag newTag2 = new Tag()
{
Description = "Tag Description 2",
Id = 2,
Modified = new DateTime(),
Name = "Tag Name 2",
Posts = new List<Post>(),
UrlSlug = "UrlSlug2"
};
List<Tag> tags = new List<Tag>();
tags.Add(newTag);
tags.Add(newTag2);
// setup new post
PostViewModel newPost = new PostViewModel()
{
Category = newCategory,
Description = "Test Descritpion",
Meta = "Meta text",
Modified = new DateTime(),
Published = false,
PostedOn = null,
ShortDescription = "Short Description",
Title = "TestTitle",
UrlSlug = "TestUrlSlug",
Tags = tags,
Id = null
};
// counters to verify call order
int addPostCount = 0;
int addTagAttachCount = 0;
int saveChangesCount = 0;
int totalActionCount = 0;
// Register callbacks to keep track of actions that have occured
justBlogContext_Mock.Setup(x => x.Posts.Add(It.IsAny<Post>())).Callback(() =>
{
addPostCount++;
totalActionCount++;
});
justBlogContext_Mock.Setup(x => x.SaveChanges()).Callback(() =>
{
saveChangesCount++;
totalActionCount++;
});
justBlogContext_Mock.Setup(x => x.SaveChanges()).Returns(1);
justBlogContext_Mock.Setup(x => x.Tags.Attach(It.IsAny<Tag>())).Callback(() =>
{
addTagAttachCount++;
totalActionCount++;
});
// Act
postService.SavePost(newPost, false);
// Assert
justBlogContext_Mock.Verify(m => m.SaveChanges(), Times.AtLeastOnce());
Assert.IsTrue(addPostCount == 1);
Assert.IsTrue(addTagAttachCount == 2);
Assert.IsTrue(totalActionCount == 4);
}
最佳答案
假设一个接口(interface)/抽象像
public interface IDbContext {
int SaveChanges();
}
您可以像这样设置模拟。
var expected = 3;
var mock = new Mock<IDbContext>();
mock.Setup(m => m.SaveChanges()).Returns(expected);
var context = mock.Object;
var actual = context.SaveChanges();
Assert.AreEqual(expected, actual);
关于c# - 模拟 DbContext SaveChanges() 方法不返回任何值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39382390/
我已经开始研究使用 Identity 框架的现有 ASP.NET Core 项目。该应用程序使用单个数据库。出于某种原因,应用程序使用两个独立的数据库上下文 - 一个派生自 IdentityDbCon
我刚刚下载了EntityFramework.dll v4.3。我发现了许多比较 DbContext 与 ObjectContext 的问题。但其中大部分是 2010 年或 2011 年初的。 我想阅读
我想做什么 public void SomeTestMethod(){ var person = this.PersonManager.Get(new Guid("someguid"));
在我的应用程序中,我刚刚将 EntityFramework 更新到版本 6.0.2,现在我遇到了一些错误,这是我在更新我的应用程序之前没有发现的。 我有一个从 IdentityDbContext 类继
我正在处理一个大型项目,每个 DbContext 下有 50 多个 DbContext 和 100 多个 DbSet。 每个 DbContext 都由一个单独的团队处理,他们根据他们的要求/更改添加/
我是 WPF 的初学者。我想知道 dbcontext.Add 和 dbcontext.AddObject 之间有什么区别。 private void AddButton_Click(object se
我正在使用 MVC .Net。通常,每当我需要查询数据库时,我总是使用类似下面的方法来创建一个实例: using (EntitiesContext ctx = new EntitiesContext(
我在 HomeController 中有一个方法,我试图通过 URL 访问它,如下所示: http://localhost/web/home/GetSmth 第一次工作,但刷新页面后,我收到此错误:
在我的 Controller 中,我有这个 private readonly DbContext _context; public CountryController(DbContext contex
我正在寻找一种回滚实体更改的方法。我遇到了this answer它显示了如何设置实体状态,但我想知道如果我只是处理我的 dbContext 实例而不调用 dbContext.SaveChanges()
在我的项目中,我使用entity framework 7 和asp.net mvc 6\asp.net 5。我想为自己的模型创建 CRUD 我怎样才能做得更好: 使用 Controller 中的 db
我正在使用 Asp.Net Core 2.1 开发 Web 应用程序。在我使用脚手架添加新身份后,它为我生成了这些代码: IdentityStartup.cs 中生成的代码 [assembly:Hos
一旦我解决了one issue与 IBM.EntityFrameworkCore ,另一个出现了。对于 DB2 和他们的 .NET 团队来说,一切都是那么艰难和痛苦...... 问题:我在同一个 VS
我正在尝试创建一个播种用户和角色数据的类。 我的播种数据类(class)采用RoleManager构造函数参数 public class IdentityDataSeeder { private
我正在使用 .NET Core 2.1 构建 Web API。这将作为 Azure Web 应用程序托管。我想将数据库连接字符串保留在 Azure Key Vault 中。这是我放入 Startup.
当使用像 MySQL 这样的网络数据库时,DbContext 应该是短暂的,但是根据 https://www.entityframeworktutorial.net/EntityFramework4.
我有一个直接调用的 Controller 操作,但抛出了这个错误: The operation cannot be completed because the DbContext has been d
我在 Visual Studio 中使用默认的 ASP.Net MVC 模板。我正在使用在模板中为我创建的 ASP.Net 身份代码。我希望我使用的 DBContext 了解 ApplicationU
我有一个软件产品,它的数据库是在 SQLServer 上创建的,表名和列名是由开发团队定义的,然后使用 Database First 方法将模型导入 Visual Studio,现在我们正在为其他公司
我正在使用 EFCore 加载“用户”实体和用户制作的相关“订单”。 我有一个构造函数(来自真实代码的简化示例),它使用 id=1 加载用户并实现一个命令来更新 LoadedUser 实体中的更改。但
我是一名优秀的程序员,十分优秀!