Pillow/Tests/test_file_bufrstub.py

48 lines
1.2 KiB
Python
Raw Normal View History

2017-03-01 12:20:18 +03:00
from helper import unittest, PillowTestCase, hopper
2015-07-03 08:03:25 +03:00
from PIL import BufrStubImagePlugin, Image
TEST_FILE = "Tests/images/gfs.t06z.rassda.tm00.bufr_d"
2015-07-03 08:03:25 +03:00
class TestFileBufrStub(PillowTestCase):
def test_open(self):
# Act
im = Image.open(TEST_FILE)
# Assert
self.assertEqual(im.format, "BUFR")
# Dummy data from the stub
self.assertEqual(im.mode, "F")
self.assertEqual(im.size, (1, 1))
2015-07-03 08:03:25 +03:00
def test_invalid_file(self):
# Arrange
2015-07-03 09:22:56 +03:00
invalid_file = "Tests/images/flower.jpg"
# Act / Assert
2015-07-03 09:22:56 +03:00
self.assertRaises(SyntaxError,
lambda:
BufrStubImagePlugin.BufrStubImageFile(invalid_file))
2015-07-03 08:03:25 +03:00
def test_load(self):
# Arrange
im = Image.open(TEST_FILE)
# Act / Assert: stub cannot load without an implemented handler
2017-03-05 10:14:44 +03:00
self.assertRaises(IOError, im.load)
2017-03-01 12:20:18 +03:00
def test_save(self):
# Arrange
2017-03-01 12:20:18 +03:00
im = hopper()
tmpfile = self.tempfile("temp.bufr")
# Act / Assert: stub cannot save without an implemented handler
2017-03-01 12:20:18 +03:00
self.assertRaises(IOError, lambda: im.save(tmpfile))
2015-07-03 08:03:25 +03:00
if __name__ == '__main__':
unittest.main()