2019-02-03 18:34:53 +03:00
|
|
|
from .helper import PillowTestCase, hopper
|
2015-07-03 08:03:25 +03:00
|
|
|
|
2017-03-04 17:35:54 +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):
|
|
|
|
|
2017-03-04 17:35:54 +03:00
|
|
|
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):
|
2017-03-04 17:35:54 +03:00
|
|
|
# Arrange
|
2015-07-03 09:22:56 +03:00
|
|
|
invalid_file = "Tests/images/flower.jpg"
|
|
|
|
|
2017-03-04 17:35:54 +03:00
|
|
|
# Act / Assert
|
2015-07-03 09:22:56 +03:00
|
|
|
self.assertRaises(SyntaxError,
|
2017-09-01 14:05:40 +03:00
|
|
|
BufrStubImagePlugin.BufrStubImageFile, invalid_file)
|
2015-07-03 08:03:25 +03:00
|
|
|
|
2017-03-04 17:35:54 +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-04 17:35:54 +03:00
|
|
|
|
2017-03-01 12:20:18 +03:00
|
|
|
def test_save(self):
|
2017-03-04 17:35:54 +03:00
|
|
|
# Arrange
|
2017-03-01 12:20:18 +03:00
|
|
|
im = hopper()
|
|
|
|
tmpfile = self.tempfile("temp.bufr")
|
2017-03-04 17:35:54 +03:00
|
|
|
|
|
|
|
# Act / Assert: stub cannot save without an implemented handler
|
2017-09-01 14:05:40 +03:00
|
|
|
self.assertRaises(IOError, im.save, tmpfile)
|