mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 20:27:06 +03:00
4de5477b61
With the introduction and use of pytest, it is simple and easy to execute specific tests in isolation through documented command line arguments. Either by specifying the module path or through the `-k EXPRESSION` argument. There is no longer any need to provide the boilerplate: if __name__ == '__main__': unittest.main() To every test file. It is simply noise. The pattern remains in test files that aren't named with `test_*` as those files are not discovered and executed by pytest by default.
63 lines
1.8 KiB
Python
63 lines
1.8 KiB
Python
from .helper import PillowTestCase
|
|
|
|
from PIL import Image
|
|
|
|
PIL151 = b"""
|
|
#define basic_width 32
|
|
#define basic_height 32
|
|
static char basic_bits[] = {
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00,
|
|
0x80, 0xff, 0xff, 0x01, 0x40, 0x00, 0x00, 0x02,
|
|
0x20, 0x00, 0x00, 0x04, 0x20, 0x00, 0x00, 0x04, 0x10, 0x00, 0x00, 0x08,
|
|
0x10, 0x00, 0x00, 0x08,
|
|
0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08,
|
|
0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08,
|
|
0x20, 0x00, 0x00, 0x04,
|
|
0x20, 0x00, 0x00, 0x04, 0x40, 0x00, 0x00, 0x02,
|
|
0x80, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00,
|
|
};
|
|
"""
|
|
|
|
|
|
class TestFileXbm(PillowTestCase):
|
|
|
|
def test_pil151(self):
|
|
from io import BytesIO
|
|
|
|
im = Image.open(BytesIO(PIL151))
|
|
|
|
im.load()
|
|
self.assertEqual(im.mode, '1')
|
|
self.assertEqual(im.size, (32, 32))
|
|
|
|
def test_open(self):
|
|
# Arrange
|
|
# Created with `convert hopper.png hopper.xbm`
|
|
filename = "Tests/images/hopper.xbm"
|
|
|
|
# Act
|
|
im = Image.open(filename)
|
|
|
|
# Assert
|
|
self.assertEqual(im.mode, '1')
|
|
self.assertEqual(im.size, (128, 128))
|
|
|
|
def test_open_filename_with_underscore(self):
|
|
# Arrange
|
|
# Created with `convert hopper.png hopper_underscore.xbm`
|
|
filename = "Tests/images/hopper_underscore.xbm"
|
|
|
|
# Act
|
|
im = Image.open(filename)
|
|
|
|
# Assert
|
|
self.assertEqual(im.mode, '1')
|
|
self.assertEqual(im.size, (128, 128))
|