Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cosmetic changes to unit test fixtures #212

Merged
merged 1 commit into from
Feb 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
143 changes: 63 additions & 80 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,125 +34,132 @@


@pytest.fixture()
def files_dir():
return Path(__file__).parent.parent/'data'/'REDEDGE-MX'
def rededge_files_dir():
return Path(__file__).parent.parent / 'data' / 'REDEDGE-MX'


@pytest.fixture()
def altum_files_dir():
return Path(__file__).parent.parent/'data'/'ALTUM'
def panel_rededge_file_list(rededge_files_dir: Path):
return glob.glob(str(rededge_files_dir / 'IMG_0001_*.tif'))


@pytest.fixture()
def ten_band_files_dir():
return Path(__file__).parent.parent/'data'/'REDEDGE-MX-DUAL'
def non_panel_rededge_file_list(rededge_files_dir: Path):
return glob.glob(str(rededge_files_dir / 'IMG_0020_*.tif'))


@pytest.fixture()
def panel_rededge_file_list(files_dir: Path):
return glob.glob(str(files_dir/'IMG_0001_*.tif'))
def bad_file_list(rededge_files_dir: Path):
file1 = str(rededge_files_dir / 'IMG_0020_1.tif')
file2 = str(rededge_files_dir / 'IMG_0001_1.tif')
return [file1, file2]


@pytest.fixture()
def non_panel_rededge_file_list(files_dir: Path):
return glob.glob(str(files_dir/'IMG_0020_*.tif'))
def panel_rededge_capture(panel_rededge_file_list):
return capture.Capture.from_filelist(panel_rededge_file_list)


@pytest.fixture()
def bad_file_list(files_dir: Path):
file1 = str(files_dir/'IMG_0020_1.tif')
file2 = str(files_dir/'IMG_0001_1.tif')
return [file1, file2]
def non_panel_rededge_capture(non_panel_rededge_file_list):
return capture.Capture.from_filelist(non_panel_rededge_file_list)


@pytest.fixture()
def panel_altum_file_list(altum_files_dir):
return glob.glob(str(altum_files_dir/'IMG_0000_*.tif'))
def img(rededge_files_dir: Path):
return image.Image(str(rededge_files_dir / 'IMG_0001_1.tif'))


@pytest.fixture()
def panel_rededge_capture(panel_rededge_file_list):
return capture.Capture.from_filelist(panel_rededge_file_list)
def img2(rededge_files_dir: Path):
return image.Image(str(rededge_files_dir / 'IMG_0001_2.tif'))


@pytest.fixture()
def non_panel_rededge_capture(non_panel_rededge_file_list):
return capture.Capture.from_filelist(non_panel_rededge_file_list)
def ten_band_files_dir():
return Path(__file__).parent.parent / 'data' / 'REDEDGE-MX-DUAL'


@pytest.fixture()
def panel_10band_rededge_file_list(ten_band_files_dir: Path):
return glob.glob(str(ten_band_files_dir/'IMG_0000_*.tif'))
return glob.glob(str(ten_band_files_dir / 'IMG_0000_*.tif'))


@pytest.fixture()
def flight_10band_rededge_file_list(ten_band_files_dir: Path):
return glob.glob(str(ten_band_files_dir/'IMG_0431_*.tif'))
return glob.glob(str(ten_band_files_dir / 'IMG_0431_*.tif'))


@pytest.fixture()
def panel_altum_capture(panel_altum_file_list):
imgs = [image.Image(fle) for fle in panel_altum_file_list]
return capture.Capture(imgs)
def panel_10band_rededge_capture(panel_10band_rededge_file_list):
return capture.Capture.from_filelist(panel_10band_rededge_file_list)


@pytest.fixture()
def non_panel_altum_file_list(altum_files_dir: Path):
return glob.glob(str(altum_files_dir/'IMG_0021_*.tif'))
def flight_10band_rededge_capture(flight_10band_rededge_file_list):
return capture.Capture.from_filelist(flight_10band_rededge_file_list)


@pytest.fixture()
def non_panel_altum_capture(non_panel_altum_file_list):
imgs = [image.Image(fle) for fle in non_panel_altum_file_list]
return capture.Capture(imgs)
def panel_image_name(rededge_files_dir: Path):
return str(rededge_files_dir / 'IMG_0001_1.tif')


@pytest.fixture()
def panel_image_name():
image_path = Path(__file__).parent.parent/'data'/'REDEDGE-MX'
return str(image_path/'IMG_0001_1.tif')
def panel_image_name_red(rededge_files_dir: Path):
return str(rededge_files_dir / 'IMG_0001_2.tif')


@pytest.fixture()
def panel_image_name_red():
image_path = Path(__file__).parent.parent/'data'/'REDEDGE-MX'
return str(image_path/'IMG_0001_2.tif')
def flight_image_name(rededge_files_dir: Path):
return str(rededge_files_dir / 'IMG_0020_1.tif')


