forked from DevLyon/mixter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun
executable file
·393 lines (315 loc) · 7.33 KB
/
run
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
#!/bin/bash
testsNbByStep=( 4 1 4 4 2 )
masterBranch="origin/master"
testBranch="test"
solutionBranch="solution"
workshopBranch="workshop"
referenceBranch=""
MessageColor='\033[0;32m'
CancelMessageColor='\033[0m'
function switchRunnerIfWindows() {
case "$(uname -s)" in
CYGWIN*|MINGW*|MSYS*)
echo 'Windows detected => Use run.bat'
./run.bat
exit
;;
esac
}
function askLanguage() {
while true; do
read -p "Language (js, csharp, java, php) ? " response
case "$response" in
"js")
selectedLanguage=$response
referenceBranch="origin/js/v2"
break
;;
"csharp")
selectedLanguage=$response
referenceBranch="origin/csharp/v2.3"
break
;;
"java")
selectedLanguage=$response
referenceBranch="origin/java/v2.1"
break
;;
"php")
selectedLanguage=$response
referenceBranch="origin/php/v2"
break
;;
esac
done
}
function clean() {
echo "Clean repository..."
git clean -d -x -f > /dev/null
git reset --hard HEAD > /dev/null
git checkout master > /dev/null
git branch -D $testBranch > /dev/null 2>&1
git branch -D $solutionBranch > /dev/null 2>&1
git branch -D $workshopBranch > /dev/null 2>&1
git branch | grep -e '^\s*workshop-step[0-9]$' | xargs git branch -D > /dev/null 2>&1
git tag --list | grep -e '^step[0-9]$' | xargs git tag -d > /dev/null 2>&1
git tag --list | grep -e '^step[0-9]-test[0-9]$' | xargs git tag -d > /dev/null 2>&1
}
stepNb=${#testsNbByStep[@]}
currentStep=1
currentTestOfStep=1
nextStep=1
nextTestOfStep=1
currentTestTag=""
nextTestTag=""
currentStepTag=""
nextStepTag=""
hasNextTestForCurrentStep=false
hasNextStep=false
function updateCurrentTestTag(){
currentTestTag="step${currentStep}-test${currentTestOfStep}"
}
function updateNextTestTag(){
if [ $currentStep -le $stepNb ] && [ ${testsNbByStep[$currentStep-1]} -le $currentTestOfStep ]
then
nextStep=$(($currentStep + 1))
nextTestOfStep=1
nextTestTag="step${nextStep}-test1"
else
nextTestOfStep=$(($currentTestOfStep + 1))
nextTestTag="step${currentStep}-test${nextTestOfStep}"
fi
}
function updateCurrentStepTag(){
currentStepTag="step${currentStep}"
}
function updateNextStepTag(){
nextStep=$(($currentStep + 1))
nextStepTag="step${nextStep}"
}
function updateHasNextTestForCurrentStep(){
if [ $currentStep -le $stepNb ] && [ $currentTestOfStep -lt ${testsNbByStep[$currentStep-1]} ]
then
hasNextTestForCurrentStep=true
else
hasNextTestForCurrentStep=false
fi
}
function updateHasNextStep(){
if [ $currentStep -lt $stepNb ]
then
hasNextStep=true
else
hasNextStep=false
fi
}
function updateTagVariables(){
updateCurrentTestTag
updateNextTestTag
updateCurrentStepTag
updateNextStepTag
updateHasNextTestForCurrentStep
updateHasNextStep
}
function nextTest(){
if [ ${testsNbByStep[$currentStep-1]} -le $currentTestOfStep ]
then
currentStep=$(($currentStep + 1))
currentTestOfStep=1
else
currentTestOfStep=$(($currentTestOfStep + 1))
fi
updateTagVariables
}
function resetTestCounter(){
currentStep=1
currentTestOfStep=1
updateTagVariables
}
function addStepNavigationCommand(){
tag=$1
stepNum=$2
cat << EOF > ./jumpToNextStep
#!/bin/bash
git add -A
git commit -m "Abort test"
git checkout -b ${workshopBranch}-${tag} ${tag}
git merge ${tag}-test1 > /dev/null
git checkout --ours .
git add .
git commit -m "Merge with test branch"
echo ""
echo ""
printf '$MessageColor'
cat stepsDoc/step${stepNum}.txt
printf '$CancelMessageColor'
echo ""
echo ""
EOF
chmod +x ./jumpToNextStep
git add jumpToNextStep > /dev/null
git commit -m "Add step navigation commands" > /dev/null
}
function addEndStepNavigationCommand(){
cat << EOF > ./jumpToNextStep
#!/bin/bash
printf '$MessageColor'
echo ""
echo ""
cat stepsDoc/end.txt
echo ""
echo ""
printf '$CancelMessageColor'
EOF
chmod +x ./jumpToNextStep
git add jumpToNextStep > /dev/null
git commit -m "Add end commands" > /dev/null
}
function pickCommitForSolution(){
line="$1"
hash="$(echo $line | cut -d' ' -f1)"
printf "."
if [[ $line == *" KO]"* ]] && [ $currentTestOfStep -eq 1 ]
then
if [ $hasNextStep = true ]
then
addStepNavigationCommand $nextStepTag $nextStep
else
addEndStepNavigationCommand
fi
fi
git cherry-pick $hash > /dev/null
if [[ $line == *" KO]"* ]] && [ $currentTestOfStep -eq 1 ]
then
git tag $currentStepTag > /dev/null
echo "${currentStepTag} Ok"
fi
if [[ $line == *" KO]"* ]]
then
nextTest
fi
}
function initializeSolutionBranch() {
echo "Initialize solution branch"
resetTestCounter
git checkout -b $solutionBranch $masterBranch > /dev/null
git log $referenceBranch --pretty=tformat:'%h %s' --reverse -E HEAD.. | while read line
do pickCommitForSolution "$line"
done
echo "Done"
}
function addNavigationCommand(){
tag=$1
stepNum=$2
testNum=$3
cat << EOF > ./next
#!/bin/bash
git add -A
git commit -m "Resolve test"
git merge $tag
EOF
if [ $testNum -eq 1 ]
then
cat << EOF >> ./next
echo ""
echo ""
printf '$MessageColor'
cat stepsDoc/step${stepNum}.txt
printf '$CancelMessageColor'
echo ""
echo ""
EOF
else
cat << EOF >> ./next
printf '$MessageColor'
echo ""
echo ""
echo "========================"
echo "=== STEP $(($stepNum - 1)) - Test $testNum ==="
echo "========================"
echo ""
echo ""
printf '$CancelMessageColor'
EOF
fi
chmod +x ./next
git add next > /dev/null
git commit -m "Add test navigation commands" > /dev/null
}
function addEndNavigationCommand(){
cat << EOF > ./next
#!/bin/bash
printf '$MessageColor'
echo ""
echo ""
cat stepsDoc/end.txt
echo ""
echo ""
printf '$CancelMessageColor'
EOF
chmod +x ./next
git add next > /dev/null
git commit -m "Add end navigation commands" > /dev/null
}
function pickCommitForTest(){
line=$1
hash="$(echo $line | cut -d' ' -f1)"
printf "."
git cherry-pick $hash > /dev/null
if [[ $line == *" KO]"* ]]
then
if [ $hasNextStep = true ] || [ $hasNextTestForCurrentStep = true ]
then
addNavigationCommand $nextTestTag $nextStep $nextTestOfStep
else
addEndNavigationCommand
fi
git tag $currentTestTag > /dev/null
echo "$currentTestTag Ok"
nextTest
fi
}
function initializeTestBranch(){
echo "Initialize test branch"
resetTestCounter
git checkout -b $testBranch $masterBranch > /dev/null
git log $solutionBranch --pretty=tformat:'%h %s' --grep '[^K]\][^\[]' --grep '^[^\[]' --reverse -E HEAD.. | while read line
do pickCommitForTest "$line"
done
echo "Done"
}
function initializeWorkflow(){
echo "Initialize workspace"
resetTestCounter
git checkout -b $workshopBranch $currentTestTag
}
function customInitialize(){
[ -f ./initialize ] && ./initialize
}
function displayWarningIfNotMaster(){
currentBranchName="$(git name-rev --name-only HEAD)"
if [[ $currentBranchName != "master" ]]
then
read -p "Are you sure you want to reinit everything? All your work will be lost! (y/N) : " response
case $response in
[Yy]* ) ;;
* ) exit;;
esac
fi
}
switchRunnerIfWindows
displayWarningIfNotMaster
askLanguage
clean
initializeSolutionBranch
initializeTestBranch
initializeWorkflow
customInitialize
printf $MessageColor
echo "Koan OK"
echo ""
echo ""
cat stepsDoc/step1.txt
echo ""
echo ""
printf $CancelMessageColor