mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 01:47:47 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
from __future__ import annotations
 | 
						|
 | 
						|
from io import BytesIO
 | 
						|
 | 
						|
import pytest
 | 
						|
 | 
						|
from PIL import FitsImagePlugin, Image
 | 
						|
 | 
						|
from .helper import assert_image_equal, assert_image_equal_tofile, hopper
 | 
						|
 | 
						|
TEST_FILE = "Tests/images/hopper.fits"
 | 
						|
 | 
						|
 | 
						|
def test_open() -> None:
 | 
						|
    # Act
 | 
						|
    with Image.open(TEST_FILE) as im:
 | 
						|
        # Assert
 | 
						|
        assert im.format == "FITS"
 | 
						|
        assert im.size == (128, 128)
 | 
						|
        assert im.mode == "L"
 | 
						|
 | 
						|
        assert_image_equal(im, hopper("L"))
 | 
						|
 | 
						|
 | 
						|
def test_gzip1() -> None:
 | 
						|
    with Image.open("Tests/images/m13_gzip.fits") as im:
 | 
						|
        assert_image_equal_tofile(im, "Tests/images/m13.fits")
 | 
						|
 | 
						|
 | 
						|
def test_invalid_file() -> None:
 | 
						|
    # Arrange
 | 
						|
    invalid_file = "Tests/images/flower.jpg"
 | 
						|
 | 
						|
    # Act / Assert
 | 
						|
    with pytest.raises(SyntaxError):
 | 
						|
        FitsImagePlugin.FitsImageFile(invalid_file)
 | 
						|
 | 
						|
 | 
						|
def test_truncated_fits() -> None:
 | 
						|
    # No END to headers
 | 
						|
    image_data = b"SIMPLE  =                    T" + b" " * 50 + b"TRUNCATE"
 | 
						|
    with pytest.raises(OSError):
 | 
						|
        FitsImagePlugin.FitsImageFile(BytesIO(image_data))
 | 
						|
 | 
						|
 | 
						|
def test_naxis_zero() -> None:
 | 
						|
    # This test image has been manually hexedited
 | 
						|
    # to set the number of data axes to zero
 | 
						|
    with pytest.raises(ValueError):
 | 
						|
        with Image.open("Tests/images/hopper_naxis_zero.fits"):
 | 
						|
            pass
 | 
						|
 | 
						|
 | 
						|
def test_comment() -> None:
 | 
						|
    image_data = b"SIMPLE  =                    T / comment string"
 | 
						|
    with pytest.raises(OSError):
 | 
						|
        FitsImagePlugin.FitsImageFile(BytesIO(image_data))
 |