-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathComponentCollectionAssociationTests.cs
123 lines (97 loc) · 3.67 KB
/
ComponentCollectionAssociationTests.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
namespace EntityFunctors.Tests
{
using System;
using System.Linq;
using Associations;
using Associations.Impl;
using FluentAssertions;
using Helpers;
using Mappers;
using NUnit.Framework;
[TestFixture]
public class ComponentCollectionAssociationTests
{
[Test]
public void TestMappingCreatesTargetComponent()
{
var sut = new ComponentCollectionAssociation<Foo, Baz, Bar, Qux>(_ => _.Bazes, _ => _.Quxes);
var foo = new Foo
{
Bazes = new[] {new Baz(), new Baz()}
};
var bar = CreateReader(sut)(foo);
bar.Quxes.Should().NotBeNull();
bar.Quxes.Count().Should().Be(foo.Bazes.Count());
}
[Test]
public void TestMappingAppliesMapper()
{
var sut = new ComponentCollectionAssociation<Foo, Baz, Bar, Qux>(_ => _.Bazes, _ => _.Quxes);
var component = new PropertyToPropertyAssociation<Baz, Qux, int>(_ => _.Id, _ => _.Id);
var foo = new Foo
{
Bazes = new[] { new Baz { Id = 1 }, new Baz { Id = 2 } }
};
var bar = CreateReader(sut, component)(foo);
bar.Quxes.Should().NotBeNull();
bar.Quxes.Should().NotBeEmpty();
bar.Quxes.Select(_ => _.Id).Should().BeEquivalentTo(foo.Bazes.Select(_ => _.Id));
}
[Test]
public void TestEmptyMapsToEmpty()
{
var sut = new ComponentCollectionAssociation<Foo, Baz, Bar, Qux>(_ => _.Bazes, _ => _.Quxes);
var foo = new Foo
{
Bazes = Enumerable.Empty<Baz>()
};
var bar = CreateReader(sut)(foo);
bar.Quxes.Should().NotBeNull();
bar.Quxes.Should().BeEmpty();
}
[Test]
public void TestMappingAssignsDefaultValue()
{
var sut = new ComponentCollectionAssociation<Foo, Baz, Bar, Qux>(_ => _.Bazes, _ => _.Quxes);
var foo = new Foo();
var bar = CreateReader(sut)(foo);
bar.Quxes.Should().BeNull();
}
[Test]
public void TestReverseMappingDoNothing()
{
var sut = new ComponentCollectionAssociation<Foo, Baz, Bar, Qux>(_ => _.Bazes, _ => _.Quxes);
var foo = new Foo();
var bar = new Bar
{
Quxes = new[] {new Qux(), new Qux()}
};
CreateWriter(sut)(bar, foo);
foo.Bazes.Should().BeNull();
}
private static Func<Foo, Bar> CreateReader(IMappingAssociation association)
{
var factory = new MapperFactory(
new TestMap(typeof(Foo), typeof(Bar), association),
new TestMap(typeof(Baz), typeof(Qux))
);
return _ => factory.GetReader<Foo, Bar>()(_, null);
}
private static Func<Foo, Bar> CreateReader(IMappingAssociation association, IMappingAssociation componentAssociation)
{
var factory = new MapperFactory(
new TestMap(typeof(Foo), typeof(Bar), association),
new TestMap(typeof(Baz), typeof(Qux), componentAssociation)
);
return _ => factory.GetReader<Foo, Bar>()(_, null);
}
private static Action<Bar, Foo> CreateWriter(IMappingAssociation association)
{
var factory = new MapperFactory(
new TestMap(typeof(Foo), typeof(Bar), association),
new TestMap(typeof(Baz), typeof(Qux))
);
return (source, target) => factory.GetWriter<Bar, Foo>()(source, target, null);
}
}
}