2015-07-01 08:47:47 +03:00
|
|
|
from PIL.GimpPaletteFile import GimpPaletteFile
|
|
|
|
|
2019-07-06 23:40:53 +03:00
|
|
|
from .helper import PillowTestCase
|
|
|
|
|
2015-07-01 08:47:47 +03:00
|
|
|
|
|
|
|
class TestImage(PillowTestCase):
|
|
|
|
def test_sanity(self):
|
2019-06-13 18:54:11 +03:00
|
|
|
with open("Tests/images/test.gpl", "rb") as fp:
|
2015-07-01 08:47:47 +03:00
|
|
|
GimpPaletteFile(fp)
|
|
|
|
|
2019-06-13 18:54:11 +03:00
|
|
|
with open("Tests/images/hopper.jpg", "rb") as fp:
|
2017-09-01 14:05:40 +03:00
|
|
|
self.assertRaises(SyntaxError, GimpPaletteFile, fp)
|
2015-07-01 08:47:47 +03:00
|
|
|
|
2019-06-13 18:54:11 +03:00
|
|
|
with open("Tests/images/bad_palette_file.gpl", "rb") as fp:
|
2017-09-01 14:05:40 +03:00
|
|
|
self.assertRaises(SyntaxError, GimpPaletteFile, fp)
|
2015-07-01 14:28:34 +03:00
|
|
|
|
2019-06-13 18:54:11 +03:00
|
|
|
with open("Tests/images/bad_palette_entry.gpl", "rb") as fp:
|
2017-09-01 14:05:40 +03:00
|
|
|
self.assertRaises(ValueError, GimpPaletteFile, fp)
|
2015-07-01 14:28:34 +03:00
|
|
|
|
|
|
|
def test_get_palette(self):
|
|
|
|
# Arrange
|
2019-06-13 18:54:11 +03:00
|
|
|
with open("Tests/images/custom_gimp_palette.gpl", "rb") as fp:
|
2015-07-01 14:28:34 +03:00
|
|
|
palette_file = GimpPaletteFile(fp)
|
|
|
|
|
|
|
|
# Act
|
|
|
|
palette, mode = palette_file.getpalette()
|
|
|
|
|
|
|
|
# Assert
|
|
|
|
self.assertEqual(mode, "RGB")
|