我想通过集成测试来测试将文件附加到RavenDB数据库中的文档的功能。为此,我需要一个IFormFile
的实例。
很明显,我无法从接口实例化,因此我尝试实例化了从IFormFile
接口继承的FormFile
实例。
using (var stream = File.OpenRead("placeholder.pdf"))
{
var file = new FormFile(stream, 0, stream.Length, null, Path.GetFileName(stream.Name))
{
ContentType = "application.pdf"
};
}
但这会引发以下错误:
System.NullReferenceException: Object reference not set to an instance of an object.
at Microsoft.AspNetCore.Http.Internal.FormFile.set_ContentType(String value)
当我从代码中删除ContentType = "application.pdf"
时,它允许我实例化一个新实例,但没有ContentType
。
如何在没有FormFile
框架的情况下使用ContentType
实例化Moq
的实例?
答案 0 :(得分:14)
感谢汉斯的评论,实际答案是:
using (var stream = File.OpenRead("placeholder.pdf"))
{
var file = new FormFile(stream, 0, stream.Length, null, Path.GetFileName(stream.Name))
{
Headers = new HeaderDictionary(),
ContentType = "application/pdf"
};
}