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
|
PYTHON = python
.PHONY: docs build
OS := $(shell uname)
run: compile_ext
@thumbor -l debug -d -c thumbor/thumbor.conf
run-prod: compile_ext
@thumbor -l error -c thumbor/thumbor.conf
setup:
@$(PYTHON) -m pip install -e .[tests]
@echo "\n\nYou are strongly recommended to run 'pre-commit install'\n"
compile_ext build:
@$(PYTHON) setup.py build_ext -i
test: build redis
@$(MAKE) unit coverage
@$(MAKE) integration_run
@$(MAKE) flake
@$(MAKE) kill_redis
ci_test: build
@echo "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
@echo "TORNADO IS `python -c 'import tornado; import inspect; print(inspect.getfile(tornado))'`"
@echo "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
@if [ "$$LINT_TEST" ]; then $(MAKE) flake; elif [ -z "$$INTEGRATION_TEST" ]; then $(MAKE) unit coverage; else $(MAKE) integration_run; fi
integration_run integration int:
@pytest -sv integration_tests/ -p no:tldr
pint pintegration:
@pytest -sv integration_tests/ -p no:tldr -n `nproc`
coverage:
@coverage report -m --fail-under=10
unit:
@pytest -n `nproc` --cov=thumbor tests/
sequential-unit:
@pytest -sv --junit-xml=test-results/unit/results.xml --cov=thumbor tests/
kill_redis:
@-redis-cli -p 6668 -a hey_you shutdown
@-redis-cli -p 26379 -a hey_you shutdown
@-rm /tmp/redis-sentinel.conf 2>/dev/null
redis: kill_redis
@cp redis-sentinel.conf /tmp/redis-sentinel.conf
@redis-server redis.conf ; sleep 1
@redis-server /tmp/redis-sentinel.conf --sentinel ; sleep 1
@redis-cli -p 6668 -a hey_you info
format:
@black .
flake:
@flake8 --config .flake8
pylint:
@pylint --load-plugins=pylint.extensions.no_self_use thumbor tests
setup_docs:
@$(PYTHON) -m pip install -r docs/requirements.txt
build_docs:
@cd docs && make html
docs:
@sphinx-reload --host 0.0.0.0 --port 5555 docs/
sample_images:
convert -delay 100 -size 100x100 gradient:blue gradient:red -loop 0 integration_tests/imgs/animated.gif
convert -size 100x100 gradient:blue integration_tests/imgs/gradient.jpg
convert -size 100x100 gradient:blue integration_tests/imgs/gradient.gif
convert -size 100x100 gradient:blue integration_tests/imgs/gradient.webp
convert -size 100x100 gradient:gray -colorspace gray integration_tests/imgs/grayscale.jpg
convert -size 100x100 gradient:blue -depth 16 integration_tests/imgs/16bit.png
convert -size 100x100 gradient:blue -colorspace CMYK integration_tests/imgs/cmyk.jpg
convert -size 100x100 xc:none -fill gradient:blue -draw "circle 50,50 50,1" -depth 8 integration_tests/imgs/rgba.png
convert -size 100x100 xc:none -fill gradient:blue -draw "circle 50,50 50,1" -interlace PNG -depth 8 integration_tests/imgs/rgba-interlaced.png
convert -size 16383x16383 canvas:blue tests/fixtures/images/16383x16383.png
convert -size 16384x16384 canvas:blue tests/fixtures/images/16384x16384.png
convert -size 9643x10328 canvas:blue tests/fixtures/images/9643x10328.jpg
convert -size 1x1 canvas:white png24:tests/fixtures/images/1x1.png
cp integration_tests/imgs/animated.gif tests/fixtures/images/animated.gif
convert -size 20x20 gradient:blue tests/fixtures/images/20x20.jpg
echo "" > tests/fixtures/images/image_invalid.jpg
convert -size 300x400 gradient:blue tests/fixtures/images/image.jpg
convert -delay 100 -size 100x100 gradient:blue tests/fixtures/images/animated-one-frame.gif
cp integration_tests/imgs/grayscale.jpg tests/fixtures/images/grayscale.jpg
cp integration_tests/imgs/cmyk.jpg tests/fixtures/images/cmyk.jpg
convert -size 100x100 gradient:blue -depth 8 tests/fixtures/images/gradient_8bit.tif
convert -size 100x100 gradient:blue tests/fixtures/images/gradient_lsb_16bperchannel.tif
convert -size 100x100 gradient:blue -define tiff:endian=msb tests/fixtures/images/gradient_msb_16bperchannel.tif
curl -s https://upload.wikimedia.org/wikipedia/en/4/4a/Commons-logo.svg -o tests/fixtures/images/Commons-logo.svg
sed 's/width="1024" height="1376"/width="10in" height="13in"/g' tests/fixtures/images/Commons-logo.svg > tests/fixtures/images/Commons-logo-inches.svg
curl -s https://upload.wikimedia.org/wikipedia/commons/3/3e/10_years_of_Wikipedia_by_Guillaume_Paumier.jpg -o tests/fixtures/images/10_years_of_Wikipedia_by_Guillaume_Paumier.jpg
convert tests/fixtures/images/10_years_of_Wikipedia_by_Guillaume_Paumier.jpg -orient LeftBottom tests/fixtures/images/10_years_of_Wikipedia_by_Guillaume_Paumier.jpg
curl -s https://upload.wikimedia.org/wikipedia/commons/6/6d/Christophe_Henner_-_June_2016.jpg -o tests/fixtures/images/Christophe_Henner_-_June_2016.jpg
curl -s https://upload.wikimedia.org/wikipedia/commons/3/31/Giunchedi%2C_Filippo_January_2015_01.jpg -o tests/fixtures/images/Giunchedi%2C_Filippo_January_2015_01.jpg
curl -s https://upload.wikimedia.org/wikipedia/commons/2/2c/Rotating_earth_%28large%29.gif -o tests/fixtures/images/Rotating_earth_\(large\).gif
convert tests/fixtures/images/Giunchedi%2C_Filippo_January_2015_01.jpg -colorspace CMYK tests/fixtures/images/Giunchedi%2C_Filippo_January_2015_01-cmyk.jpg
convert tests/fixtures/images/Giunchedi%2C_Filippo_January_2015_01.jpg tests/fixtures/images/Giunchedi%2C_Filippo_January_2015_01.png
convert tests/fixtures/images/Giunchedi%2C_Filippo_January_2015_01.jpg -colorspace gray tests/fixtures/images/Giunchedi%2C_Filippo_January_2015_01-grayscale.jpg
convert tests/fixtures/images/image.jpg -define jpeg:q-table=tests/fixtures/images/qtables.xml tests/fixtures/images/invalid_quantization.jpg
convert tests/fixtures/images/image.jpg tests/fixtures/images/image.webp
convert logo: tests/fixtures/images/no_face.jpg
cp tests/fixtures/images/image.jpg tests/fixtures/images/image.jpg%3Fts%3D1
cp tests/fixtures/images/image.jpg tests/fixtures/images/image
cp tests/fixtures/images/image.jpg tests/fixtures/images/image.jpg%23something
cp tests/fixtures/images/image.jpg tests/fixtures/images/image%20space.jpg
cp tests/fixtures/images/image.jpg tests/fixtures/images/15967251_212831_19242645_%D0%90%D0%B3%D0%B0%D1%82%D0%B0%D0%B2%D0%97%D0%BE%D0%BE%D0%BF%D0%B0%D1%80%D0%BA%D0%B5.jpg
cp tests/fixtures/images/image.jpg tests/fixtures/images/15967251_212831_19242645_АгатавЗоопарке.jpg
cp tests/fixtures/images/image.jpg tests/fixtures/images/maracujá.jpg
cp tests/fixtures/images/image.jpg tests/fixtures/images/alabama1_ap620%C3%A9.jpg
cp tests/fixtures/images/image.jpg tests/fixtures/images/alabama1_ap620é.jpg
mkdir -p tests/fixtures/result_storages/v2/im/ag/
cp tests/fixtures/images/image.jpg tests/fixtures/result_storages/v2/im/ag/image.jpg
mkdir -p tests/fixtures/filters
curl -s https://upload.wikimedia.org/wikipedia/commons/thumb/2/25/Katherine_Maher.jpg/800px-Katherine_Maher.jpg -o tests/fixtures/filters/source.jpg
convert tests/fixtures/filters/source.jpg -quality 10 tests/fixtures/filters/quality-10%.jpg
convert tests/fixtures/filters/source.jpg -rotate 180 tests/fixtures/filters/rotate.jpg
convert tests/fixtures/filters/source.jpg -blur 4x2 tests/fixtures/filters/blur.jpg
convert tests/fixtures/filters/source.jpg -blur 8x8 tests/fixtures/filters/blur2.jpg
convert tests/fixtures/filters/source.jpg -blur 150x150 tests/fixtures/filters/blur3.jpg
convert tests/fixtures/filters/source.jpg -brightness-contrast 20x0 tests/fixtures/filters/brightness.jpg
convert tests/fixtures/filters/source.jpg -brightness-contrast 0x20 tests/fixtures/filters/contrast.jpg
convert tests/fixtures/filters/source.jpg -gamma 1.1,1.02,1.04 tests/fixtures/filters/rgb.jpg
curl -s https://upload.wikimedia.org/wikipedia/commons/8/81/Wikimedia-logo.svg -o tests/fixtures/filters/watermark.svg
convert tests/fixtures/filters/watermark.svg -transparent white -resize 30x30 tests/fixtures/filters/watermark.png
curl -s https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/Guido-portrait-2014.jpg/800px-Guido-portrait-2014.jpg -o tests/fixtures/filters/800px-Guido-portrait-2014.jpg
curl -s https://upload.wikimedia.org/wikipedia/commons/thumb/6/6d/Christophe_Henner_-_June_2016.jpg/800px-Christophe_Henner_-_June_2016.jpg -o tests/fixtures/filters/800px-Christophe_Henner_-_June_2016.jpg
curl -s https://upload.wikimedia.org/wikipedia/commons/archive/4/47/20161122122708%21PNG_transparency_demonstration_1.png | convert - -resize 300x225 tests/fixtures/filters/PNG_transparency_demonstration_1.png
convert tests/fixtures/filters/PNG_transparency_demonstration_1.png -background blue -flatten tests/fixtures/filters/PNG_transparency_demonstration_1_blue.png
convert tests/fixtures/filters/PNG_transparency_demonstration_1.png -dither None -colors 256 tests/fixtures/images/paletted-transparent.png
cp tests/fixtures/filters/source.jpg tests/fixtures/filters/800px-Katherine_Maher.jpg
cp tests/fixtures/images/Giunchedi%2C_Filippo_January_2015_01.jpg tests/fixtures/filters/Giunchedi%2C_Filippo_January_2015_01.jpg
cp tests/fixtures/filters/watermark.png tests/fixtures/images/watermark.png
# the watermark filter's logic is too complicated to reproduce with IM, the watermark test images can't be generated here
# similarly, the noise, colorize, redeye and fill filters generate output too unique to be reproduce with IM and can't be generated here
test-docker-build: test-docker-39-build test-docker310-build test-docker311-build test-docker312-build test-docker313-build
test-docker-run: test-docker-39-run test-docker-310-run test-docker311-run test-docker312-run test-docker313-run
test-docker-publish: test-docker-39-publish test-docker-310-publish test-docker311-publish test-docker312-publish test-docker313-publish
test-docker-39-build:
@docker build -f TestDockerfile --build-arg PYTHON_VERSION=3.9 -t thumbor-test-39 .
test-docker-39-run:
@docker run -v "$$(pwd):/app" thumbororg/thumbor-test:39 make compile_ext redis sequential-unit integration flake
test-docker-39-publish:
@docker image tag thumbor-test-39:latest thumbororg/thumbor-test:39
@docker push thumbororg/thumbor-test:39
test-docker-310-build:
@docker build -f TestDockerfile --build-arg PYTHON_VERSION=3.10 -t thumbor-test-310 .
test-docker-310-run:
@docker run -v "$$(pwd):/app" thumbororg/thumbor-test:310 make compile_ext redis sequential-unit integration flake
test-docker-310-publish:
@docker image tag thumbor-test-310:latest thumbororg/thumbor-test:310
@docker push thumbororg/thumbor-test:310
test-docker-311-build:
@docker build -f TestDockerfile --build-arg PYTHON_VERSION=3.11 -t thumbor-test-311 .
test-docker-311-run:
@docker run -v "$$(pwd):/app" thumbororg/thumbor-test:311 make compile_ext redis sequential-unit integration flake
test-docker-311-publish:
@docker image tag thumbor-test-311:latest thumbororg/thumbor-test:311
@docker push thumbororg/thumbor-test:311
test-docker-312-build:
@docker build -f TestDockerfile --build-arg PYTHON_VERSION=3.12 -t thumbor-test-312 .
test-docker-312-run:
@docker run -v "$$(pwd):/app" thumbororg/thumbor-test:312 make compile_ext redis sequential-unit integration flake
test-docker-312-publish:
@docker image tag thumbor-test-312:latest thumbororg/thumbor-test:312
@docker push thumbororg/thumbor-test:312
test-docker-313-build:
@docker build -f TestDockerfile --build-arg PYTHON_VERSION=3.13 -t thumbor-test-313 .
test-docker-313-run:
@docker run -v "$$(pwd):/app" thumbororg/thumbor-test:313 make compile_ext redis sequential-unit integration flake
test-docker-313-publish:
@docker image tag thumbor-test-313:latest thumbororg/thumbor-test:313
@docker push thumbororg/thumbor-test:313
publish:
@python setup.py sdist
@twine upload dist/*
@rm -rf dist/
|