]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - Makefile
Merge pull request #944 from thewilli/configure-rememberme
[github/shaarli/Shaarli.git] / Makefile
CommitLineData
2d97aa77 1# The personal, minimalist, super-fast, database free, bookmarking service.
559315ba 2# Makefile for PHP code analysis & testing, documentation and release generation
f3e89f50 3
00f98bda
V
4# Prerequisites:
5# - install Composer, either:
6# - from your distro's package manager;
7# - from the official website (https://getcomposer.org/download/);
8# - install/update test dependencies:
9# $ composer install # 1st setup
10# $ composer update
ca74886f
V
11# - install Xdebug for PHPUnit code coverage reports:
12# - see http://xdebug.org/docs/install
13# - enable in php.ini
f3e89f50 14
00f98bda 15BIN = vendor/bin
a52e8435
A
16PHP_SOURCE = index.php application tests plugins
17PHP_COMMA_SOURCE = index.php,application,tests,plugins
00f98bda 18
fc17813b 19all: static_analysis_summary check_permissions test
00f98bda
V
20
21##
22# Concise status of the project
00f98bda
V
23# These targets are non-blocking: || exit 0
24##
f3e89f50 25
00f98bda 26static_analysis_summary: code_sniffer_source copy_paste mess_detector_summary
ca74886f 27 @echo
00f98bda
V
28
29##
30# PHP_CodeSniffer
00f98bda 31# Detects PHP syntax errors
00f98bda
V
32# Documentation (usage, output formatting):
33# - http://pear.php.net/manual/en/package.php.php-codesniffer.usage.php
34# - http://pear.php.net/manual/en/package.php.php-codesniffer.reporting.php
35##
f3e89f50 36
00f98bda
V
37code_sniffer: code_sniffer_full
38
3e25f245
V
39### - errors filtered by coding standard: PEAR, PSR1, PSR2, Zend...
40PHPCS_%:
41 @$(BIN)/phpcs $(PHP_SOURCE) --report-full --report-width=200 --standard=$*
42
f3e89f50 43### - errors by Git author
00f98bda
V
44code_sniffer_blame:
45 @$(BIN)/phpcs $(PHP_SOURCE) --report-gitblame
46
f3e89f50 47### - all errors/warnings
00f98bda
V
48code_sniffer_full:
49 @$(BIN)/phpcs $(PHP_SOURCE) --report-full --report-width=200
50
f3e89f50 51### - errors grouped by kind
00f98bda
V
52code_sniffer_source:
53 @$(BIN)/phpcs $(PHP_SOURCE) --report-source || exit 0
54
55##
56# PHP Copy/Paste Detector
00f98bda 57# Detects code redundancy
00f98bda
V
58# Documentation: https://github.com/sebastianbergmann/phpcpd
59##
f3e89f50 60
00f98bda
V
61copy_paste:
62 @echo "-----------------------"
63 @echo "PHP COPY/PASTE DETECTOR"
64 @echo "-----------------------"
65 @$(BIN)/phpcpd $(PHP_SOURCE) || exit 0
66 @echo
67
68##
69# PHP Mess Detector
00f98bda 70# Detects PHP syntax errors, sorted by category
00f98bda 71# Rules documentation: http://phpmd.org/rules/index.html
f3e89f50 72##
ca74886f 73MESS_DETECTOR_RULES = cleancode,codesize,controversial,design,naming,unusedcode
f3e89f50 74
00f98bda
V
75mess_title:
76 @echo "-----------------"
77 @echo "PHP MESS DETECTOR"
78 @echo "-----------------"
79
f3e89f50 80### - all warnings
00f98bda 81mess_detector: mess_title
ca74886f 82 @$(BIN)/phpmd $(PHP_COMMA_SOURCE) text $(MESS_DETECTOR_RULES) | sed 's_.*\/__'
00f98bda 83
f3e89f50 84### - all warnings + HTML output contains links to PHPMD's documentation
00f98bda 85mess_detector_html:
ca74886f 86 @$(BIN)/phpmd $(PHP_COMMA_SOURCE) html $(MESS_DETECTOR_RULES) \
00f98bda
V
87 --reportfile phpmd.html || exit 0
88
f3e89f50 89### - warnings grouped by message, sorted by descending frequency order
00f98bda
V
90mess_detector_grouped: mess_title
91 @$(BIN)/phpmd $(PHP_SOURCE) text $(MESS_DETECTOR_RULES) \
92 | cut -f 2 | sort | uniq -c | sort -nr
93
f3e89f50 94### - summary: number of warnings by rule set
00f98bda
V
95mess_detector_summary: mess_title
96 @for rule in $$(echo $(MESS_DETECTOR_RULES) | tr ',' ' '); do \
ca74886f 97 warnings=$$($(BIN)/phpmd $(PHP_COMMA_SOURCE) text $$rule | wc -l); \
00f98bda
V
98 printf "$$warnings\t$$rule\n"; \
99 done;
1acc87ee 100
fc17813b
V
101##
102# Checks source file & script permissions
103##
104check_permissions:
105 @echo "----------------------"
106 @echo "Check file permissions"
107 @echo "----------------------"
108 @for file in `git ls-files`; do \
109 if [ -x $$file ]; then \
110 errors=true; \
111 echo "$${file} is executable"; \
112 fi \
113 done; [ -z $$errors ] || false
114
ca74886f
V
115##
116# PHPUnit
117# Runs unitary and functional tests
118# Generates an HTML coverage report if Xdebug is enabled
119#
120# See phpunit.xml for configuration
121# https://phpunit.de/manual/current/en/appendixes.configuration.html
122##
d0ce99e5 123test:
ca74886f
V
124 @echo "-------"
125 @echo "PHPUNIT"
126 @echo "-------"
6c7d6864
A
127 @mkdir -p sandbox coverage
128 @$(BIN)/phpunit --coverage-php coverage/main.cov --testsuite unit-tests
129
130locale_test_%:
131 @UT_LOCALE=$*.utf8 \
132 $(BIN)/phpunit \
133 --coverage-php coverage/$(firstword $(subst _, ,$*)).cov \
134 --bootstrap tests/languages/bootstrap.php \
135 --testsuite language-$(firstword $(subst _, ,$*))
136
137all_tests: test locale_test_de_DE locale_test_en_US locale_test_fr_FR
138 @$(BIN)/phpcov merge --html coverage coverage
139 @# --text doesn't work with phpunit 4.* (v5 requires PHP 5.6)
140 @#$(BIN)/phpcov merge --text coverage/txt coverage
ca74886f 141
559315ba
V
142##
143# Custom release archive generation
144#
145# For each tagged revision, GitHub provides tar and zip archives that correspond
146# to the output of git-archive
147#
148# These targets produce similar archives, featuring 3rd-party dependencies
149# to ease deployment on shared hosting.
150##
151ARCHIVE_VERSION := shaarli-$$(git describe)-full
ca0ed5ca 152ARCHIVE_PREFIX=Shaarli/
559315ba
V
153
154release_archive: release_tar release_zip
155
156### download 3rd-party PHP libraries
157composer_dependencies: clean
eaed9ce8 158 composer install --no-dev --prefer-dist
559315ba
V
159 find vendor/ -name ".git" -type d -exec rm -rf {} +
160
161### generate a release tarball and include 3rd-party dependencies
29712e90 162release_tar: composer_dependencies doc_html
ca0ed5ca
V
163 git archive --prefix=$(ARCHIVE_PREFIX) -o $(ARCHIVE_VERSION).tar HEAD
164 tar rvf $(ARCHIVE_VERSION).tar --transform "s|^vendor|$(ARCHIVE_PREFIX)vendor|" vendor/
29712e90 165 tar rvf $(ARCHIVE_VERSION).tar --transform "s|^doc/html|$(ARCHIVE_PREFIX)doc/html|" doc/html/
ca0ed5ca 166 gzip $(ARCHIVE_VERSION).tar
559315ba
V
167
168### generate a release zip and include 3rd-party dependencies
29712e90 169release_zip: composer_dependencies doc_html
ca0ed5ca 170 git archive --prefix=$(ARCHIVE_PREFIX) -o $(ARCHIVE_VERSION).zip -9 HEAD
29712e90
V
171 mkdir -p $(ARCHIVE_PREFIX)/{doc,vendor}
172 rsync -a doc/html/ $(ARCHIVE_PREFIX)doc/html/
173 zip -r $(ARCHIVE_VERSION).zip $(ARCHIVE_PREFIX)doc/
ca0ed5ca
V
174 rsync -a vendor/ $(ARCHIVE_PREFIX)vendor/
175 zip -r $(ARCHIVE_VERSION).zip $(ARCHIVE_PREFIX)vendor/
176 rm -rf $(ARCHIVE_PREFIX)
559315ba 177
1acc87ee 178##
179# Targets for repository and documentation maintenance
f3e89f50 180##
181
182### remove all unversioned files
1acc87ee 183clean:
d0ce99e5 184 @git clean -df
4bf35ba5 185 @rm -rf sandbox
1acc87ee 186
3ee5c697
V
187### generate the AUTHORS file from Git commit information
188authors:
189 @cp .github/mailmap .mailmap
190 @git shortlog -sne > AUTHORS
191 @rm .mailmap
192
05af6f53
V
193### generate Doxygen documentation
194doxygen: clean
195 @rm -rf doxygen
196 @( cat Doxyfile ; echo "PROJECT_NUMBER=`git describe`" ) | doxygen -
197
82af78b2 198### Convert local markdown documentation to HTML
992af0b9
V
199#
200# For all pages:
992af0b9 201# - convert GitHub-flavoured relative links to standard Markdown
53ed6d7d 202# - generate html documentation with mkdocs
992af0b9 203htmlpages:
53ed6d7d 204 python3 -m venv venv/
205 bash -c 'source venv/bin/activate; \
206 pip install mkdocs; \
207 mkdocs build'
208 find doc/html/ -type f -exec chmod a-x '{}' \;
209 rm -r venv
210
f47aa40c 211doc_html: authors htmlpages