mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-15 20:06:28 +03:00
52 lines
1.2 KiB
Python
52 lines
1.2 KiB
Python
from helper import unittest, PillowTestCase
|
|
|
|
from PIL import Image, DdsImagePlugin
|
|
|
|
TEST_FILE_DXT1 = "Tests/images/dxt1-rgb-4bbp-noalpha_MipMaps-1.dds"
|
|
TEST_FILE_DXT5 = "Tests/images/dxt5-argb-8bbp-interpolatedalpha_MipMaps-1.dds"
|
|
|
|
|
|
class TestFileCur(PillowTestCase):
|
|
|
|
def test_sanity_dxt1(self):
|
|
im = Image.open(TEST_FILE_DXT1)
|
|
|
|
self.assertEqual(im.format, "DDS")
|
|
self.assertEqual(im.mode, "RGBA")
|
|
self.assertEqual(im.size, (256, 256))
|
|
self.assertIsInstance(im, DdsImagePlugin.DdsImageFile)
|
|
|
|
def test_sanity_dxt5(self):
|
|
im = Image.open(TEST_FILE_DXT5)
|
|
|
|
self.assertEqual(im.format, "DDS")
|
|
self.assertEqual(im.mode, "RGBA")
|
|
self.assertEqual(im.size, (256, 256))
|
|
self.assertIsInstance(im, DdsImagePlugin.DdsImageFile)
|
|
|
|
def test__validate_true(self):
|
|
# Arrange
|
|
prefix = b"DDS etc"
|
|
|
|
# Act
|
|
output = DdsImagePlugin._validate(prefix)
|
|
|
|
# Assert
|
|
self.assertTrue(output)
|
|
|
|
def test__validate_false(self):
|
|
# Arrange
|
|
prefix = b"something invalid"
|
|
|
|
# Act
|
|
output = DdsImagePlugin._validate(prefix)
|
|
|
|
# Assert
|
|
self.assertFalse(output)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|
|
|
|
# End of file
|