9

Fluent Assertion のコレクション アサーションとプロパティ アサーションを「結合」したいと考えています。たとえば、プロパティIEnumerableごとの (おそらく「ネストされた」) 比較 (つまり、関数型言語の用語での構造的等価性) を使用して、2 つの がペアごとに等しいことをアサートします。

具体例:

var dic = new Dictionary<int, string>() { {1, "hi"}, {2, "bye" } };
var actual = dic.ToSelectListItems(0).OrderBy(si => si.Text);

var expected = new List<SelectListItem>() {
    new SelectListItem() {Selected = false, Text="bye", Value="2"},
    new SelectListItem() {Selected = false, Text="hi", Value="1"}
};

ここでは、a を s のanにToSelectListItems変換する拡張メソッドを作成しました(ASP.NET MVC から)。とが「構造的に」等しいと主張したいのですが、参照型は s をオーバーライドしないため、デフォルトで参照の等価性を使用することに注意してください。DictionaryIEnumerableSelectListItemactualexpectedSelectListItemEqual

アップデート

現在、次の手動ソリューションを使用していますが、FluentAssertions に組み込まれたより良いものを望んでいます。

public static void ShouldBeStructurallyEqualTo<T, U>(this IEnumerable<T> actual, IEnumerable<U> expected) {
    actual.Should().HaveCount(expected.Count());
    actual.Zip(expected).ForEach(pair => pair.Item1.ShouldHave().AllProperties().IncludingNestedObjects().EqualTo(pair.Item2));
}

(注:これはデフォルトの投影として使用するZip私自身の拡張です)IEnumerableTuple.Create

更新 2

以下に 2 つの最小限の例を示します。

public class FooBar {
    public string Foo { get; set; }
    public int Bar { get; set; }
}

public class TestClass {
    [Test]
    public void MinimalExample() {
        List<FooBar> enumerable1 = new List<FooBar>() { new FooBar() { Foo = "x", Bar = 1 }, new FooBar() { Foo = "y", Bar = 2 } };
        List<FooBar> enumerable2 = new List<FooBar>() { new FooBar() { Foo = "x", Bar = 1 }, new FooBar() { Foo = "y", Bar = 2 } };

        enumerable1.ShouldHave().SharedProperties().IncludingNestedObjects().EqualTo(enumerable2);

        //Test 'TestClass.MinimalExample' failed: System.Reflection.TargetParameterCountException : Parameter count mismatch.
        //    at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
        //    at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
        //    at System.Reflection.RuntimePropertyInfo.GetValue(Object obj, BindingFlags invokeAttr, Binder binder, Object[] index, CultureInfo culture)
        //    at System.Reflection.RuntimePropertyInfo.GetValue(Object obj, Object[] index)
        //    at FluentAssertions.Assertions.PropertyEqualityValidator.AssertSelectedPropertiesAreEqual(Object subject, Object expected)
        //    at FluentAssertions.Assertions.PropertyEqualityValidator.Validate(UniqueObjectTracker tracker, String parentPropertyName)
        //    at FluentAssertions.Assertions.PropertyEqualityValidator.Validate()
        //    at FluentAssertions.Assertions.PropertyAssertions`1.EqualTo(Object otherObject, String reason, Object[] reasonArgs)
        //    at FluentAssertions.Assertions.PropertyAssertions`1.EqualTo(Object otherObject)
        //    MiscAssertions.cs(32,0): at TestClass.MinimalExample()
    }

    [Test]
    public void MinimalExample2() {
        IEnumerable<FooBar> enumerable1 = (new List<FooBar>() { new FooBar() { Foo = "x", Bar = 1 }, new FooBar() { Foo = "y", Bar = 2 } }).Cast<FooBar>();
        FooBar[] enumerable2 = new [] { new FooBar() { Foo = "x", Bar = 1 }, new FooBar() { Foo = "y", Bar = 2 } };

        enumerable1.ShouldHave().SharedProperties().IncludingNestedObjects().EqualTo(enumerable2);

        //Test 'TestClass.MinimalExample2' failed: System.InvalidOperationException : Please specify some properties to include in the comparison.
        //    at FluentAssertions.Assertions.PropertyEqualityValidator.Validate(UniqueObjectTracker tracker, String parentPropertyName)
        //    at FluentAssertions.Assertions.PropertyEqualityValidator.Validate()
        //    at FluentAssertions.Assertions.PropertyAssertions`1.EqualTo(Object otherObject, String reason, Object[] reasonArgs)
        //    at FluentAssertions.Assertions.PropertyAssertions`1.EqualTo(Object otherObject)
        //    MiscAssertions.cs(52,0): at TestClass.MinimalExample2()
    }
}
4

2 に答える 2

7

FluentAssertionsのメインブランチにシナリオのサポートを追加しました。これは次のバージョンの一部になりますが、別のリリースを保証するのに十分な変更を蓄積するのに1、2か月かかる場合があります。必要に応じて、ソースビルドを取得し、release.batを実行して中間バージョンをビルドできます。

于 2012-02-16T19:47:58.530 に答える
7

私があなたの質問を正しく解釈しているのであれば、Fluent Assertions のバージョン1.7.0を試してみるべきだと思います。そのバージョンでは、InclusiveNestedObjects を使用すると、オブジェクトのコレクションに対しても動作するように動作が変更されました。ドキュメントの抜粋。

「さらに、InclusiveNestedObjects プロパティを含めることで、構造比較をさらにレベルアップすることができます。これにより、サブジェクト (この例では) のプロパティが参照するすべての (コレクションの) 複合型を比較す​​るように比較が指示されます。デフォルトでは、サブジェクトのネストされたプロパティが、予期されるオブジェクトのネストされたプロパティと一致することをアサートします.ただし、SharedPropertiesを指定すると、ネストされたオブジェクト間で同じ名前のプロパティのみが比較されます.たとえば:

dto.ShouldHave().SharedProperties().IncludingNestedObjects.EqualTo(customer);"

于 2012-01-26T07:36:46.383 に答える