You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+24-180
Original file line number
Diff line number
Diff line change
@@ -8,11 +8,16 @@ TestStack.Dossier is integrated with NSubstitute for proxy/mock/substitute objec
8
8
9
9
Prior to v2.0 this library was known as NTestDataBuilder.
10
10
11
-
## How do I get started?
11
+
## Getting started - building a single object
12
12
13
13
1.`Install-Package TestStack.Dossier`
14
14
15
-
2. Create a builder class for one of your domain objects, e.g. if you have a customer:
15
+
2. Are you building a DTO, view model, or other class you don't want to write a custom
16
+
test data builder class for? If so then check out our [generic test data builder implementation](http://dossier.teststack.net/v1.0/docs/create-object-without-requiring-custom-builder-cla)
17
+
18
+
3. If you want to build a custom builder class, e.g. for a domain object, so you can use the builder
19
+
as documentation and also to make the experience of building that class in your tests more rich
20
+
then you need to extend the TestDataBuilder class like in the following code example:
16
21
17
22
// Customer.cs
18
23
@@ -46,11 +51,14 @@ Prior to v2.0 this library was known as NTestDataBuilder.
46
51
47
52
// CustomerBuilder.cs
48
53
54
+
// Yep - you have to provide the custom builder type in as a generic type argument
55
+
// it's a bit weird, but necessary for the fluent chaining to work from the base class
49
56
public class CustomerBuilder : TestDataBuilder<Customer, CustomerBuilder>
50
57
{
51
58
public CustomerBuilder()
52
59
{
53
-
// Can set up defaults here - any that you don't set or subsequently override will have an anonymous value generated by default.
60
+
// Can set up defaults here - any that you don't set or subsequently override
61
+
// will have an anonymous value generated by default
54
62
WhoJoinedIn(2013);
55
63
}
56
64
@@ -60,7 +68,8 @@ Prior to v2.0 this library was known as NTestDataBuilder.
60
68
return Set(x => x.FirstName, firstName);
61
69
}
62
70
63
-
// Note: we typically only start with the methods that are strictly needed so the builders are quick to write and aren't bloated'
71
+
// Note: we typically only start with the methods that are strictly needed so the
72
+
// builders are quick to write and aren't bloated'
64
73
public virtual CustomerBuilder WithLastName(string lastName)
65
74
{
66
75
return Set(x => x.LastName, lastName);
@@ -71,27 +80,28 @@ Prior to v2.0 this library was known as NTestDataBuilder.
71
80
return Set(x => x.YearJoined, yearJoined);
72
81
}
73
82
83
+
// This method is optional, by default it uses `BuildUsing<PublicPropertySettersFactory>()`
74
84
protected override Customer BuildObject()
75
85
{
86
+
return BuildUsing<CallConstructorFactory>();
87
+
// or, if you need more control / can't use the auto-construction assumptions
76
88
return new Customer(
77
89
Get(x => x.FirstName),
78
90
Get(x => x.LastName),
79
91
Get(x => x.YearJoined)
80
92
);
81
-
// or
82
-
return BuildUsing<CallConstructorFactory>();
83
93
}
84
94
}
85
95
86
-
3. Use the builder in a test, e.g.
96
+
4. Use the builder in a test, e.g.
87
97
88
98
var customer = new CustomerBuilder()
89
99
.WithFirstName("Robert")
90
100
.Build();
91
101
92
-
4. Consider using the Object Mother pattern in combination with the builders, see [my blog post](http://robdmoore.id.au/blog/2013/05/26/test-data-generation-the-right-way-object-mother-test-data-builders-nsubstitute-nbuilder/) for a description of how I use this library.
102
+
5. Consider using the Object Mother pattern in combination with the builders, see [my blog post](http://robdmoore.id.au/blog/2013/05/26/test-data-generation-the-right-way-object-mother-test-data-builders-nsubstitute-nbuilder/) for a description of how I use this library.
93
103
94
-
## How can I create a list of entities using my builders?
104
+
## Getting started - building a list of objects
95
105
96
106
This library allows you to build a list of entities fluently and tersely. Here is an example:
97
107
@@ -103,7 +113,7 @@ This library allows you to build a list of entities fluently and tersely. Here i
103
113
.All().WhoJoinedIn(1999)
104
114
.BuildList();
105
115
106
-
This would create the following (represented as json):
116
+
This would create the following (represented as json) - note the anonymous values that are generated:
107
117
108
118
[
109
119
{
@@ -133,179 +143,13 @@ This would create the following (represented as json):
If you use the list builder functionality and get the following error:
139
-
140
-
> Castle.DynamicProxy.Generators.GeneratorException: Can not create proxy for type <YOUR_BUILDER_CLASS> because it is not accessible. Make it public, or internal and mark your assembly with [assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")] attribute, because assembly <YOUR_TEST_ASSEMBLY> is not strong-named.
141
-
142
-
Then you either need to:
143
-
144
-
* Make your builder class public
145
-
* Add the following to your `AssemblyInfo.cs` file: `[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")]`
If you use the list builder functionality and get the following error:
150
-
151
-
> System.InvalidOperationException: Tried to build a list with a builder who has non-virtual method. Please make <METHOD_NAME> on type <YOUR_BUILDER_CLASS> virtual.
152
-
153
-
Then you need to mark all the public methods on your builder as virtual. This is because we are using Castle Dynamic Proxy to generate lists and it can't intercept non-virtual methods.
154
-
155
-
## Create Entities Implicitly
156
-
157
-
In the previous examples, you have seen how to create entities *explicitly*, by calling the `Build()` and `BuildList()` methods. For the ultimate in terseness, you can omit these methods, and Dossier will *implicitly* call them for you. The one caveat is that you must explicitly declare the variable type rather than using the `var` keyword (unless you are passing into a method with the desired type).
List<Customer> data = CustomerBuilder.CreateListOfSize(3)
173
-
.TheFirst(1).WithFirstName("John");
174
-
175
-
## Create object without requiring custom builder class
176
-
177
-
If you are building domain entities, or other important classes, having a custom builder class with intention-revealing method (e.g. WithFirstName) provides terseness (avoiding lambda expressions) and allows the builder class to start forming documentation about the usage of that object.
178
-
179
-
Sometimes though, you just want to build a class without that ceremony. Typically, we find that this applies for view models and DTOs.
180
-
181
-
In that instance you can use the generic `Builder` implementation as shown below:
182
-
183
-
StudentViewModel vm = Builder<StudentViewModel>.CreateNew()
184
-
.Set(x => x.FirstName, "Pi")
185
-
.Set(x => x.LastName, "Lanningham")
186
-
.Set(x => x.EnrollmentDate, new DateTime(2000, 1, 1));
187
-
188
-
var studentViewModels = Builder<StudentViewModel>.CreateListOfSize(5)
The syntax is modelled closely against what NBuilder provides and the behaviour of the class should be very similar.
197
-
198
-
Note, that in the first example above, it was not necessary to call the `Build` method at the end of the method chain. This is because the `vm` variable has been defined as `StudentViewModel` and the C# compiler is able to infer the type and the object is set *implicitly*.
199
-
200
-
In the second example, the `var` keyword is used to define `studentViewModels`, and so it is necessary to *explicitly* call `BuildList` to set the variable.
201
-
202
-
### Customising the construction of the object
203
-
204
-
By default, the longest constructor of the class you specify will be called and then all properties (with public and private setters) will be set with values you specified (or anonymous values if none were specified).
205
-
206
-
Sometimes you might not want this behaviour, in which case you can specify a custom construction factory (see *Build objects without calling constructor* section for explanation of factories) as shown below:
207
-
208
-
var dto = Builder<MixedAccessibilityDto>
209
-
.CreateNew(new CallConstructorFactory())
210
-
.Build();
211
-
212
-
var dtos = MixedAccessibilityDto dto = Builder<MixedAccessibilityDto>
213
-
.CreateListOfSize(5, new CallConstructorFactory())
214
-
.BuildList();
215
-
216
-
## Build objects without calling constructor
217
-
218
-
When you extend the `TestDataBuilder` as part of creating a custom builder you will be forced to override the abstract `BuildObject` method. You have full flexibility to call the constructor of your class directly as shown above, but you can also invoke some convention-based factories to speed up the creation of your builder (also shown above) using the `BuildUsing` method.
219
-
220
-
The `BuildUsing` method takes an instance of `IFactory`, of which you can create your own factory implementation that takes into account your own conventions or you can use one of the built-in ones:
221
-
222
-
*`AllPropertiesFactory` - Calls the longest constructor with builder values (or anonymous values if none set) based on case-insensitive match of constructor parameter names against property names and then calls the setter on all properties (public or private) with builder values (or anonymous values if none set)
223
-
*`PublicPropertySettersFactory` - Calls the longest constructor with builder values (or anonymous values if none set) based on case-insensitive match of constructor parameter names against property names and then calls the setter on all properties with public setters with builder values (or anonymous values if none set)
224
-
*`CallConstructorFactory` - Calls the longest constructor with builder values (or anonymous values if none set) based on case-insensitive match of constructor parameter names against property names
225
-
*`AutoFixtureFactory` - Asks AutoFixture to create an anonymous instance of the class (note: does **not** use any builder values or anonymous values from Dossier)
226
-
227
-
## Propagating the anonymous value fixture across builders
228
-
229
-
Within a particular instance of `AnonymousValueFixture`, which is created for every builder, any generators that return a sequence of values (e.g. unique values) will be maintained. If you want to ensure that the same anonymous value fixture is used across multiple related builders then:
230
-
231
-
* Using `CreateListOfSize` will automatically propagate the anonymous value fixture across builders
232
-
* Call the `GetChildBuilder<TChildObject, TChildBuilder>(Func<TChildBuilder, TChildBuilder> modifier = null)` method from within your custom builder, e.g.:
233
-
234
-
public MyCustomBuilder WithSomeValue(Func<SomeBuilder, SomeBuilder> modifier = null)
.SetUsingBuilder<AddressViewModel, AddressViewModelBuilder>(x => x.Address, b => b.Set(y => y.Street, "A street"))
255
-
.Build()
256
-
257
-
There is currently no way to share an anonymous value fixture across unrelated builder instances. If this is something you need please raise an issue so we can discuss your requirement.
258
-
259
-
## Anonymous Values and Equivalence Classes
260
-
261
-
todo: Coming soon!
262
-
263
-
## How can I create proxy objects?
264
-
265
-
This library integrates with [NSubstitute](http://nsubstitute.github.io/) for generating proxy objects, this means you can call the `AsProxy` method on your builder to request that the result from calling `Build` will be an NSubstitute proxy with the public properties set to return the values you have specified via your builder, e.g.
266
-
267
-
var customer = CustomerBuilder.WithFirstName("Rob").AsProxy().Build();
var years = customer.CustomerForHowManyYears(DateTime.Now); // 10
271
-
272
-
If you need to alter the proxy before calling `Build` to add complex behaviours that can't be expressed by the default public properties returns values then you can override the `AlterProxy` method in your builder, e.g.
273
-
274
-
class CustomerBuilder : TestDataBuilder<Customer, CustomerBuilder>
275
-
{
276
-
// ...
277
-
278
-
private int _years;
279
-
280
-
public CustomerBuilder HasBeenMemberForYears(int years)
var customer = new CustomerBuilder().AsProxy().HasBeenMemberForYears(10);
297
-
var years = customer.CustomerForHowManyYears(DateTime.Now); // 10
298
-
299
-
*Remember that when using proxy objects of real classes that you need to mark properties and methods as virtual and have a protected empty constructor.*
300
-
301
-
## Why does TestStack.Dossier have NSubstitute and AutoFixture as dependencies?
302
146
303
-
TestStack.Dossier is an opinionated framework and as such prescribes how to build your fixture data, including how to build lists, anonymous data and mock objects. Because of this we have decided to bundle it with the best of breed libraries for this purpose: AutoFixture and NSubstitute.
147
+
The same works with the generic `Builder<T>` implementation too.
304
148
305
-
This allows for this library to provide a rich value-add on top of the basics of tracking properties in a dictionary in the `TestDataBuilder` base class. If you want to use different libraries or want a cut down version that doesn't come with NSubstitute or AutoFixture and the extra functionality they bring then take the `TestDataBuilder.cs` file and cut out the bits you don't want - open source ftw :).
149
+
## Documentation
306
150
307
-
If you have a suggestion for the library that can incorporate this value-add without bundling these libraries feel free to submit a pull request.
151
+
More comprehensive documentation is available on our [documentation website](http://dossier.teststack.net/).
308
152
309
153
## Contributions / Questions
310
154
311
-
If you would like to contribute to this project then feel free to communicate with Rob via Twitter (@robdmoore) or alternatively submit a pull request / issue.
155
+
If you would like to contribute to this project then feel free to communicate with us via Twitter ([]@teststacknet](https://twitter.com/teststacknet)) or alternatively submit a [pull request](https://github.com/TestStack/TestStack.Dossier/compare/) / [issue](https://github.com/TestStack/TestStack.Dossier/issues/new).
0 commit comments