forked from pharo-contributions/mutalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMTAnalysis.class.st
433 lines (329 loc) · 9.66 KB
/
MTAnalysis.class.st
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
Class {
#name : 'MTAnalysis',
#superclass : 'Object',
#instVars : [
'methodsToMutate',
'operators',
'elapsedTime',
'mutations',
'testCases',
'coverageAnalysisResult',
'logger',
'budget',
'mutantResults',
'stopOnErrorOrFail',
'testSelectionStrategy',
'testFilter',
'mutantGenerationStrategy',
'warnAboutEmptyTests'
],
#category : 'MuTalk-Model-Core',
#package : 'MuTalk-Model',
#tag : 'Core'
}
{ #category : 'accessing' }
MTAnalysis >> budget [
^ budget
]
{ #category : 'accessing' }
MTAnalysis >> budget: anObject [
budget := anObject
]
{ #category : 'accessing' }
MTAnalysis >> classesToMutate: aClassCollection [
methodsToMutate := aClassCollection flatCollect: [ :class |
| methods |
methods := class package methodsForClass: class.
methods addAll:
(class package methodsForClass: class class).
methods ]
]
{ #category : 'accessing' }
MTAnalysis >> coverageAnalysisResult [
^ coverageAnalysisResult
]
{ #category : 'accessing' }
MTAnalysis >> coverageAnalysisResult: anObject [
coverageAnalysisResult := anObject
]
{ #category : 'accessing - defaults' }
MTAnalysis >> defaultBudget [
^ MTTimeBudget for: 5 minutes
]
{ #category : 'accessing - defaults' }
MTAnalysis >> defaultLogger [
^ MTProgressBarLogger new
]
{ #category : 'accessing - defaults' }
MTAnalysis >> defaultMutantGenerationStrategy [
^ MTAllMutantGenerationStrategy withRandomOperatorMutantSelection
]
{ #category : 'accessing - defaults' }
MTAnalysis >> defaultOperators [
^ MTAbstractMutantOperator contents
]
{ #category : 'accessing - defaults' }
MTAnalysis >> defaultTestFilter [
| times |
times := testCases collect: #lastTimeToRun.
(times anySatisfy: #isNil) ifTrue: [
^ Error signal:
'Either there is no test cases, or the initial test run has not been executed yet' ].
^ MTCompositeTestFilter for: {
MTRedTestFilter new.
(MTTimeTestFilter for: (self percentile: 90 for: times sorted)) }
]
{ #category : 'accessing - defaults' }
MTAnalysis >> defaultTestSelectionStrategy [
^ MTSelectingFromCoverageTestSelectionStrategy new
]
{ #category : 'accessing' }
MTAnalysis >> doNotStopOnErrorOrFail [
stopOnErrorOrFail := false
]
{ #category : 'accessing' }
MTAnalysis >> doNotWarnAboutEmptyTests [
warnAboutEmptyTests := false
]
{ #category : 'results' }
MTAnalysis >> generalResult [
^ MTGeneralResult
for: mutantResults
timed: elapsedTime
excludedTests: testFilter excludedTests
]
{ #category : 'running' }
MTAnalysis >> generateCoverageAnalysis [
logger logStartCoverageAnalysis: testCases size.
coverageAnalysisResult := (MTCoverageAnalysis
for: methodsToMutate
running: testCases)
run;
result.
logger logEndCoverageAnalysis
]
{ #category : 'running' }
MTAnalysis >> generateMutations [
^ mutations ifNil: [
logger logStartMutationGeneration: self methodSize.
mutations := mutantGenerationStrategy
mutationsFor: self
loggingIn: logger.
logger
logTotalNumberOfMutations: mutations;
logEndMutationGeneration.
mutations ]
]
{ #category : 'running' }
MTAnalysis >> generateResults [
mutantResults := OrderedCollection new.
logger logStartMutationEvaluation: mutations.
mutations do: [ :aMutation |
(budget exceedsBudgetOn: mutantResults fromTotalMutations: mutations)
ifTrue: [ ^ mutantResults ].
logger logStartEvaluating: aMutation with: testCases size.
mutantResults add: ((MTMutantEvaluation
for: aMutation
using: testCases
following: testSelectionStrategy
andConsidering: self coverageAnalysisResult)
valueStoppingOnError: stopOnErrorOrFail).
logger logEndEvaluating ].
logger logEndMutationEvaluation.
logger logEnd.
^ mutantResults
]
{ #category : 'running' }
MTAnalysis >> initialTestRun [
"Runs all tests once and filters them"
| results |
logger logStartInitialTestRun: testCases size.
results := testCases collect: [ :aTestCase | aTestCase run ].
logger logEndInitialTestRun.
"The test filter is initialized lazily here because the default one needs the run time of tests, so the initial test run must be executed first"
testCases := self testFilter filterTests: testCases.
(testCases anySatisfy: [ :testCase |
self testFilter failuresOrErrorsIn: testCase ]) ifTrue: [
MTTestsWithErrorsException signal ]
]
{ #category : 'initialization' }
MTAnalysis >> initialize [
super initialize.
operators := self defaultOperators.
mutantGenerationStrategy := self defaultMutantGenerationStrategy.
testSelectionStrategy := self defaultTestSelectionStrategy.
mutantResults := OrderedCollection new.
elapsedTime := 0.
logger := self defaultLogger.
stopOnErrorOrFail := true.
budget := self defaultBudget.
warnAboutEmptyTests := true
]
{ #category : 'accessing' }
MTAnalysis >> logger [
^ logger
]
{ #category : 'accessing' }
MTAnalysis >> logger: anObject [
testCases do: [ :testCaseReference |
testCaseReference logger: anObject ].
logger := anObject
]
{ #category : 'as yet unclassified' }
MTAnalysis >> methodSize [
^ (self modelClasses flatCollect: #methods) size
]
{ #category : 'accessing' }
MTAnalysis >> methodsToMutate [
^ methodsToMutate
]
{ #category : 'accessing' }
MTAnalysis >> methodsToMutate: anObject [
methodsToMutate := anObject
]
{ #category : 'accessing' }
MTAnalysis >> modelClasses [
| classes |
classes := methodsToMutate collect: #methodClass.
^ classes copyWithoutDuplicates
]
{ #category : 'accessing' }
MTAnalysis >> mutantGenerationStrategy [
^ mutantGenerationStrategy
]
{ #category : 'accessing' }
MTAnalysis >> mutantGenerationStrategy: anObject [
mutantGenerationStrategy := anObject
]
{ #category : 'results' }
MTAnalysis >> mutantResults [
^ mutantResults
]
{ #category : 'accessing' }
MTAnalysis >> mutations [
^ mutations
]
{ #category : 'accessing' }
MTAnalysis >> mutations: anObject [
mutations := anObject
]
{ #category : 'initialization' }
MTAnalysis >> noLimitations [
budget := MTFreeBudget new.
testFilter := MTFreeTestFilter new
]
{ #category : 'accessing' }
MTAnalysis >> operators [
^ operators
]
{ #category : 'accessing' }
MTAnalysis >> operators: anObject [
operators := anObject
]
{ #category : 'accessing' }
MTAnalysis >> packagesToMutate: aCollectionOfPackages [
methodsToMutate := aCollectionOfPackages flatCollect: [ :packageName |
packageName asPackage methods ]
]
{ #category : 'computing' }
MTAnalysis >> percentile: aPercentage for: aCollection [
| size index |
aCollection isEmpty ifTrue: [
^ CollectionIsEmpty signalWith: aCollection ].
size := aCollection size.
index := (aPercentage percent * size) rounded.
^ aCollection at: index
]
{ #category : 'running' }
MTAnalysis >> run [
"Obtain mutants applying the operators in the classes (or
methods of
those classes) and execute all mutants in the set of testClases.
We obtain a result for each mutant generated"
elapsedTime := [
logger logAnalysisStart.
self initialTestRun.
self startBudget.
[
self generateCoverageAnalysis.
self generateMutations.
self generateResults ] timeToRun ] ensure: [
logger release ]
]
{ #category : 'starting' }
MTAnalysis >> startBudget [
"The budget is initialized here because the default one needs the run time of tests, so the initial test run must be executed first"
budget ifNil: [ budget := self defaultBudget ].
budget start
]
{ #category : 'accessing' }
MTAnalysis >> stopOnErrorOrFail: aBoolean [
stopOnErrorOrFail := aBoolean
]
{ #category : 'accessing' }
MTAnalysis >> testBaseClasses [
^ OrderedCollection with: TestCase with: TestResource
]
{ #category : 'accessing' }
MTAnalysis >> testCases [
^ testCases
]
{ #category : 'accessing' }
MTAnalysis >> testCases: anObject [
testCases := anObject
]
{ #category : 'accessing' }
MTAnalysis >> testCasesFrom: aClassCollection [
| tests |
tests := aClassCollection
inject: OrderedCollection new
into: [ :testCase :testClass |
testClass isAbstract ifFalse: [
testCase addAll:
(self testCasesReferencesFrom: testClass) ].
testCase ].
tests isEmpty & warnAboutEmptyTests ifTrue: [
Warning signal: 'There is currently no tests' ].
^ tests
]
{ #category : 'tests' }
MTAnalysis >> testCasesReferencesFrom: testClass [
^ testClass buildSuite tests collect: [ :each |
MTTestCaseReference for: each logger: logger ]
]
{ #category : 'accessing' }
MTAnalysis >> testClasses: aClassCollection [
testCases := self testCasesFrom: aClassCollection
]
{ #category : 'accessing' }
MTAnalysis >> testFilter [
^ testFilter ifNil: [ testFilter := self defaultTestFilter ]
]
{ #category : 'accessing' }
MTAnalysis >> testFilter: anObject [
testFilter := anObject
]
{ #category : 'accessing' }
MTAnalysis >> testPackages: aCollectionOfPackages [
| testClasses |
testClasses := aCollectionOfPackages flatCollect: [ :packageName |
packageName asPackage definedClasses select:
#isTestCase ].
self testClasses: testClasses
]
{ #category : 'accessing' }
MTAnalysis >> testSelectionStrategy [
^ testSelectionStrategy
]
{ #category : 'accessing' }
MTAnalysis >> testSelectionStrategy: anObject [
testSelectionStrategy := anObject
]
{ #category : 'accessing' }
MTAnalysis >> totalTestsTime [
| times |
times := testCases collect: #lastTimeToRun.
(times anySatisfy: #isNil) ifTrue: [
^ Error signal: 'The initial test run has not been executed yet' ].
^ times reduce: [ :t1 :t2 | t1 + t2 ]
]