-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCollectionAssociationTests.cs
119 lines (94 loc) · 3.15 KB
/
CollectionAssociationTests.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
namespace EntityFunctors.Tests
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using Associations.Impl;
using EntityFunctors.Associations;
using EntityFunctors.Extensions;
using FluentAssertions;
using Helpers;
using Mappers;
using NUnit.Framework;
[TestFixture]
public class CollectionAssociationTests
{
[Test]
public void TestMappingCreatesTargetComponent()
{
var sut = CreateSut();
var foo = new Foo
{
Bazes = new[] { new Baz(), new Baz() }
};
var bar = CreateReader(sut)(foo);
bar.Should().NotBeNull();
bar.Names.Should().NotBeNull();
}
[Test]
public void TestMappingAppliesMapper()
{
var sut = CreateSut();
var foo = new Foo
{
Bazes = new[] { new Baz { Id = 1 }, new Baz { Id = 2 } }
};
var bar = CreateReader(sut)(foo);
bar.Should().NotBeNull();
bar.Names.Should().NotBeNull();
bar.Names.Should().NotBeEmpty();
bar.Names.Should().BeEquivalentTo(foo.Bazes.Select(_ => _.Id.ToString()));
}
[Test]
public void TestEmptyMapsToEmpty()
{
var sut = CreateSut();
var foo = new Foo
{
Bazes = Enumerable.Empty<Baz>()
};
var bar = CreateReader(sut)(foo);
bar.Should().NotBeNull();
bar.Names.Should().NotBeNull();
bar.Names.Should().BeEmpty();
}
[Test]
public void TestMappingAssignsDefaultValue()
{
var sut = CreateSut();
var foo = new Foo();
var bar = CreateReader(sut)(foo);
bar.Should().NotBeNull();
bar.Names.Should().BeNull();
}
[Test]
public void TestReverseMappingDoNothing()
{
var sut = CreateSut();
var foo = new Foo();
var bar = new Bar
{
Names = new[] { "a", "b" }
};
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));
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));
return (source, target) => factory.GetWriter<Bar, Foo>()(source, target, null);
}
private static IMappingAssociation CreateSut()
{
Expression<Func<Foo, IEnumerable<Baz>>> source = _ => _.Bazes;
Expression<Func<Bar, IEnumerable<string>>> target = _ => _.Names;
return new CollectionAssociation<Foo, Baz, Bar, string>(source, target, _ => _.Id.ToString());
}
}
}