forked from pharo-contributions/mutalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMTProgressBarLogger.class.st
232 lines (175 loc) · 5.02 KB
/
MTProgressBarLogger.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
Class {
#name : 'MTProgressBarLogger',
#superclass : 'MTAnalysisLogger',
#instVars : [
'mainJob',
'testJob',
'mutantJob',
'methodJob'
],
#category : 'MuTalk-Model-Logging',
#package : 'MuTalk-Model',
#tag : 'Logging'
}
{ #category : 'initialization' }
MTProgressBarLogger >> initialize [
self initializeMainJob
]
{ #category : 'initialization' }
MTProgressBarLogger >> initializeMainJob [
mainJob := Job new.
SystemVersion current major <= 10 ifTrue: [
"Jobs need a block below P10 to have an owner?"
mainJob block: [ ].
].
mainJob
min: 0;
max: 4.
mainJob title: 'Mutation Analysis: '
]
{ #category : 'initialization' }
MTProgressBarLogger >> initializeMethodJob: size [
methodJob := Job new
min: 0;
max: size;
yourself.
SystemVersion current major <= 10 ifTrue: [
"Jobs need a block below P10 to have an owner?"
methodJob block: [ ] ].
methodJob prepareForRunning
]
{ #category : 'initialization' }
MTProgressBarLogger >> initializeMutantJob: size [
mutantJob := Job new
min: 0;
max: size;
yourself.
SystemVersion current major <= 10 ifTrue: [
"Jobs need a block below P10 to have an owner?"
mutantJob block: [ ] ].
mutantJob prepareForRunning
]
{ #category : 'initialization' }
MTProgressBarLogger >> initializeTestJob: size [
testJob := Job new
min: 0;
max: size;
yourself.
SystemVersion current major <= 10 ifTrue: [
"Jobs need a block below P10 to have an owner?"
testJob block: [ ].
].
testJob prepareForRunning
]
{ #category : 'logging' }
MTProgressBarLogger >> logAnalysisStart [
mainJob ifNil: [ self initializeMainJob ].
mainJob prepareForRunning
]
{ #category : 'logging' }
MTProgressBarLogger >> logEnd [
mainJob title: 'Mutation Testing: Finished'.
mainJob cleanupAfterRunning.
mainJob := nil
]
{ #category : 'logging' }
MTProgressBarLogger >> logEndCoverageAnalysis [
self testJob cleanupAfterRunning.
mainJob increment.
testJob := nil
]
{ #category : 'logging' }
MTProgressBarLogger >> logEndEvaluating [
self testJob cleanupAfterRunning.
self mutantJob increment.
testJob := nil
]
{ #category : 'logging' }
MTProgressBarLogger >> logEndInitialTestRun [
self testJob cleanupAfterRunning.
mainJob increment.
testJob := nil
]
{ #category : 'logging' }
MTProgressBarLogger >> logEndMutationEvaluation [
self mutantJob cleanupAfterRunning.
mutantJob := nil.
mainJob increment
]
{ #category : 'logging' }
MTProgressBarLogger >> logEndMutationGeneration [
self methodJob cleanupAfterRunning.
methodJob := nil.
mainJob increment
]
{ #category : 'logging' }
MTProgressBarLogger >> logNumberOfGeneratedMutations: aNumber [
"[ :job |
aNumber < 2
ifTrue: [ job title: aNumber asString , ' mutation generated' ]
ifFalse: [ job title: aNumber asString , ' mutations generated' ] ]
asJob run"
]
{ #category : 'logging' }
MTProgressBarLogger >> logRunningTest: aTestCaseReference [
self testJob ifNotNil: [ self testJob title:
'Running mutated test: ' , aTestCaseReference testCase printString.
self testJob increment ].
]
{ #category : 'logging' }
MTProgressBarLogger >> logStartBuildingMutantionsFor: aCompiledMethod using: aMutantOperator [
self methodJob title:
'Generating mutations for ' , (self methodNameOf: aCompiledMethod)
, ' with operator: ' , aMutantOperator description.
self methodJob increment
]
{ #category : 'logging' }
MTProgressBarLogger >> logStartCoverageAnalysis: testSize [
mainJob title: 'Mutation Testing: Starting coverage analysis'.
self initializeTestJob: testSize
]
{ #category : 'logging' }
MTProgressBarLogger >> logStartEvaluating: aMethodMutation with: testSize [
self mutantJob title: 'Evaluating ' , aMethodMutation printString.
self initializeTestJob: testSize
]
{ #category : 'logging' }
MTProgressBarLogger >> logStartInitialTestRun: testSize [
mainJob title: 'Mutation Testing: Initial test run'.
self initializeTestJob: testSize
]
{ #category : 'logging' }
MTProgressBarLogger >> logStartMutationEvaluation: mutants [
mainJob title: 'Mutation Testing: Evaluating mutants'.
self initializeMutantJob: mutants size
]
{ #category : 'logging' }
MTProgressBarLogger >> logStartMutationGeneration: methodSize [
mainJob title: 'Mutation Testing: Generating mutants'.
self initializeMethodJob: methodSize
]
{ #category : 'logging' }
MTProgressBarLogger >> logTotalNumberOfMutations: mutations [
"[ :job |
job title: mutations size asString , ' total mutations generated' ]
asJob run"
]
{ #category : 'accessing' }
MTProgressBarLogger >> methodJob [
^ methodJob
]
{ #category : 'accessing' }
MTProgressBarLogger >> mutantJob [
^ mutantJob
]
{ #category : 'dependencies' }
MTProgressBarLogger >> release [
methodJob ifNotNil: [ self methodJob cleanupAfterRunning ].
mutantJob ifNotNil: [ self mutantJob cleanupAfterRunning ].
testJob ifNotNil: [ self testJob cleanupAfterRunning ].
mainJob ifNotNil: [ mainJob cleanupAfterRunning ]
]
{ #category : 'accessing' }
MTProgressBarLogger >> testJob [
^ testJob
]