C#中的FsCheck:生成具有相同形状的二维数组的列表

时间:2015-09-27 18:23:33

标签: c# unit-testing fscheck generative-testing

假设我正在为视频分析编写一些代码。以下是Video类的简化版本:

public class Video
{
    public readonly int Width;
    public readonly int Height;
    public readonly List<int[,]> Frames;

    public Video(int width, int height, IEnumerable<int[,]> frames)
    {
        Width = width;
        Height = height;
        Frames = new List<int[,]>();
        foreach (var frame in frames)
        {
            if (frame.GetLength(0) != height || frame.GetLength(1) != width)
            {
                throw new ArgumentException("Incorrect frames dimensions");
            }
            Frames.Add(frame);
        }
    }
}

如何制作Arbitrary<Video>并注册?如何为该任意制作缩小器?

试过这个,无法理解申请是如何运作的:

public static Arbitrary<Video> Videos()
{
    var videoGen = Arb.Generate<PositiveInt>()
        .SelectMany(w => Arb.Generate<PositiveInt>(), (w, h) => new {w, h})
        .Apply( /* what is Gen<Func<a,b>> */);

    return videoGen.ToArbitrary();
}

试过这个,但无法在这里插入生成器列表:

public static Arbitrary<Video> Videos()
{
    var videoGen = Arb.Generate<PositiveInt>()
        .SelectMany(w => Arb.Generate<PositiveInt>(), (w, h) => new Video(w, h, /* how to plug generator here? */));

    return videoGen.ToArbitrary();
}

2 个答案:

答案 0 :(得分:13)

以Kurt Schelfthout的答案为基础,你可以为这个video类写一个任意对象:

public static class VideoArbitrary
{
    public static Arbitrary<Video> Videos()
    {
        var genVideo = from w in Arb.Generate<PositiveInt>()
                       from h in Arb.Generate<PositiveInt>()
                       from arrs in Gen.ListOf(
                           Gen.Array2DOf<int>(
                               h.Item,
                               w.Item,
                               Arb.Generate<int>()))
                       select new Video(w.Item, h.Item, arrs);
        return genVideo.ToArbitrary();
    }
}

您可以通过各种方式使用它。

普通香草FsCheck

以下是如何将视频任意与简单的香草FsCheck一起使用,此处托管在xUnit.net测试用例中,这不是必需的:您可以在您喜欢的任何过程中托管它:

[Fact]
public void VideoProperty()
{
    var property = Prop.ForAll(
        VideoArbitrary.Videos(),
        video =>
        {
            // Test goes here...
            Assert.NotNull(video);
        });
    property.QuickCheckThrowOnFailure();
}

Prop.ForAll对于使用自定义Arbitraries定义属性非常有用。当您致电QuickCheckThrowOnFailure时,它将为所有&#39;所有&#39; (通过defailt:100)Video类的值。

无类型xUnit.net属性

您也可以使用FsCheck.Xunit Glue Library,但您必须将Arbitrary作为弱类型值传递给属性:

[Property(Arbitrary = new[] { typeof(VideoArbitrary) })]
public void XunitPropertyWithWeaklyTypedArbitrary(Video video)
{
    // Test goes here...
    Assert.NotNull(video);
}

这很简单易懂,但在分配Arbitrary属性时没有涉及静态类型检查,所以我不太喜欢这种方法。

键入的xUnit.net属性

将FsCheck.Xunit与自定义Arbitraries一起使用的更好方法是combine it with Prop.ForAll

[Property]
public Property XUnitPropertyWithStronglyTypedArbitrary()
{
    return Prop.ForAll(
        VideoArbitrary.Videos(),
        video =>
        {
            // Test goes here...
            Assert.NotNull(video);
        });
}

请注意,此方法的返回类型不再是void,而是Property; [Property]属性理解此类型并相应地执行测试。

第三个选项是我在xUnit.net中使用自定义Arbitraries的首选方法,因为它会带回编译时检查。

答案 1 :(得分:6)

只是一刻的草图 - 没有编译:)

var genVideo = from w in Arb.Generate<PositiveInt>()
               from h in Arb.Generate<PositiveInt>()
               from arrs in Gen.ListOf(Gen.Array2DOf(h, w, Arb.Generate<int>))
               select new Video(w, h, arrs);