-
-
Notifications
You must be signed in to change notification settings - Fork 987
/
Copy pathAllSetupAndCleanupTest.cs
261 lines (205 loc) · 10.1 KB
/
AllSetupAndCleanupTest.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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
using System;
using System.Linq;
using System.Threading.Tasks;
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Engines;
using BenchmarkDotNet.Jobs;
using BenchmarkDotNet.Reports;
using BenchmarkDotNet.Tests.XUnit;
using Xunit;
using Xunit.Abstractions;
namespace BenchmarkDotNet.IntegrationTests
{
public class AllSetupAndCleanupTest : BenchmarkTestExecutor
{
private const string Prefix = "// ### Called: ";
private const string GlobalSetupCalled = Prefix + "GlobalSetup";
private const string GlobalCleanupCalled = Prefix + "GlobalCleanup";
private const string IterationSetupCalled = Prefix + "IterationSetup";
private const string IterationCleanupCalled = Prefix + "IterationCleanup";
private const string BenchmarkCalled = Prefix + "Benchmark";
private readonly string[] expectedLogLines = {
"// ### Called: GlobalSetup",
"// ### Called: IterationSetup (1)", // MainWarmup1
"// ### Called: Benchmark", // MainWarmup1
"// ### Called: IterationCleanup (1)", // MainWarmup1
"// ### Called: IterationSetup (2)", // MainWarmup2
"// ### Called: Benchmark", // MainWarmup2
"// ### Called: IterationCleanup (2)", // MainWarmup2
"// ### Called: IterationSetup (3)", // MainTarget1
"// ### Called: Benchmark", // MainTarget1
"// ### Called: IterationCleanup (3)", // MainTarget1
"// ### Called: IterationSetup (4)", // MainTarget2
"// ### Called: Benchmark", // MainTarget2
"// ### Called: IterationCleanup (4)", // MainTarget2
"// ### Called: IterationSetup (5)", // MainTarget3
"// ### Called: Benchmark", // MainTarget3
"// ### Called: IterationCleanup (5)", // MainTarget3
"// ### Called: GlobalCleanup"
};
public AllSetupAndCleanupTest(ITestOutputHelper output) : base(output) { }
private static string[] GetActualLogLines(Summary summary)
=> GetSingleStandardOutput(summary).Where(line => line.StartsWith(Prefix)).ToArray();
[Theory]
[InlineData(typeof(AllSetupAndCleanupAttributeBenchmarks))]
[InlineData(typeof(AllSetupAndCleanupAttributeBenchmarksTask))]
[InlineData(typeof(AllSetupAndCleanupAttributeBenchmarksGenericTask))]
[InlineData(typeof(AllSetupAndCleanupAttributeBenchmarksValueTask))]
[InlineData(typeof(AllSetupAndCleanupAttributeBenchmarksGenericValueTask))]
[InlineData(typeof(AllSetupAndCleanupAttributeBenchmarksValueTaskSource))]
[InlineData(typeof(AllSetupAndCleanupAttributeBenchmarksGenericValueTaskSource))]
public void AllSetupAndCleanupMethodRunsTest(Type benchmarkType)
{
var miniJob = Job.Default.WithStrategy(RunStrategy.Monitoring).WithWarmupCount(2).WithIterationCount(3).WithInvocationCount(1).WithUnrollFactor(1).WithId("MiniJob");
var config = CreateSimpleConfig(job: miniJob);
var summary = CanExecute(benchmarkType, config);
var actualLogLines = GetActualLogLines(summary);
foreach (string line in actualLogLines)
Output.WriteLine(line);
SmartAssert.Equal(expectedLogLines, actualLogLines);
}
public class AllSetupAndCleanupAttributeBenchmarks
{
private int setupCounter;
private int cleanupCounter;
[IterationSetup]
public void IterationSetup() => Console.WriteLine(IterationSetupCalled + " (" + ++setupCounter + ")");
[IterationCleanup]
public void IterationCleanup() => Console.WriteLine(IterationCleanupCalled + " (" + ++cleanupCounter + ")");
[GlobalSetup]
public void GlobalSetup() => Console.WriteLine(GlobalSetupCalled);
[GlobalCleanup]
public void GlobalCleanup() => Console.WriteLine(GlobalCleanupCalled);
[Benchmark]
public void Benchmark() => Console.WriteLine(BenchmarkCalled);
}
public class AllSetupAndCleanupAttributeBenchmarksTask
{
private int setupCounter;
private int cleanupCounter;
[IterationSetup]
public void IterationSetup() => Console.WriteLine(IterationSetupCalled + " (" + ++setupCounter + ")");
[IterationCleanup]
public void IterationCleanup() => Console.WriteLine(IterationCleanupCalled + " (" + ++cleanupCounter + ")");
[GlobalSetup]
public Task GlobalSetup() => Console.Out.WriteLineAsync(GlobalSetupCalled);
[GlobalCleanup]
public Task GlobalCleanup() => Console.Out.WriteLineAsync(GlobalCleanupCalled);
[Benchmark]
public void Benchmark() => Console.WriteLine(BenchmarkCalled);
}
public class AllSetupAndCleanupAttributeBenchmarksGenericTask
{
private int setupCounter;
private int cleanupCounter;
[IterationSetup]
public void IterationSetup() => Console.WriteLine(IterationSetupCalled + " (" + ++setupCounter + ")");
[IterationCleanup]
public void IterationCleanup() => Console.WriteLine(IterationCleanupCalled + " (" + ++cleanupCounter + ")");
[GlobalSetup]
public async Task<int> GlobalSetup()
{
await Console.Out.WriteLineAsync(GlobalSetupCalled);
return 42;
}
[GlobalCleanup]
public async Task<int> GlobalCleanup()
{
await Console.Out.WriteLineAsync(GlobalCleanupCalled);
return 42;
}
[Benchmark]
public void Benchmark() => Console.WriteLine(BenchmarkCalled);
}
public class AllSetupAndCleanupAttributeBenchmarksValueTask
{
private int setupCounter;
private int cleanupCounter;
[IterationSetup]
public void IterationSetup() => Console.WriteLine(IterationSetupCalled + " (" + ++setupCounter + ")");
[IterationCleanup]
public void IterationCleanup() => Console.WriteLine(IterationCleanupCalled + " (" + ++cleanupCounter + ")");
[GlobalSetup]
public ValueTask GlobalSetup() => new ValueTask(Console.Out.WriteLineAsync(GlobalSetupCalled));
[GlobalCleanup]
public ValueTask GlobalCleanup() => new ValueTask(Console.Out.WriteLineAsync(GlobalCleanupCalled));
[Benchmark]
public void Benchmark() => Console.WriteLine(BenchmarkCalled);
}
public class AllSetupAndCleanupAttributeBenchmarksGenericValueTask
{
private int setupCounter;
private int cleanupCounter;
[IterationSetup]
public void IterationSetup() => Console.WriteLine(IterationSetupCalled + " (" + ++setupCounter + ")");
[IterationCleanup]
public void IterationCleanup() => Console.WriteLine(IterationCleanupCalled + " (" + ++cleanupCounter + ")");
[GlobalSetup]
public async ValueTask<int> GlobalSetup()
{
await Console.Out.WriteLineAsync(GlobalSetupCalled);
return 42;
}
[GlobalCleanup]
public async ValueTask<int> GlobalCleanup()
{
await Console.Out.WriteLineAsync(GlobalCleanupCalled);
return 42;
}
[Benchmark]
public void Benchmark() => Console.WriteLine(BenchmarkCalled);
}
public class AllSetupAndCleanupAttributeBenchmarksValueTaskSource
{
private readonly ValueTaskSource<int> valueTaskSource = new ();
private int setupCounter;
private int cleanupCounter;
[IterationSetup]
public void IterationSetup() => Console.WriteLine(IterationSetupCalled + " (" + ++setupCounter + ")");
[IterationCleanup]
public void IterationCleanup() => Console.WriteLine(IterationCleanupCalled + " (" + ++cleanupCounter + ")");
[GlobalSetup]
public ValueTask GlobalSetup()
{
valueTaskSource.Reset();
Console.Out.WriteLineAsync(GlobalSetupCalled).ContinueWith(_ => valueTaskSource.SetResult(42));
return new ValueTask(valueTaskSource, valueTaskSource.Token);
}
[GlobalCleanup]
public ValueTask GlobalCleanup()
{
valueTaskSource.Reset();
Console.Out.WriteLineAsync(GlobalCleanupCalled).ContinueWith(_ => valueTaskSource.SetResult(42));
return new ValueTask(valueTaskSource, valueTaskSource.Token);
}
[Benchmark]
public void Benchmark() => Console.WriteLine(BenchmarkCalled);
}
public class AllSetupAndCleanupAttributeBenchmarksGenericValueTaskSource
{
private readonly ValueTaskSource<int> valueTaskSource = new ();
private int setupCounter;
private int cleanupCounter;
[IterationSetup]
public void IterationSetup() => Console.WriteLine(IterationSetupCalled + " (" + ++setupCounter + ")");
[IterationCleanup]
public void IterationCleanup() => Console.WriteLine(IterationCleanupCalled + " (" + ++cleanupCounter + ")");
[GlobalSetup]
public ValueTask<int> GlobalSetup()
{
valueTaskSource.Reset();
Console.Out.WriteLineAsync(GlobalSetupCalled).ContinueWith(_ => valueTaskSource.SetResult(42));
return new ValueTask<int>(valueTaskSource, valueTaskSource.Token);
}
[GlobalCleanup]
public ValueTask<int> GlobalCleanup()
{
valueTaskSource.Reset();
Console.Out.WriteLineAsync(GlobalCleanupCalled).ContinueWith(_ => valueTaskSource.SetResult(42));
return new ValueTask<int>(valueTaskSource, valueTaskSource.Token);
}
[Benchmark]
public void Benchmark() => Console.WriteLine(BenchmarkCalled);
}
}
}