This repository has been archived by the owner on Apr 9, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathjenkins-code-analysis.cfg
521 lines (476 loc) · 20.6 KB
/
jenkins-code-analysis.cfg
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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
# -----------------------------------------------------------------------------
# JENKINS BUILDOUT FOR CODE ANALYSIS
# -----------------------------------------------------------------------------
# This buildout needs to be extended by overriding the
# jenkins-test-directories variable. See README.txt for more details.
# -----------------------------------------------------------------------------
[buildout]
parts +=
pep8
jenkins-pep8
pyflakes
jenkins-pyflakes
flake8
jenkins-flake8
ohcount
jenkins-ohcount
clonedigger
jenkins-clonedigger
zptlint
jenkins-zptlint
i18ndude
i18nreport
jenkins-i18ndude
jenkins-i18report
jenkins-xmllint
jenkins-jslint
jenkins-jshint
jenkins-coffeelint
jenkins-csslint
jenkins-utf8-header
jenkins-code-analysis
jenkins-directory = ${buildout:directory}/parts/jenkins-test
# This value needs to be overridden in the buildout file that extends this
# buildout.
jenkins-test-directories =
# List the pep8 checks that a buildout file that extends this buildout may
# want to ignore. Add them as a comma separated list, i.e. E501,W602,E401
ignore-pep8 =
# A comma-seperated list of CSSLint rules to check (+) or ignore (-)
# Learn more about rules: https://github.com/stubbornella/csslint/wiki
csslint-ignore = adjoining-classes,floats,font-faces,font-sizes,ids,qualified-headings,unique-headings
# -----------------------------------------------------------------------------
# PEP 8 CODE ANALYSIS
# -----------------------------------------------------------------------------
# Creates a "jenkins-code-analysis-pep8" script in the bin directory of the
# buildout that runs a PEP 8 code analysis and outputs the results in a
# pep8.log file that the Jenkins violations plugin can process.
# -----------------------------------------------------------------------------
[pep8]
recipe = zc.recipe.egg
eggs =
pep8
entry-points = pep8=pep8:_main
[jenkins-pep8]
recipe = collective.recipe.template
url = https://raw.github.com/plone/buildout.jenkins/master/templates/code-analysis.sh
output = ${buildout:directory}/bin/jenkins-code-analysis-pep8
title = Pep8
bin = ${buildout:directory}/bin/pep8
log = pep8.log
before =
analyse = $(find -L ${buildout:directory}/$pkg -regex ".*\.py" | xargs -r ${:bin} --ignore=${buildout:ignore-pep8} >> ${buildout:jenkins-directory}/pep8.log.tmp)
after = $(cat ${buildout:jenkins-directory}/pep8.log.tmp|sed 's:${buildout:directory}/::' > ${buildout:jenkins-directory}/pep8.log)
mode = 755
# -----------------------------------------------------------------------------
# PYFLAKES CODE ANALYSIS
# -----------------------------------------------------------------------------
# Creates a "jenkins-code-analysis-pyflakes" script in the bin directory of the
# buildout that runs a PyFlakes code analyisis and outputs the results in
# a pyflakes.log file that the Jenkins warnings plugin can process.
# -----------------------------------------------------------------------------
[pyflakes]
recipe = zc.recipe.egg
eggs =
pyflakes
entry-points = pyflakes=pyflakes.scripts.pyflakes:main
[jenkins-pyflakes]
recipe = collective.recipe.template
url = https://raw.github.com/plone/buildout.jenkins/master/templates/code-analysis.sh
output = ${buildout:directory}/bin/jenkins-code-analysis-pyflakes
title = PyFlakes
bin = ${buildout:directory}/bin/pyflakes
log = pyflakes.log
before =
analyse = $(find -L ${buildout:directory}/$pkg -regex ".*\.py" | xargs -r ${:bin} >> ${buildout:jenkins-directory}/pyflakes.log.tmp)
after = $(cat ${buildout:jenkins-directory}/pyflakes.log.tmp|sed 's:${buildout:directory}/::' > ${buildout:jenkins-directory}/pyflakes.log)
mode = 755
# -----------------------------------------------------------------------------
# FLAKE8 CODE ANALYSIS
# -----------------------------------------------------------------------------
# Creates a "jenkins-code-analysis-flake8" script in the bin directory of the
# buildout that runs a PEP8 / PyFlakes code analyisis and outputs the results
# in a flake8.log file that the Jenkins warnings plugin can process.
# -----------------------------------------------------------------------------
[flake8]
recipe = zc.recipe.egg
eggs = flake8
entry-points = flake8=flake8.run:main
[jenkins-flake8]
recipe = collective.recipe.template
url = https://raw.github.com/plone/buildout.jenkins/master/templates/code-analysis.sh
output = ${buildout:directory}/bin/jenkins-code-analysis-flake8
title = Flake8
bin = ${buildout:directory}/bin/flake8
log = flake8.log
before =
analyse = $(find -L ${buildout:directory}/$pkg -regex ".*\.py" | xargs -r ${:bin} --ignore=${buildout:ignore-pep8} >> ${buildout:jenkins-directory}/flake8.log.tmp)
after = $(cat ${buildout:jenkins-directory}/flake8.log.tmp|sed 's:${buildout:directory}/::' > ${buildout:jenkins-directory}/flake8.log)
mode = 755
# -----------------------------------------------------------------------------
# PYLINT CODE ANALYSIS
# -----------------------------------------------------------------------------
# XXX: Commented out for now. Pylint consumes just too much resources.
#[pylint]
#recipe = zc.recipe.egg
#eggs = logilab.pylintinstaller
#extra-paths = ${instance:location}/lib/python
#entry-points = pylint=pylint.lint:Run
#arguments = sys.argv[1:]
#arguments = [
# '--output-format=parseable',
# '--zope=y',
# '--reports=y',
# '--disable-msg=E0611,F0401,W0232,E1101,C0103,C0111,R0201,W0201,R0911,R0904#,F0220,E1103,R0901,E0211,E0213,E1002,W0622',
# '--generated-members=objects',
# ] + sys.argv[1:]
# Disable messages:
#
# E0611: No name %r in module %r. Used when a name cannot be found in a module.
# F0401: Unable to import %r (%s). Used when pylint has been unable to import a module.
# W0232: Class has no __init__ method. Used when a class has no __init__ method, neither its parent classes.
# C0103: Invalid name "%s" (should match %s). Used when the name doesn't match the regular expression associated to its type (constant, variable, class...).
# C0111: Message Missing docstring Description Used when a module, function, class or method has no docstring. Some special methods like init don't necessary require a docstring. Explanation…
# R0201: Method could be a function
# W0201: Attribute %r defined outside __init__
# R0911: Too many return statements (%s/%s)
# E0211: Method has no argument
# - Reason: raises an error on zope.interface definitions
# E0213 Method should have "self" as first argument
# - Reason: raises an error on zope.interface definitions
# E1121 Too many positional arguments for function call
# - Reason: ???
# E1002 Use super on an old style class
# - Reason: super(CommentsViewlet, self).update() raises an error
# W0622 total_comments: Redefining built-in 'object'
# - Reason: top level def function will not work (e.g. for catalog indexers)
# ...
# See http://pylint-messages.wikidot.com/all-messages for a full list.
#
#
#[pylint]
#recipe = collective.recipe.template
#input = inline:
# #!/bin/sh
# if [ -s pylint.log ]; then
# rm pylint.log
# echo "Removing old pylint.log file"
# fi
# echo "Start pylint"
# PACKAGES="${buildout:jenkins-test-directories}"
# for pkg in $PACKAGES
# do
# echo "Running pylint for $pkg"
# find -L $pkg -regex ".*\.py" | xargs -r bin/pylint >> pylint.log
# done
# echo "finish"
#output = ${buildout:directory}/bin/jenkins-code-analysis-pylint
#mode = 755
# -----------------------------------------------------------------------------
# CLONEDIGGER CODE ANALYSIS
# -----------------------------------------------------------------------------
# Creates a "jenkins-code-analysis-clonedigger" script in the bin directory of
# the buildout...
# -----------------------------------------------------------------------------
[clonedigger]
recipe = zc.recipe.egg
eggs =
clonedigger
[jenkins-clonedigger]
recipe = collective.recipe.template
input = inline:
#!/bin/sh
report=${buildout:jenkins-directory}/xml-clonedigger
if [ -d $report ]; then
echo "Old clonedigger xml reports removed"
rm -rf $report
fi
echo "Start CloneDigger code analysis:"
PACKAGES="${buildout:jenkins-test-directories}"
for pkg in $PACKAGES
do
echo "Analyse $pkg"
mkdir -p $report/$pkg
${buildout:directory}/bin/clonedigger --cpd-output -o $report/$pkg/clonedigger.xml ${buildout:directory}/$pkg
done
echo "Finished."
echo ""
output = ${buildout:directory}/bin/jenkins-code-analysis-clonedigger
mode = 775
# ----------------------------------------------------------------------------
# OHCOUNT
# ----------------------------------------------------------------------------
# Creates a "jenkins-code-analysis-ohcount" script in the bin directory of the
# buildout that runs, ohcount, a source code line counter. This requires
# ohcount to be installed on the server (see
# http://pypi.python.org/pypi/ohconvert for more information.)
# The results can be included into Jenkins with the SLOCCount plugin:
# https://wiki.jenkins-ci.org/display/JENKINS/SLOCCount+Plugin
# $ sudo apt-get install ohcount
# ----------------------------------------------------------------------------
[ohcount]
recipe = zc.recipe.egg
eggs = ohconvert
[jenkins-ohcount]
recipe = collective.recipe.template
url = https://raw.github.com/plone/buildout.jenkins/master/templates/code-analysis.sh
title = OHCount
bin = ${buildout:directory}/bin/ohconvert
log = sloccount.sc
before =
analyse = $(${:bin} $pkg >> ${buildout:jenkins-directory}/sloccount.sc)
after =
output = ${buildout:directory}/bin/jenkins-code-analysis-ohcount
mode = 755
# -----------------------------------------------------------------------------
# XML LINT CODE ANALYSIS
# -----------------------------------------------------------------------------
# Creates a "jenkins-code-analysis-xmllint" script in the bin directory of the
# buildout. This requires xmllint to be installed on the system.
# -----------------------------------------------------------------------------
[jenkins-xmllint]
recipe = collective.recipe.template
url = https://raw.github.com/plone/buildout.jenkins/master/templates/code-analysis.sh
title = XMLLint
bin = xmllint
log = xmllint.log
before = $(\
command -v xmllint >/dev/null 2>&1 || { \
echo >&2 "XMLLint not found!"; \
echo "Skip XMLLint code analysis. Please make sure XMLLint is installed on your machine."; \
exit 1; \
})
analyse = $(find -L $pkg -regex ".*\.[cz]?xml|zcml" | xargs -r ${:bin} --noout 2>> ${buildout:jenkins-directory}/xmllint.log >> ${buildout:jenkins-directory}/xmllint-errors.log)
after = $(cat ${buildout:jenkins-directory}/flake8.log.tmp|sed 's:${buildout:directory}/::' > ${buildout:jenkins-directory}/flake8.log)
output = ${buildout:directory}/bin/jenkins-code-analysis-xmllint
mode = 755
# -----------------------------------------------------------------------------
# ZPT LINT CODE ANALYSIS
# -----------------------------------------------------------------------------
# Creates a "jenkins-code-analysis-zptlint" script in the bin directory of the
# buildout...TODO
# -----------------------------------------------------------------------------
[zptlint]
recipe = zc.recipe.egg
eggs =
zptlint
entry-points = zptlint=zptlint:run
[jenkins-zptlint]
recipe = collective.recipe.template
url = https://raw.github.com/plone/buildout.jenkins/master/templates/code-analysis.sh
title = ZPTLint
bin = ${buildout:directory}/bin/zptlint
log = zptlint.log
before =
analyse = $(find -L $pkg -regex ".*\.[cz]?pt" | xargs -r ${:bin} >> ${buildout:jenkins-directory}/zptlint.log)
after =
output = ${buildout:directory}/bin/jenkins-code-analysis-zptlint
mode = 755
# -----------------------------------------------------------------------------
# JAVASCRIPT CODE ANALYSIS
# -----------------------------------------------------------------------------
# Creates a "jenkins-code-analysis-jslint" script in the bin directory of the
# buildout that runs a jslint based code analysis on all javascript files.
#
# This requires jslint to be installed manually on the server.
# $ sudo apt-get install nodejs npm
# $ sudo npm install -g jslint
# -----------------------------------------------------------------------------
[jenkins-jslint]
recipe = collective.recipe.template
url = https://raw.github.com/plone/buildout.jenkins/master/templates/code-analysis.sh
title = JSLint
bin = jslint
log = jslint.log
before = $(command -v ${:bin} >/dev/null 2>&1 || { echo >&2 "JSLint not found!"; echo "Skip JSLint code analysis. Please make sure JSLint is installed on your machine."; exit 1; })
analyse = $(find -L $pkg -regex ".*\.[cz]?js" | xargs -r ${:bin} --jslint-reporter >> ${buildout:jenkins-directory}/jslint.log)
after =
output = ${buildout:directory}/bin/jenkins-code-analysis-jslint
mode = 755
# -----------------------------------------------------------------------------
# JAVASCRIPT CODE ANALYSIS
# -----------------------------------------------------------------------------
# Creates a "jenkins-code-analysis-jshint" script in the bin directory of the
# buildout that runs a jshint based code analysis on all javascript files.
# see: http://www.jshint.com/options/
#
# jslint does not return xml format, so we switched to jshint
#
# This requires jshint to be installed manually on the server.
# $ sudo apt-get install nodejs npm
# $ sudo npm install -g jshint
# -----------------------------------------------------------------------------
[jenkins-jshint]
recipe = collective.recipe.template
url = https://raw.github.com/plone/buildout.jenkins/master/templates/code-analysis.sh
title = JSHint
log = xml-jshint
bin = jshint
before =
analyse = $(\
report=${buildout:jenkins-directory}/xml-jshint; \
mkdir -p $report/$pkg; \
for jsfile in `find -L $pkg -regex ".*\.js" | xargs -r `; do \
${:bin} $jsfile >> ${buildout:jenkins-directory}/jshint.log; \
jsfilename=`echo $jsfile | awk -F\/ '{ print $NF }'`; \
${:bin} --reporter jslint $jsfile > $report/$pkg/$jsfilename.xml; \
done)
after =
output = ${buildout:directory}/bin/jenkins-code-analysis-jshint
mode = 755
# -----------------------------------------------------------------------------
# COFFEESCRIPT CODE ANALYSIS
# -----------------------------------------------------------------------------
# Creates a "jenkins-code-analysis-coffeelint" script in the bin directory of the
# buildout that runs a coffeelint based code analysis on all javascript files.
# see: http://www.coffeelint.org/
#
# This requires coffeelint to be installed manually on the server.
# $ sudo apt-get install nodejs npm
# $ sudo npm install -g coffeelint
# -----------------------------------------------------------------------------
[jenkins-coffeelint]
recipe = collective.recipe.template
input = inline:
#!/bin/bash
command -v coffeelint >/dev/null 2>&1 || {
echo >&2 "coffeelint not found!";
echo "Skip coffeelint code analysis. Please make sure coffeelint is installed on your machine.";
exit 1;
}
if [ -e ${buildout:jenkins-directory}/coffeelint.log ]; then
echo "Old coffeelint.log file removed"
rm ${buildout:jenkins-directory}/coffeelint.log
fi
report=${buildout:jenkins-directory}/xml-coffeelint
if [ -d $report ]; then
echo "Old coffeelint xml reports removed"
rm -rf $report
fi
echo "Start coffeelint code analysis:"
PACKAGES="${buildout:jenkins-test-directories}"
for pkg in $PACKAGES
do
echo "Analyse $pkg"
mkdir -p $report/$pkg
for coffeefile in `find -L $pkg -regex ".*\.coffee" | xargs -r `; do
coffeelint $coffeefile >> ${buildout:jenkins-directory}/coffeelint.log
# XXX: dollar{coffeefile##*/} does not work in template recipe
coffeefilename=`echo $coffeefile | awk -F\/ '{ print $NF }'`
coffeelint --jslint=1 $coffeefile > $report/$pkg/$coffeefilename.xml
done
done
echo "Write log to ${buildout:jenkins-directory}/coffeelint.log"
echo "Finished."
echo ""
output = ${buildout:directory}/bin/jenkins-code-analysis-coffeelint
mode = 755
# -----------------------------------------------------------------------------
# CSS CODE ANALYSIS
# -----------------------------------------------------------------------------
# Creates a "jenkins-code-analysis-csslint" script in the bin directory of the
# buildout that runs a jshint based code analysis on all css files.
#
# This requires jshint to be installed manually on the server.
# $ sudo apt-get install nodejs npm
# $ sudo npm install -g csslint
#
# XXX: CSSLint outputs "csslint: No files specified." which breaks violations
# plugin. It should return xml on --format=lint-xml as jshint does...
# -----------------------------------------------------------------------------
[jenkins-csslint]
recipe = collective.recipe.template
url = https://raw.github.com/plone/buildout.jenkins/master/templates/code-analysis.sh
title = CSSLint
log = xml-csslint
bin = csslint
before =
analyse = $(\
report=${buildout:jenkins-directory}/xml-csslint; \
mkdir -p $report/$pkg; \
for cssfile in `find -L $pkg -regex ".*\.css" | xargs -r `; do \
${:bin} --ignore=${buildout:csslint-ignore} $cssfile >> ${buildout:jenkins-directory}/csslint.log; \
cssfilename=`echo $cssfile | awk -F\/ '{ print $NF }'`; \
${:bin} --format=lint-xml --ignore=${buildout:csslint-ignore} $cssfile > $report/$pkg/$cssfilename.xml; \
done)
after =
output = ${buildout:directory}/bin/jenkins-code-analysis-csslint
mode = 755
# -----------------------------------------------------------------------------
# TRANSLATION CODE ANALYSIS
# -----------------------------------------------------------------------------
# Creates a "jenkins-code-analysis-translations" script in the bin directory
# of the buildout that runs a code analysis on all templates to find
# untranslated strings.
# -----------------------------------------------------------------------------
[i18ndude]
recipe = zc.recipe.egg
eggs =
i18ndude
[jenkins-i18ndude]
recipe = collective.recipe.template
url = https://raw.github.com/plone/buildout.jenkins/master/templates/code-analysis.sh
title = Translations
bin = ${buildout:directory}/bin/i18ndude
log = i18ndude.log
before =
analyse = $(find -L $pkg -regex ".*\.[cz]?pt" | xargs -r ${:bin} find-untranslated >> ${buildout:jenkins-directory}/i18ndude.log)
after =
output = ${buildout:directory}/bin/jenkins-code-analysis-translations
mode = 755
[i18nreport]
recipe = zc.recipe.egg
eggs = collective.i18nreport
[jenkins-i18report]
recipe = collective.recipe.template
input = inline:
#!/bin/sh
echo "Run i18nreport"
${buildout:directory}/bin/i18nreport --path=${buildout:directory} --format=html --all-languages >> ${buildout:jenkins-directory}/i18report.html
echo "Finished."
echo ""
output = ${buildout:directory}/bin/jenkins-code-analysis-i18nreport
mode = 775
# -----------------------------------------------------------------------------
# PYTHON FILES ENCODING ANALYSIS
# -----------------------------------------------------------------------------
# Creates a "jenkins-code-analysis-utf8check" script in the bin directory
# of the buildout that runs a code analysis on all python files to find
# missing coding: utf-8 headers
# -----------------------------------------------------------------------------
[jenkins-utf8-header]
recipe = collective.recipe.template
url = https://raw.github.com/plone/buildout.jenkins/master/templates/code-analysis.sh
title = UTF-8 Headers
bin = sh
log = missing-utf-8-headers.log
before =
analyse = $(find $pkg -regex ".*\.py" -exec grep -H -E -o -c "coding: utf-8" {} \; | grep 0 | cut -d":" -f1 >> ${buildout:jenkins-directory}/missing-utf8-header.log)
after =
output = ${buildout:directory}/bin/jenkins-code-analysis-utf8header
mode = 755
# -----------------------------------------------------------------------------
# CODE ANALYSIS
# -----------------------------------------------------------------------------
# Creates a "jenkins-code-analysis" script in the bin directory of the buildout
# that runs all code analysis sections at once.
# -----------------------------------------------------------------------------
[jenkins-code-analysis]
recipe = collective.recipe.template
input = inline:
#!/bin/sh
bin/jenkins-code-analysis-pep8
bin/jenkins-code-analysis-pyflakes
bin/jenkins-code-analysis-flake8
bin/jenkins-code-analysis-ohcount
bin/jenkins-code-analysis-xmllint
bin/jenkins-code-analysis-zptlint
# bin/jenkins-code-analysis-jslint
bin/jenkins-code-analysis-jshint
bin/jenkins-code-analysis-csslint
bin/jenkins-code-analysis-translations
# bin/jenkins-code-analysis-clonedigger
bin/jenkins-code-analysis-i18nreport
bin/jenkins-code-analysis-utf8header
output = ${buildout:directory}/bin/jenkins-code-analysis
mode = 755