-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathExpressionToPropertyAssociationTests.cs
93 lines (68 loc) · 2.64 KB
/
ExpressionToPropertyAssociationTests.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
namespace EntityFunctors.Tests
{
using System;
using System.Linq.Expressions;
using Associations.Impl;
using EntityFunctors.Associations;
using FluentAssertions;
using Helpers;
using Mappers;
using NUnit.Framework;
[TestFixture]
public class ExpressionToPropertyAssociationTests
{
[Test]
public void TestIntMapping()
{
var foo = new Foo { Id = 10 };
Expression<Func<Foo, int>> source = _ => _.Id * _.Id;
var sut = new ExpressionToPropertyAssociation<Foo, Bar, int>(source, _ => _.Id);
var expected = source.Compile()(foo);
var bar = CreateReader(sut)(foo);
bar.Should().NotBeNull();
bar.Id.Should().Be(expected);
}
[Test]
public void TestStringMapping()
{
var foo = new Foo {Name = "123"};
Expression<Func<Foo, int>> source = _ => _.Name.Length;
var sut = new ExpressionToPropertyAssociation<Foo, Bar, int>(source, _ => _.Id);
var expected = source.Compile()(foo);
var bar = CreateReader(sut)(foo);
bar.Should().NotBeNull();
bar.Id.Should().Be(expected);
}
[Test]
public void TestInverseMappingDoesNothing()
{
var foo = new Foo { Id = 10 };
Expression<Func<Foo, int>> source = _ => _.Id * _.Id;
var sut = new ExpressionToPropertyAssociation<Foo, Bar, int>(source, _ => _.Id);
var bar = CreateReader(sut)(foo);
bar.Should().NotBeNull();
foo.Id.Should().Be(10);
}
[Test]
public void TestInverseMappingAssignsOnWrite()
{
var foo = new Foo { Component = new Baz()};
var bar = new Bar { Id = 11 };
Expression<Func<Foo, int>> source = _ => _.Component.Id;
var sut = new ExpressionToPropertyAssociation<Foo, Bar, int>(source, _ => _.Id);
sut.Write();
CreateWriter(sut)(bar, foo);
foo.Component.Id.Should().Be(11);
}
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);
}
}
}