-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathListFillingTest.cs
156 lines (134 loc) · 5.46 KB
/
ListFillingTest.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Tynamix.ObjectFiller.Test.TestPoco;
using Tynamix.ObjectFiller.Test.TestPoco.ListTest;
namespace Tynamix.ObjectFiller.Test
{
[TestClass]
public class ListFillingTest
{
[TestMethod]
public void TestFillAllListsExceptArray()
{
Filler<EntityCollection> eFiller = new Filler<EntityCollection>();
eFiller.Setup()
.OnProperty(x => x.EntityArray).IgnoreIt();
EntityCollection entity = eFiller.Create();
Assert.IsNotNull(entity);
Assert.IsNotNull(entity.EntityList);
Assert.IsNotNull(entity.EntityICollection);
Assert.IsNotNull(entity.EntityIEnumerable);
Assert.IsNotNull(entity.EntityIList);
Assert.IsNotNull(entity.EntityHashset);
}
[TestMethod]
public void TestUseEnumerable()
{
Filler<EntityCollection> eFiller = new Filler<EntityCollection>();
eFiller.Setup()
.ListItemCount(20)
.OnProperty(x => x.EntityICollection,
x => x.EntityIList, x => x.ObservableCollection,
x => x.EntityIEnumerable).IgnoreIt()
.OnProperty(x => x.EntityArray).IgnoreIt()
.SetupFor<Entity>()
.OnProperty(x => x.Id).Use(Enumerable.Range(1, 22).Select(x => (int)Math.Pow(2, x)));
EntityCollection ec = eFiller.Create();
for (int i = 0; i < ec.EntityList.Count; i++)
{
int lastPowNum = (int)Math.Pow(2, i + 1);
Assert.AreEqual(lastPowNum, ec.EntityList[i].Id);
}
}
[TestMethod]
public void TestFillList()
{
Filler<EntityCollection> eFiller = new Filler<EntityCollection>();
eFiller.Setup()
.OnProperty(ec => ec.EntityArray).Use(GetArray);
EntityCollection entity = eFiller.Create();
Assert.IsNotNull(entity);
Assert.IsNotNull(entity.EntityList);
Assert.IsNotNull(entity.EntityICollection);
Assert.IsNotNull(entity.EntityIEnumerable);
Assert.IsNotNull(entity.EntityIList);
Assert.IsNotNull(entity.EntityArray);
Assert.IsNotNull(entity.EntityHashset);
}
[TestMethod]
public void TestIgnoreAllUnknownTypesWithOutException()
{
Filler<EntityCollection> filler = new Filler<EntityCollection>();
filler.Setup().IgnoreAllUnknownTypes();
var entity = filler.Create();
Assert.IsNull(entity.EntityArray);
Assert.IsNotNull(entity);
Assert.IsNotNull(entity.EntityList);
Assert.IsNotNull(entity.EntityICollection);
Assert.IsNotNull(entity.EntityIEnumerable);
Assert.IsNotNull(entity.EntityIList);
Assert.IsNotNull(entity.EntityHashset);
}
[TestMethod]
public void TestIgnoreAllUnknownTypesWithException()
{
Filler<EntityCollection> filler = new Filler<EntityCollection>();
Assert.ThrowsException<TypeInitializationException>(()=>filler.Create());
}
[TestMethod]
public void GenerateTestDataForASortedList()
{
Filler<SortedList<int, string>> filler = new Filler<SortedList<int, string>>();
filler.Setup().OnType<int>().Use(Enumerable.Range(1, 1000));
var result = filler.Create(10).ToList();
Assert.AreEqual(10, result.Count);
foreach (var sortedList in result)
{
Assert.IsTrue(sortedList.Any());
}
}
[TestMethod]
public void GenerateTestDataForASimpleList()
{
Filler<IList<EntityCollection>> filler = new Filler<IList<EntityCollection>>();
filler.Setup().IgnoreAllUnknownTypes();
var createdList = filler.Create();
Assert.IsTrue(createdList.Any());
foreach (EntityCollection entityCollection in createdList)
{
Assert.IsTrue(entityCollection.EntityICollection.Any());
Assert.IsTrue(entityCollection.EntityIEnumerable.Any());
Assert.IsTrue(entityCollection.EntityIList.Any());
Assert.IsTrue(entityCollection.EntityList.Any());
Assert.IsNotNull(entityCollection.EntityHashset.Any());
}
}
[TestMethod]
public void GenerateTestDataForADictionary()
{
Filler<Dictionary<int, string>> filler = new Filler<Dictionary<int, string>>();
var result = filler.Create(10).ToList();
Assert.AreEqual(10, result.Count);
foreach (var sortedList in result)
{
Assert.IsTrue(sortedList.Any());
}
}
[TestMethod]
public void GenerateDictionaryWithEnumeration()
{
var amountOfEnumValues = Enum.GetValues(typeof(TestEnum)).Length;
var filler = new Filler<Dictionary<TestEnum, string>>();
var result = filler.Create();
Assert.AreEqual(amountOfEnumValues, result.Count);
}
private Entity[,] GetArray()
{
Filler<Entity> of = new Filler<Entity>();
var entity = new Entity[,] { { of.Create() } };
return entity;
}
}
}