mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
7da17ad41e
The previous test configuration made it difficult to run a single test with the pytest CLI. There were two major issues: - The Tests directory was not a package. It now includes a __init__.py file and imports from other tests modules are done with relative imports. - setup.cfg always specified the Tests directory. So even if a specific test were specified as a CLI arg, this configuration would also always include all tests. This configuration has been removed to allow specifying a single test on the command line. Contributors can now run specific tests with a single command such as: $ tox -e py37 -- Tests/test_file_pdf.py::TestFilePdf.test_rgb This makes it easy and faster to iterate on a single test failure and is very familiar to those that have previously used tox and pytest. When running tox or pytest with no arguments, they still discover and runs all tests in the Tests directory.
68 lines
1.7 KiB
Python
68 lines
1.7 KiB
Python
from .helper import unittest, PillowTestCase
|
|
|
|
from PIL import Image, PSDraw
|
|
import os
|
|
import sys
|
|
|
|
|
|
class TestPsDraw(PillowTestCase):
|
|
|
|
def _create_document(self, ps):
|
|
im = Image.open("Tests/images/hopper.ppm")
|
|
title = "hopper"
|
|
box = (1*72, 2*72, 7*72, 10*72) # in points
|
|
|
|
ps.begin_document(title)
|
|
|
|
# draw diagonal lines in a cross
|
|
ps.line((1*72, 2*72), (7*72, 10*72))
|
|
ps.line((7*72, 2*72), (1*72, 10*72))
|
|
|
|
# draw the image (75 dpi)
|
|
ps.image(box, im, 75)
|
|
ps.rectangle(box)
|
|
|
|
# draw title
|
|
ps.setfont("Courier", 36)
|
|
ps.text((3*72, 4*72), title)
|
|
|
|
ps.end_document()
|
|
|
|
def test_draw_postscript(self):
|
|
|
|
# Based on Pillow tutorial, but there is no textsize:
|
|
# https://pillow.readthedocs.io/en/latest/handbook/tutorial.html#drawing-postscript
|
|
|
|
# Arrange
|
|
tempfile = self.tempfile('temp.ps')
|
|
with open(tempfile, "wb") as fp:
|
|
# Act
|
|
ps = PSDraw.PSDraw(fp)
|
|
self._create_document(ps)
|
|
|
|
# Assert
|
|
# Check non-zero file was created
|
|
self.assertTrue(os.path.isfile(tempfile))
|
|
self.assertGreater(os.path.getsize(tempfile), 0)
|
|
|
|
def test_stdout(self):
|
|
# Temporarily redirect stdout
|
|
try:
|
|
from cStringIO import StringIO
|
|
except ImportError:
|
|
from io import StringIO
|
|
old_stdout = sys.stdout
|
|
sys.stdout = mystdout = StringIO()
|
|
|
|
ps = PSDraw.PSDraw()
|
|
self._create_document(ps)
|
|
|
|
# Reset stdout
|
|
sys.stdout = old_stdout
|
|
|
|
self.assertNotEqual(mystdout.getvalue(), "")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|