mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-27 02:16:19 +03:00
Replace unittest with pytest
This commit is contained in:
parent
29fee8fc43
commit
eb2d6560a4
|
@ -1,31 +1,30 @@
|
||||||
import unittest
|
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
from PIL import Image, ImImagePlugin
|
from PIL import Image, ImImagePlugin
|
||||||
|
|
||||||
from .helper import PillowTestCase, assert_image_equal, hopper, is_pypy
|
from .helper import assert_image_equal, hopper, is_pypy
|
||||||
|
|
||||||
# sample im
|
# sample im
|
||||||
TEST_IM = "Tests/images/hopper.im"
|
TEST_IM = "Tests/images/hopper.im"
|
||||||
|
|
||||||
|
|
||||||
class TestFileIm(PillowTestCase):
|
def test_sanity():
|
||||||
def test_sanity(self):
|
|
||||||
with Image.open(TEST_IM) as im:
|
with Image.open(TEST_IM) as im:
|
||||||
im.load()
|
im.load()
|
||||||
self.assertEqual(im.mode, "RGB")
|
assert im.mode == "RGB"
|
||||||
self.assertEqual(im.size, (128, 128))
|
assert im.size == (128, 128)
|
||||||
self.assertEqual(im.format, "IM")
|
assert im.format == "IM"
|
||||||
|
|
||||||
@unittest.skipIf(is_pypy(), "Requires CPython")
|
|
||||||
def test_unclosed_file(self):
|
@pytest.mark.skipif(is_pypy(), reason="Requires CPython")
|
||||||
|
def test_unclosed_file():
|
||||||
def open():
|
def open():
|
||||||
im = Image.open(TEST_IM)
|
im = Image.open(TEST_IM)
|
||||||
im.load()
|
im.load()
|
||||||
|
|
||||||
pytest.warns(ResourceWarning, open)
|
pytest.warns(ResourceWarning, open)
|
||||||
|
|
||||||
def test_closed_file(self):
|
|
||||||
|
def test_closed_file():
|
||||||
def open():
|
def open():
|
||||||
im = Image.open(TEST_IM)
|
im = Image.open(TEST_IM)
|
||||||
im.load()
|
im.load()
|
||||||
|
@ -33,14 +32,16 @@ class TestFileIm(PillowTestCase):
|
||||||
|
|
||||||
pytest.warns(None, open)
|
pytest.warns(None, open)
|
||||||
|
|
||||||
def test_context_manager(self):
|
|
||||||
|
def test_context_manager():
|
||||||
def open():
|
def open():
|
||||||
with Image.open(TEST_IM) as im:
|
with Image.open(TEST_IM) as im:
|
||||||
im.load()
|
im.load()
|
||||||
|
|
||||||
pytest.warns(None, open)
|
pytest.warns(None, open)
|
||||||
|
|
||||||
def test_tell(self):
|
|
||||||
|
def test_tell():
|
||||||
# Arrange
|
# Arrange
|
||||||
with Image.open(TEST_IM) as im:
|
with Image.open(TEST_IM) as im:
|
||||||
|
|
||||||
|
@ -48,42 +49,50 @@ class TestFileIm(PillowTestCase):
|
||||||
frame = im.tell()
|
frame = im.tell()
|
||||||
|
|
||||||
# Assert
|
# Assert
|
||||||
self.assertEqual(frame, 0)
|
assert frame == 0
|
||||||
|
|
||||||
def test_n_frames(self):
|
|
||||||
|
def test_n_frames():
|
||||||
with Image.open(TEST_IM) as im:
|
with Image.open(TEST_IM) as im:
|
||||||
self.assertEqual(im.n_frames, 1)
|
assert im.n_frames == 1
|
||||||
self.assertFalse(im.is_animated)
|
assert not im.is_animated
|
||||||
|
|
||||||
def test_eoferror(self):
|
|
||||||
|
def test_eoferror():
|
||||||
with Image.open(TEST_IM) as im:
|
with Image.open(TEST_IM) as im:
|
||||||
n_frames = im.n_frames
|
n_frames = im.n_frames
|
||||||
|
|
||||||
# Test seeking past the last frame
|
# Test seeking past the last frame
|
||||||
self.assertRaises(EOFError, im.seek, n_frames)
|
with pytest.raises(EOFError):
|
||||||
self.assertLess(im.tell(), n_frames)
|
im.seek(n_frames)
|
||||||
|
assert im.tell() < n_frames
|
||||||
|
|
||||||
# Test that seeking to the last frame does not raise an error
|
# Test that seeking to the last frame does not raise an error
|
||||||
im.seek(n_frames - 1)
|
im.seek(n_frames - 1)
|
||||||
|
|
||||||
def test_roundtrip(self):
|
|
||||||
|
def test_roundtrip(tmp_path):
|
||||||
for mode in ["RGB", "P", "PA"]:
|
for mode in ["RGB", "P", "PA"]:
|
||||||
out = self.tempfile("temp.im")
|
out = str(tmp_path / "temp.im")
|
||||||
im = hopper(mode)
|
im = hopper(mode)
|
||||||
im.save(out)
|
im.save(out)
|
||||||
with Image.open(out) as reread:
|
with Image.open(out) as reread:
|
||||||
|
|
||||||
assert_image_equal(reread, im)
|
assert_image_equal(reread, im)
|
||||||
|
|
||||||
def test_save_unsupported_mode(self):
|
|
||||||
out = self.tempfile("temp.im")
|
|
||||||
im = hopper("HSV")
|
|
||||||
self.assertRaises(ValueError, im.save, out)
|
|
||||||
|
|
||||||
def test_invalid_file(self):
|
def test_save_unsupported_mode(tmp_path):
|
||||||
|
out = str(tmp_path / "temp.im")
|
||||||
|
im = hopper("HSV")
|
||||||
|
with pytest.raises(ValueError):
|
||||||
|
im.save(out)
|
||||||
|
|
||||||
|
|
||||||
|
def test_invalid_file():
|
||||||
invalid_file = "Tests/images/flower.jpg"
|
invalid_file = "Tests/images/flower.jpg"
|
||||||
|
|
||||||
self.assertRaises(SyntaxError, ImImagePlugin.ImImageFile, invalid_file)
|
with pytest.raises(SyntaxError):
|
||||||
|
ImImagePlugin.ImImageFile(invalid_file)
|
||||||
|
|
||||||
def test_number(self):
|
|
||||||
self.assertEqual(1.2, ImImagePlugin.number("1.2"))
|
def test_number():
|
||||||
|
assert ImImagePlugin.number("1.2") == 1.2
|
||||||
|
|
Loading…
Reference in New Issue
Block a user