mirror of
https://github.com/rasterio/rasterio.git
synced 2026-01-25 14:10:17 +00:00
51 lines
1.4 KiB
Python
51 lines
1.4 KiB
Python
"""Tests of GDAL and PROJ data finding"""
|
|
|
|
import os.path
|
|
|
|
import pytest
|
|
|
|
import rasterio
|
|
from rasterio._env import GDALDataFinder, PROJDataFinder
|
|
from .conftest import requires_gdal_lt_3
|
|
from rasterio.rio.main import main_group
|
|
|
|
|
|
@requires_gdal_lt_3
|
|
@pytest.mark.wheel
|
|
def test_gdal_data():
|
|
"""Get GDAL data path from a wheel"""
|
|
assert GDALDataFinder().search() == os.path.join(os.path.dirname(rasterio.__file__), 'gdal_data')
|
|
|
|
|
|
def test_gdal_data_find_file():
|
|
"""Find_file shouldn't raise any exceptions"""
|
|
GDALDataFinder().find_file("header.dxf")
|
|
|
|
|
|
@requires_gdal_lt_3
|
|
@pytest.mark.wheel
|
|
def test_proj_data():
|
|
"""Get GDAL data path from a wheel"""
|
|
assert PROJDataFinder().search() == os.path.join(os.path.dirname(rasterio.__file__), 'proj_data')
|
|
|
|
|
|
def test_proj_data_has_data():
|
|
"""has_data shouldn't raise any exceptions"""
|
|
PROJDataFinder().has_data()
|
|
|
|
|
|
@requires_gdal_lt_3
|
|
@pytest.mark.wheel
|
|
def test_env_gdal_data(runner):
|
|
result = runner.invoke(main_group, ['env', '--gdal-data'])
|
|
assert result.exit_code == 0
|
|
assert result.output.strip() == os.path.join(os.path.dirname(rasterio.__file__), 'gdal_data')
|
|
|
|
|
|
@requires_gdal_lt_3
|
|
@pytest.mark.wheel
|
|
def test_env_proj_data(runner):
|
|
result = runner.invoke(main_group, ['env', '--proj-data'])
|
|
assert result.exit_code == 0
|
|
assert result.output.strip() == os.path.join(os.path.dirname(rasterio.__file__), 'proj_data')
|