-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathComponentAssociationTests.cs
128 lines (102 loc) · 4.55 KB
/
ComponentAssociationTests.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
124
125
126
127
128
namespace EntityFunctors.Tests
{
using System;
using Associations.Impl;
using EntityFunctors.Associations;
using FluentAssertions;
using Helpers;
using Mappers;
using NUnit.Framework;
[TestFixture]
public class ComponentAssociationTests
{
[Test]
public void TestDirectMappingCreatesTargetComponent()
{
var foo = new Foo { Component = new Baz { Id = 15 } };
var sut = new ComponentToComponentAssociation<Foo, Baz, Bar, Qux>(_ => _.Component, _ => _.Component);
var bar = CreateReader(sut)(foo);
bar.Should().NotBeNull();
bar.Component.Should().NotBeNull();
bar.Component.Id.Should().Be(0);
}
[Test]
public void TestDirectMappingAppliesMapper()
{
var foo = new Foo { Component = new Baz { Id = 15 } };
var sut = new ComponentToComponentAssociation<Foo, Baz, Bar, Qux>(_ => _.Component, _ => _.Component);
var component = new PropertyToPropertyAssociation<Baz, Qux, int>(_ => _.Id, _ => _.Id);
var bar = CreateReader(sut, component)(foo);
bar.Should().NotBeNull();
bar.Component.Should().NotBeNull();
bar.Component.Id.Should().Be(foo.Component.Id);
}
[Test]
public void TestInverseMappingLeavesExisitingTarget()
{
var foo = new Foo { Component = new Baz { Id = 15 } };
var bar = new Bar { Component = new Qux { Id = 16 } };
var before = foo.Component;
var sut = new ComponentToComponentAssociation<Foo, Baz, Bar, Qux>(_ => _.Component, _ => _.Component);
CreateWriter(sut)(bar, foo);
bar.Component.Should().NotBeNull();
foo.Component.Should().BeSameAs(before);
}
[Test]
public void TestInverseMappingAppliesMapper()
{
var foo = new Foo { Component = new Baz { Id = 15 } };
var bar = new Bar { Component = new Qux { Id = 16 } };
var sut = new ComponentToComponentAssociation<Foo, Baz, Bar, Qux>(_ => _.Component, _ => _.Component);
var component = new PropertyToPropertyAssociation<Baz, Qux, int>(_ => _.Id, _ => _.Id);
CreateWriter(sut, component)(bar, foo);
foo.Component.Id.Should().Be(bar.Component.Id);
}
[Test]
public void TestMappingAssignsDefaultValue()
{
var sut = new ComponentToComponentAssociation<Foo, Baz, Bar, Qux>(_ => _.Component, _ => _.Component);
var component = new PropertyToPropertyAssociation<Baz, Qux, int>(_ => _.Id, _ => _.Id);
var foo = new Foo();
var bar = CreateReader(sut, component)(foo);
bar.Should().NotBeNull();
bar.Component.Should().BeNull();
foo = new Foo {Component = new Baz()};
bar = new Bar();
CreateWriter(sut, component)(bar, foo);
foo.Component.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);
}
private static Action<Bar, Foo> CreateWriter(IMappingAssociation association, IMappingAssociation componentAssociation)
{
var factory = new MapperFactory(
new TestMap(typeof(Foo), typeof(Bar), association),
new TestMap(typeof(Baz), typeof(Qux), componentAssociation)
);
return (source, target) => factory.GetWriter<Bar, Foo>()(source, target, null);
}
}
}