@pytest.fixture()
def flight_image_name():
image_path = Path(__file__).parent.parent/'data'/'REDEDGE-MX'
return str(image_path/'IMG_0020_1.tif')
def altum_files_dir():
return Path(__file__).parent.parent / 'data' / 'ALTUM'


@pytest.fixture()
def altum_panel_image_name(altum_files_dir: Path):
return str(altum_files_dir/'IMG_0000_1.tif')
def panel_altum_file_list(altum_files_dir):
return glob.glob(str(altum_files_dir / 'IMG_0000_*.tif'))


@pytest.fixture()
def altum_lwir_image_name(altum_files_dir: Path):
return str(altum_files_dir/'IMG_0000_6.tif')
def panel_altum_capture(panel_altum_file_list):
imgs = [image.Image(fle) for fle in panel_altum_file_list]
return capture.Capture(imgs)


@pytest.fixture()
def altum_flight_image_name(altum_files_dir: Path):
return str(altum_files_dir/'IMG_0021_1.tif')
def non_panel_altum_file_list(altum_files_dir: Path):
return glob.glob(str(altum_files_dir / 'IMG_0021_*.tif'))


@pytest.fixture()
def non_panel_altum_capture(non_panel_altum_file_list):
imgs = [image.Image(fle) for fle in non_panel_altum_file_list]
return capture.Capture(imgs)


@pytest.fixture()
def altum_panel_image_name(altum_files_dir: Path):
return str(altum_files_dir / 'IMG_0000_1.tif')


@pytest.fixture()
def img(files_dir: Path):
return image.Image(str(files_dir/'IMG_0001_1.tif'))
def altum_lwir_image_name(altum_files_dir: Path):
return str(altum_files_dir / 'IMG_0000_6.tif')


@pytest.fixture()
def img2(files_dir: Path):
return image.Image(str(files_dir/'IMG_0001_2.tif'))
def altum_flight_image_name(altum_files_dir: Path):
return str(altum_files_dir / 'IMG_0021_1.tif')


@pytest.fixture()
def panel_altum_file_name(altum_files_dir):
return str(altum_files_dir/'IMG_0000_1.tif')
return str(altum_files_dir / 'IMG_0000_1.tif')


@pytest.fixture()
Expand All @@ -167,48 +174,24 @@ def altum_flight_image(altum_flight_image_name):

@pytest.fixture()
def non_existant_file_name(altum_files_dir: Path):
return str(altum_files_dir/'NOFILE.tif')
return str(altum_files_dir / 'NOFILE.tif')


@pytest.fixture()
def altum_lwir_image(altum_files_dir: Path):
return image.Image(str(altum_files_dir/'IMG_0000_6.tif'))
return image.Image(str(altum_files_dir / 'IMG_0000_6.tif'))


@pytest.fixture()
def meta():
image_path = Path(__file__).parent.parent/'data'/'REDEDGE-MX'/'IMG_0001_1.tif'
return metadata.Metadata(str(image_path))
def meta(rededge_files_dir: Path):
return metadata.Metadata(str(rededge_files_dir / 'IMG_0001_1.tif'))


@pytest.fixture()
def meta_v3():
image_path = Path(__file__).parent.parent/'data'/'REDEDGE-MX'
return metadata.Metadata(str(image_path/'IMG_0020_4.tif'))


@pytest.fixture()
def meta_bad_exposure():
image_path = Path(__file__).parent.parent/'data'/'REDEDGE-MX'
return metadata.Metadata(str(image_path/'IMG_0020_1.tif'))
def meta_bad_exposure(rededge_files_dir: Path):
return metadata.Metadata(str(rededge_files_dir / 'IMG_0020_1.tif'))


@pytest.fixture()
def meta_altum_dls2(altum_flight_image_name):
return metadata.Metadata(altum_flight_image_name)


@pytest.fixture()
def bad_dls2_horiz_irr_image():
image_path = Path(__file__).parent.parent/'data'/'ALTUM'
return image.Image(str(image_path/'IMG_0021_1.tif'))


@pytest.fixture()
def panel_10band_rededge_capture(panel_10band_rededge_file_list):
return capture.Capture.from_filelist(panel_10band_rededge_file_list)


@pytest.fixture()
def flight_10band_rededge_capture(flight_10band_rededge_file_list):
return capture.Capture.from_filelist(flight_10band_rededge_file_list)
2 changes: 1 addition & 1 deletion tests/test_imageset.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

@pytest.fixture()
def files_dir():
return Path(__file__).parent.parent/'data'/'REDEDGE-MX'
return Path(__file__).parent.parent / 'data' / 'REDEDGE-MX'


progress_val = 0.0
Expand Down
Loading