mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +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.
68 lines
2.0 KiB
Python
68 lines
2.0 KiB
Python
from .helper import PillowTestCase, hopper
|
|
|
|
|
|
class TestImageGetColors(PillowTestCase):
|
|
|
|
def test_getcolors(self):
|
|
|
|
def getcolors(mode, limit=None):
|
|
im = hopper(mode)
|
|
if limit:
|
|
colors = im.getcolors(limit)
|
|
else:
|
|
colors = im.getcolors()
|
|
if colors:
|
|
return len(colors)
|
|
return None
|
|
|
|
self.assertEqual(getcolors("1"), 2)
|
|
self.assertEqual(getcolors("L"), 255)
|
|
self.assertEqual(getcolors("I"), 255)
|
|
self.assertEqual(getcolors("F"), 255)
|
|
self.assertEqual(getcolors("P"), 90) # fixed palette
|
|
self.assertIsNone(getcolors("RGB"))
|
|
self.assertIsNone(getcolors("RGBA"))
|
|
self.assertIsNone(getcolors("CMYK"))
|
|
self.assertIsNone(getcolors("YCbCr"))
|
|
|
|
self.assertIsNone(getcolors("L", 128))
|
|
self.assertEqual(getcolors("L", 1024), 255)
|
|
|
|
self.assertIsNone(getcolors("RGB", 8192))
|
|
self.assertEqual(getcolors("RGB", 16384), 10100)
|
|
self.assertEqual(getcolors("RGB", 100000), 10100)
|
|
|
|
self.assertEqual(getcolors("RGBA", 16384), 10100)
|
|
self.assertEqual(getcolors("CMYK", 16384), 10100)
|
|
self.assertEqual(getcolors("YCbCr", 16384), 9329)
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
def test_pack(self):
|
|
# Pack problems for small tables (@PIL209)
|
|
|
|
im = hopper().quantize(3).convert("RGB")
|
|
|
|
expected = [(4039, (172, 166, 181)),
|
|
(4385, (124, 113, 134)),
|
|
(7960, (31, 20, 33))]
|
|
|
|
A = im.getcolors(maxcolors=2)
|
|
self.assertIsNone(A)
|
|
|
|
A = im.getcolors(maxcolors=3)
|
|
A.sort()
|
|
self.assertEqual(A, expected)
|
|
|
|
A = im.getcolors(maxcolors=4)
|
|
A.sort()
|
|
self.assertEqual(A, expected)
|
|
|
|
A = im.getcolors(maxcolors=8)
|
|
A.sort()
|
|
self.assertEqual(A, expected)
|
|
|
|
A = im.getcolors(maxcolors=16)
|
|
A.sort()
|
|
self.assertEqual(A, expected)
|