mirror of
https://github.com/brycedrennan/imaginAIry
synced 2024-10-31 03:20:40 +00:00
c7a822d701
- --init-image accepts urls - cleanup command line code
20 lines
637 B
Python
20 lines
637 B
Python
import pytest
|
|
|
|
from imaginairy import LazyLoadingImage
|
|
from imaginairy.schema import InvalidUrlError
|
|
from tests import TESTS_FOLDER
|
|
|
|
|
|
def test_lazy_load_image():
|
|
with pytest.raises(ValueError, match=r".*specify a url or filepath.*"):
|
|
LazyLoadingImage()
|
|
|
|
with pytest.raises(FileNotFoundError, match=r".*File does not exist.*"):
|
|
LazyLoadingImage(filepath="/tmp/bterpojirewpdfsn/ergqgr")
|
|
|
|
with pytest.raises(InvalidUrlError):
|
|
LazyLoadingImage(url="/tmp/bterpojirewpdfsn/ergqgr")
|
|
|
|
img = LazyLoadingImage(filepath=f"{TESTS_FOLDER}/data/beach_at_sainte_adresse.jpg")
|
|
assert img.size == (1686, 1246)
|