如何单元测试FileContentResult?

时间:2016-05-24 14:38:34

标签: c# asp.net-mvc unit-testing nunit

我有一种将数据导出为CSV文件的方法。

public FileContentResult Index(SearchModel search)
{    
    ...
    if (search.Action == SearchActionEnum.ExportToTSV)
    {
        const string fileName = "Result.txt";
        const string tab = "\t";
        var sb = BuildTextFile(result, tab);
        return File(new UTF8Encoding().GetBytes(sb.ToString()), "text/tsv", fileName);
    }
    if (search.Action == SearchActionEnum.ExportToCSV)
    {
        const string fileName = "Result.csv";
        const string comma = ",";
        var sb = BuildTextFile(result, comma);
        return File(new UTF8Encoding().GetBytes(sb.ToString()), "text/csv", fileName);
    }
    return null;
}

我的测试,在NUnit中:

[Test]
public void Export_To_CSV()
{
    #region Arrange
    ...
    #endregion

    #region Act

    var result = controller.Index(search);

    #endregion

    #region Assert
    result.ShouldSatisfyAllConditions(
        ()=>result.FileDownloadName.ShouldBe("Result.csv"),
        ()=>result.ContentType.ShouldBe("text/csv")
        );
    #endregion
}

除了FileDownloadNameContentType之外,我想查看result的内容。

我似乎应该调查result.FileContents,但它是byte[]

如何将result作为文本字符串?

每次运行测试时,我的结果是否都保存在解决方案中的CSV文件中?

2 个答案:

答案 0 :(得分:1)

在Index方法中,您使用以下代码将文本内容编码为字节:

return File(new UTF8Encoding().GetBytes(sb.ToString()), "text/csv", fileName);

要从字节到原始文本,您可以使用:

string textContents = new UTF8Encoding().GetString(result.FileContents);

结果不会以CSV格式保存在任何地方。

答案 1 :(得分:0)

在您进行测试时,您的CSV文件不会自动保存。获得响应时,它是原始响应。你可以保存它。

要将二进制字节数组转换为字符串,可以使用

string csv = System.Text.Encoding.UTF8.GetString(result.FileContents);

这是我的头脑,所以可能需要修复。