mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-01 00:17:27 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			648 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			648 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from helper import unittest, PillowTestCase
 | |
| 
 | |
| from PIL import GdImageFile
 | |
| 
 | |
| TEST_GD_FILE = "Tests/images/hopper.gd"
 | |
| 
 | |
| 
 | |
| class TestFileGd(PillowTestCase):
 | |
| 
 | |
|     def test_sanity(self):
 | |
|         im = GdImageFile.open(TEST_GD_FILE)
 | |
|         self.assertEqual(im.size, (128, 128))
 | |
|         self.assertEqual(im.format, "GD")
 | |
| 
 | |
|     def test_bad_mode(self):
 | |
|         self.assertRaises(ValueError,
 | |
|                           GdImageFile.open, TEST_GD_FILE, 'bad mode')
 | |
| 
 | |
|     def test_invalid_file(self):
 | |
|         invalid_file = "Tests/images/flower.jpg"
 | |
| 
 | |
|         self.assertRaises(IOError, GdImageFile.open, invalid_file)
 | |
| 
 | |
| 
 | |
| if __name__ == '__main__':
 | |
|     unittest.main()
 |