File size: 27,869 Bytes
12d2e9e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 |
"""
Copyright 2021, Dana-Farber Cancer Institute and Weill Cornell Medicine
License: GNU GPL 2.0
"""
import glob
import os
import platform
import subprocess
import sys
import tempfile
import urllib
import zipfile
from pathlib import Path
from unittest.mock import MagicMock, patch
import javabridge
import jpype
import pytest
from pathml.preprocessing.tilestitcher import (
BFConvertExecutionError,
BFConvertSetupError,
FileCollectionError,
ImageStitchingOperationError,
ImageWritingError,
JVMInitializationError,
QuPathClassImportError,
TIFFParsingError,
TileStitcher,
)
from pathml.utils import setup_qupath
@pytest.mark.exclude
@pytest.fixture(scope="module")
def tile_stitcher():
# Attempt to shutdown JavaBridge-based JVM if running
try:
javabridge.kill_vm()
print("Javabridge vm terminated before starting TileStitcher")
except Exception as e:
print(f"No running JavaBridge JVM found: {e}")
# Setup QuPath
qupath_home = setup_qupath("../../tools/qupath")
os.environ["QUPATH_HOME"] = qupath_home
print(os.environ["JAVA_HOME"])
# Construct path to QuPath jars
qupath_jars_dir = os.path.join(qupath_home, "lib", "app")
qupath_jars = glob.glob(os.path.join(qupath_jars_dir, "*.jar"))
qupath_jars.append(os.path.join(qupath_jars_dir, "libopenslide-jni.so"))
bfconvert_dir = "./"
stitcher = TileStitcher(qupath_jarpath=qupath_jars, bfconvert_dir=bfconvert_dir)
yield stitcher
# Teardown code
try:
javabridge.kill_vm()
print("Javabridge vm terminated in teardown")
except Exception as e:
print(f"Error during JVM teardown: {e}")
@pytest.mark.exclude
@pytest.fixture(scope="module")
def java_home():
return os.environ.get("JAVA_HOME")
@pytest.mark.exclude
@pytest.fixture
def output_file_path(tmp_path):
# tmp_path is a pytest fixture that provides a temporary directory unique to the test invocation
output_path = tmp_path / "output"
yield str(output_path)
# Teardown: Remove the file after the test
if output_path.exists():
output_path.unlink()
@pytest.mark.exclude
@pytest.fixture
def mock_jpype_startJVM(monkeypatch):
monkeypatch.setattr(jpype, "startJVM", MagicMock())
@pytest.mark.exclude
@pytest.fixture
def mock_jpype_shutdownJVM(monkeypatch):
monkeypatch.setattr(jpype, "shutdownJVM", MagicMock())
@pytest.mark.exclude
def test_jvm_startup(tile_stitcher):
assert jpype.isJVMStarted(), "JVM should start when TileStitcher is initialized"
@pytest.mark.exclude
def test_jvm_start_with_default_options(tile_stitcher):
assert jpype.isJVMStarted(), "JVM should have started with default options."
@pytest.mark.exclude
def test_parse_region_exception(tile_stitcher):
filename = "dummy_file.tif"
with pytest.raises(TIFFParsingError) as exc_info:
tile_stitcher.parseRegion(filename)
assert "Error checking TIFF file dummy_file.tif:" in str(exc_info.value)
@pytest.mark.exclude
@pytest.mark.parametrize(
"memory, expected_memory_option",
[
("512m", "-Xmx512m"),
("1g", "-Xmx1g"),
("2048m", "-Xmx2048m"),
# Add more memory options if needed
],
)
def test_format_jvm_options_memory(memory, expected_memory_option, tile_stitcher):
result = tile_stitcher.format_jvm_options([], memory)
assert result[0] == expected_memory_option
@pytest.mark.exclude
@pytest.mark.parametrize(
"qupath_jars, expected_classpath_suffix",
[
([], ""),
(
["/path/to/jar1.jar", "/path/to/jar2.jar"],
"/path/to/jar1.jar:/path/to/jar2.jar",
),
(
["C:\\path\\to\\jar1.jar", "C:\\path\\to\\jar2.jar"],
"C:\\path\\to\\jar1.jar;C:\\path\\to\\jar2.jar", # Adjusted to use backslashes and semicolon for Windows
),
],
)
def test_format_jvm_options_classpath(
qupath_jars, expected_classpath_suffix, tile_stitcher, monkeypatch
):
os_name = "nt" if any("C:\\" in jar for jar in qupath_jars) else "posix"
monkeypatch.setattr(
platform, "system", lambda: "Windows" if os_name == "nt" else "Linux"
)
monkeypatch.setattr(os, "pathsep", ";" if os_name == "nt" else ":")
_, class_path_option = tile_stitcher.format_jvm_options(qupath_jars, "512m")
expected_classpath = "-Djava.class.path=" + expected_classpath_suffix
assert class_path_option == expected_classpath
@pytest.mark.exclude
def test_collect_tif_files(tile_stitcher):
# Assuming a directory with one tif file for testing
dir_path = "some_directory"
os.makedirs(dir_path, exist_ok=True)
with open(os.path.join(dir_path, "test.tif"), "w") as f:
f.write("test content")
files = tile_stitcher._collect_tif_files(dir_path)
assert len(files) == 1
assert "test.tif" in files[0]
os.remove(os.path.join(dir_path, "test.tif"))
os.rmdir(dir_path)
@pytest.mark.exclude
def test_checkTIFF_valid(tile_stitcher, tmp_path):
# Create a mock TIFF file
tiff_path = tmp_path / "mock.tiff"
tiff_path.write_bytes(b"II*\x00") # Little-endian TIFF signature
# assert tile_stitcher.checkTIFF(tiff_path) == True
assert tile_stitcher.checkTIFF(tiff_path)
@pytest.mark.exclude
def test_checkTIFF_invalid(tile_stitcher, tmp_path):
# Create a mock non-TIFF file
txt_path = tmp_path / "mock.txt"
txt_path.write_text("Not a TIFF file")
# assert tile_stitcher.checkTIFF(txt_path) == False
assert not tile_stitcher.checkTIFF(txt_path)
@pytest.mark.exclude
def test_checkTIFF_nonexistent(tile_stitcher):
with pytest.raises(TIFFParsingError):
tile_stitcher.checkTIFF("nonexistent_file.tiff")
@pytest.mark.exclude
def test_check_tiff(tile_stitcher):
valid_tif = b"II*"
invalid_tif = b"abcd"
with open("valid_test.tif", "wb") as f:
f.write(valid_tif)
with open("invalid_test.tif", "wb") as f:
f.write(invalid_tif)
assert tile_stitcher.checkTIFF("tests/testdata/smalltif.tif") is True
assert tile_stitcher.checkTIFF("invalid_test.tif") is False
os.remove("valid_test.tif")
os.remove("invalid_test.tif")
@pytest.mark.exclude
def test_get_outfile_ending_with_ome_tif(tile_stitcher):
result, result_jpype = tile_stitcher._get_outfile("test.ome.tif")
assert result == "test.ome.tif"
assert str(result_jpype) == "test.ome.tif"
@pytest.mark.exclude
def test_get_outfile_without_ending(tile_stitcher):
result, result_jpype = tile_stitcher._get_outfile("test.ome.tif")
assert result == "test.ome.tif"
assert str(result_jpype) == "test.ome.tif"
@pytest.mark.exclude
# Dummy function to "fake" the file download
def mocked_urlretrieve(*args, **kwargs):
pass
@pytest.mark.exclude
# Mock Zip class as provided
class MockZip:
def __init__(self, zip_path, *args, **kwargs):
self.zip_path = zip_path
def __enter__(self):
with zipfile.ZipFile(self.zip_path, "w") as zipf:
zipf.writestr("dummy.txt", "This is dummy file content")
return self
def __exit__(self, *args):
os.remove(self.zip_path)
def extractall(self, path, *args, **kwargs):
bftools_dir = os.path.join(path, "bftools")
if not os.path.exists(bftools_dir):
os.makedirs(bftools_dir)
with open(os.path.join(bftools_dir, "bfconvert"), "w") as f:
f.write("#!/bin/sh\necho 'dummy bfconvert'")
with open(os.path.join(bftools_dir, "bf.sh"), "w") as f:
f.write("#!/bin/sh\necho 'dummy bf.sh'")
@pytest.mark.exclude
def mock_create_zip(zip_path):
"""
Creates a mock zip file at the given path.
"""
# Create mock files to add to the ZIP
with tempfile.NamedTemporaryFile(delete=False) as tmpfile:
tmpfile.write(b"Mock file content")
# Create the mock ZIP file
with zipfile.ZipFile(zip_path, "w") as zipf:
zipf.write(tmpfile.name, "mock_file.txt")
os.unlink(tmpfile.name) # Clean up the temporary file
@pytest.mark.exclude
@pytest.fixture
def bfconvert_dir(tmp_path):
return tmp_path / "bfconvert_dir"
@pytest.mark.exclude
@pytest.fixture(scope="module")
def bfconvert_setup(tile_stitcher, tmp_path_factory):
bfconvert_dir = tmp_path_factory.mktemp("bfconvert_dir")
tile_stitcher.setup_bfconvert(str(bfconvert_dir))
return bfconvert_dir
@pytest.mark.exclude
def test_bfconvert_path_setup(tile_stitcher, bfconvert_setup):
bfconvert_path = tile_stitcher.setup_bfconvert(str(bfconvert_setup))
assert str(bfconvert_path) == str(
tile_stitcher.bfconvert_path
), "bfconvert path not set correctly"
assert os.path.exists(
bfconvert_path
), "bfconvert executable does not exist at the expected path"
@pytest.mark.exclude
def test_bfconvert_version_output(tile_stitcher, bfconvert_setup, capsys):
tile_stitcher.setup_bfconvert(str(bfconvert_setup))
captured = capsys.readouterr()
assert (
"bfconvert version:" in captured.out
), "bfconvert version not printed correctly"
# @pytest.mark.exclude
# def test_permission_error_on_directory_creation(tile_stitcher):
# if sys.platform.startswith("darwin"):
# pytest.skip("MacOS does not allow write permissions for this test", allow_module_level=True)
# with pytest.raises(BFConvertSetupError):
# tile_stitcher.setup_bfconvert("/fake/path")
@pytest.mark.exclude
@pytest.fixture
def mock_subprocess(monkeypatch):
mock = MagicMock()
monkeypatch.setattr("subprocess.check_output", mock)
monkeypatch.setattr("subprocess.run", mock)
return mock
@pytest.mark.exclude
@pytest.fixture
def mock_urlretrieve(monkeypatch):
if sys.platform.startswith("darwin"):
pytest.skip(
"MacOS does not allow write permissions for this test",
allow_module_level=True,
)
def fake_urlretrieve(url, filename):
# Simulate downloading by creating a dummy zip file at the specified filename
with zipfile.ZipFile(filename, "w") as zipf:
zipf.writestr("dummy.txt", "This is dummy content")
zipf.writestr("bftools/bfconvert", "dummy content")
zipf.writestr("bftools/bf.sh", "dummy content")
monkeypatch.setattr(urllib.request, "urlretrieve", fake_urlretrieve)
@pytest.fixture
@pytest.mark.exclude
def mock_tools_dir(tmp_path):
tools_dir = tmp_path / "tools"
tools_dir.mkdir()
return tools_dir
@pytest.mark.exclude
def test_bfconvert_failure(
mock_subprocess, mock_urlretrieve, tile_stitcher, mock_tools_dir
):
with patch(
"subprocess.check_output", side_effect=subprocess.CalledProcessError(1, "cmd")
):
with pytest.raises(BFConvertSetupError):
tile_stitcher.setup_bfconvert(str(mock_tools_dir))
@pytest.mark.exclude
def test_is_bfconvert_available_file_not_found(tile_stitcher):
with patch("subprocess.run", side_effect=FileNotFoundError()):
assert not tile_stitcher.is_bfconvert_available()
@pytest.mark.exclude
def test_run_bfconvert_error(tile_stitcher):
tile_stitcher.bfconvert_path = "dummy_path"
with patch.object(
tile_stitcher, "is_bfconvert_available", return_value=True
), patch("subprocess.run", side_effect=subprocess.CalledProcessError(1, "cmd")):
with pytest.raises(BFConvertExecutionError):
tile_stitcher.run_bfconvert("dummy_stitched_image_path.tif")
@pytest.mark.exclude
def test_is_bfconvert_available_true(tile_stitcher):
with patch(
"subprocess.run",
return_value=subprocess.CompletedProcess(args=[], returncode=0),
):
assert tile_stitcher.is_bfconvert_available() is True
@pytest.mark.exclude
def test_is_bfconvert_available_false(tile_stitcher):
with patch(
"subprocess.run",
return_value=subprocess.CompletedProcess(args=[], returncode=1),
):
assert tile_stitcher.is_bfconvert_available() is False
@pytest.mark.exclude
@pytest.mark.parametrize(
"is_available, expected_exception",
[
(False, BFConvertExecutionError),
(True, None), # No exception should be raised if bfconvert is available
],
)
def test_run_bfconvert_bfconvert_not_available(
tile_stitcher, is_available, expected_exception
):
tile_stitcher.bfconvert_path = "dummy_path"
with patch.object(
tile_stitcher, "is_bfconvert_available", return_value=is_available
), patch("subprocess.run"):
if expected_exception:
with pytest.raises(expected_exception):
tile_stitcher.run_bfconvert("dummy_stitched_image_path")
else:
tile_stitcher.run_bfconvert("dummy_stitched_image_path")
@pytest.mark.exclude
def test_run_bfconvert_custom_bfconverted_path(tile_stitcher, tmp_path):
tile_stitcher.bfconvert_path = str(tmp_path / "bfconvert")
stitched_image_path = str(tmp_path / "dummy_stitched_image_path.ome.tif")
# Create a dummy stitched image file
with open(stitched_image_path, "w") as f:
f.write("dummy content")
with patch.object(
tile_stitcher, "is_bfconvert_available", return_value=True
), patch("subprocess.run"):
tile_stitcher.run_bfconvert(
stitched_image_path, str(tmp_path / "custom_path.tif")
)
@pytest.mark.exclude
def test_run_bfconvert_success_delete_original(tile_stitcher, capsys):
tile_stitcher.bfconvert_path = "dummy_path"
stitched_image_path = "dummy_stitched_image_path.ome.tif"
# Create a dummy stitched image file
with open(stitched_image_path, "w") as f:
f.write("dummy content")
with patch.object(tile_stitcher, "is_bfconvert_available", return_value=True):
with patch("subprocess.run"):
tile_stitcher.run_bfconvert(stitched_image_path, delete_original=True)
captured = capsys.readouterr()
assert "bfconvert completed. Output file: " in captured.out
assert "Original stitched image deleted: " in captured.out
# Check if the original file was deleted
assert not os.path.exists(stitched_image_path)
@pytest.mark.exclude
def test_run_bfconvert_no_delete_original(tile_stitcher, capsys):
tile_stitcher.bfconvert_path = "dummy_path"
stitched_image_path = "dummy_stitched_image_path.ome.tif"
# Create a dummy stitched image file
with open(stitched_image_path, "w") as f:
f.write("dummy content")
with patch.object(tile_stitcher, "is_bfconvert_available", return_value=True):
with patch("subprocess.run"):
tile_stitcher.run_bfconvert(stitched_image_path, delete_original=False)
captured = capsys.readouterr()
assert "bfconvert completed. Output file: " in captured.out
assert "Original stitched image deleted: " not in captured.out
# Check if the original file still exists
assert os.path.exists(stitched_image_path)
if os.path.exists(stitched_image_path):
os.unlink(stitched_image_path)
@pytest.mark.exclude
@pytest.fixture
def sample_files():
# Paths to your sample TIF files for testing
return [
"tests/testdata/tilestitching_testdata/MISI3542i_W21-04143_bi016966_M394_OVX_LM_Scan1_[14384,29683]_component_data.tif"
]
# @pytest.fixture
# def sample_files(tmp_path):
# # Create a dummy TIFF file for testing
# file_path = tmp_path / "dummy_file.tif"
# file_path.write_text("TIFF data")
# return [str(file_path)]
@pytest.mark.exclude
def test_integration_stitching_exceptions(
tile_stitcher, sample_files, output_file_path
):
with patch.object(
tile_stitcher,
"_write_pyramidal_image_server",
side_effect=Exception("Pyramid error"),
):
with pytest.raises(ImageStitchingOperationError):
tile_stitcher.run_image_stitching(
sample_files, output_file_path, downsamples=[], separate_series=True
)
@pytest.mark.exclude
def test_integration_stitching(tile_stitcher, sample_files, output_file_path):
# Mocking the Java object returned by parse_regions
tile_stitcher.run_image_stitching(
sample_files,
output_file_path,
downsamples=[1],
separate_series=True,
)
@pytest.mark.exclude
def test_integration_stitching_nodownsamples(tile_stitcher, sample_files, tmp_path):
# Generate the output file name
output_file_path = str(tmp_path / "output_temp.ome.tif")
bfconverted_file_path = output_file_path.rsplit(".ome.tif", 1)[0] + "_separated.tif"
# Create a dummy bfconverted file to simulate existing file scenario
with open(bfconverted_file_path, "w") as f:
f.write("dummy content")
# Run the stitching process
tile_stitcher.run_image_stitching(
sample_files,
output_file_path,
downsamples=None,
separate_series=True,
)
# Check if the bfconvert path is set correctly
assert str(tile_stitcher.bfconvert_path) == str(Path("tools/bftools/bfconvert"))
# Clean up the dummy file
os.remove(bfconverted_file_path)
@pytest.mark.exclude
def test_checkTIFF_big_endian(tile_stitcher, tmp_path):
# Create a mock TIFF file with big-endian byte order
big_endian_file = tmp_path / "big_endian.tiff"
big_endian_file.write_bytes(b"MM\x00*") # Big-endian TIFF signature
assert tile_stitcher.checkTIFF(big_endian_file)
@pytest.mark.exclude
def test_setup_bfconvert_bad_zip_file(tile_stitcher, mock_tools_dir):
with patch("urllib.request.urlretrieve"), patch(
"zipfile.ZipFile", side_effect=zipfile.BadZipFile("Invalid ZIP file")
):
with pytest.raises(BFConvertSetupError):
tile_stitcher.setup_bfconvert(str(mock_tools_dir))
@pytest.mark.exclude
@pytest.mark.skipif(os.name == "nt", reason="chmod not used in windows")
def test_setup_bfconvert_permission_error_on_chmod(
tile_stitcher, mock_tools_dir, tmp_path
):
dummy_bfconvert = tmp_path / "bfconvert"
dummy_bfconvert.touch()
dummy_bf_sh = tmp_path / "bf.sh"
dummy_bf_sh.touch()
tile_stitcher.bfconvert_path = str(dummy_bfconvert)
tile_stitcher.bf_sh_path = str(dummy_bf_sh)
with patch("os.chmod", side_effect=PermissionError("Permission denied")):
with pytest.raises(BFConvertSetupError):
tile_stitcher.setup_bfconvert(str(mock_tools_dir))
@pytest.mark.exclude
def test_check_tiff_io_error(tile_stitcher):
with patch("builtins.open", side_effect=OSError("IO error occurred")):
with pytest.raises(TIFFParsingError):
tile_stitcher.checkTIFF("invalid_file.tif")
@pytest.mark.exclude
def test_start_jvm_exception(tile_stitcher, capsys):
with patch("jpype.isJVMStarted", return_value=False), patch(
"jpype.startJVM", side_effect=Exception("JVM start error")
):
with pytest.raises(JVMInitializationError):
tile_stitcher._start_jvm()
@pytest.mark.exclude
def test_import_qupath_classes_exception(tile_stitcher):
with patch("jpype.JPackage", side_effect=Exception("Import error")):
with pytest.raises(QuPathClassImportError):
tile_stitcher._import_qupath_classes()
@pytest.mark.exclude
def test_parse_region_invalid_tiff(tile_stitcher):
non_tiff_file = "non_tiff_file.txt"
with pytest.raises(TIFFParsingError):
tile_stitcher.parseRegion(non_tiff_file)
@pytest.mark.exclude
def test_run_image_stitching_with_empty_input(tile_stitcher, sample_files):
with patch.object(tile_stitcher, "_collect_tif_files", return_value=[]):
with pytest.raises(ImageStitchingOperationError):
tile_stitcher.run_image_stitching(sample_files, "output.ome.tif")
@pytest.mark.exclude
@patch("jpype.JPackage", side_effect=Exception("Import error"))
def test_import_qupath_classes_failure(mock_jpackage, tile_stitcher):
with pytest.raises(QuPathClassImportError) as exc_info:
tile_stitcher._import_qupath_classes()
assert "Failed to import QuPath classes: Import error" in str(exc_info.value)
@pytest.mark.exclude
def test_collect_tif_files_invalid_input(tile_stitcher):
with pytest.raises(FileCollectionError) as exc_info:
tile_stitcher._collect_tif_files(12345) # Invalid input
assert "Invalid input for collecting .tif files:" in str(exc_info.value)
# @pytest.mark.exclude
# @patch("os.chmod", side_effect=PermissionError("Permission denied"))
# def test_setup_bfconvert_permission_error(mock_chmod, tile_stitcher, bfconvert_dir):
# with pytest.raises(BFConvertSetupError) as exc_info:
# tile_stitcher.setup_bfconvert(bfconvert_dir)
# assert "Permission error on setting executable flag: Permission denied" in str(
# exc_info.value
# )
@pytest.mark.exclude
def test_parse_region_missing_tags(tile_stitcher):
with pytest.raises(TIFFParsingError) as exc_info:
tile_stitcher.parseRegion("tests/testdata/smalltif.tif")
assert "Required TIFF tags missing for" in str(exc_info.value)
@pytest.mark.exclude
@patch("subprocess.run")
@patch(
"pathml.preprocessing.tilestitcher.TileStitcher.is_bfconvert_available",
return_value=True,
)
def test_run_bfconvert_success(
mock_is_bfconvert_available, mock_subprocess_run, tile_stitcher, tmp_path
):
tile_stitcher.bfconvert_path = "/path/to/bfconvert"
stitched_image_path = str(tmp_path / "stitched_image.ome.tif")
bfconverted_path = str(tmp_path / "bfconverted_image.ome.tif")
# Create a dummy stitched image file to mimic the existence of a file
Path(stitched_image_path).touch()
tile_stitcher.run_bfconvert(
stitched_image_path, bfconverted_path, delete_original=False
)
mock_subprocess_run.assert_called()
@pytest.mark.exclude
@patch("subprocess.run")
@patch(
"pathml.preprocessing.tilestitcher.TileStitcher.is_bfconvert_available",
return_value=True,
)
def test_run_bfconvert_delete_original(
mock_is_bfconvert_available, mock_subprocess_run, tile_stitcher, tmp_path
):
tile_stitcher.bfconvert_path = "/path/to/bfconvert"
stitched_image_path = str(tmp_path / "stitched_image.ome.tif")
# Create a dummy stitched image file
Path(stitched_image_path).touch()
tile_stitcher.run_bfconvert(stitched_image_path, delete_original=True)
assert not Path(stitched_image_path).exists(), "Original file should be deleted."
@pytest.mark.exclude
@patch("subprocess.run")
@patch(
"pathml.preprocessing.tilestitcher.TileStitcher.is_bfconvert_available",
return_value=True,
)
def test_run_bfconvert_delete_original_print_message(
mock_is_bfconvert_available, mock_subprocess_run, tile_stitcher, tmp_path, capsys
):
tile_stitcher.bfconvert_path = "/path/to/bfconvert"
stitched_image_path = str(tmp_path / "stitched_image.ome.tif")
# Create a dummy stitched image file
Path(stitched_image_path).touch()
tile_stitcher.run_bfconvert(stitched_image_path, delete_original=True)
captured = capsys.readouterr()
assert (
"Original stitched image deleted:" in captured.out
), "Expected deletion message not printed."
@pytest.mark.exclude
def test_toShort(tile_stitcher):
# Example bytes and their expected short value
test_cases = [
((0x01, 0x02), 0x0102),
((0xFF, 0xFF), 0xFFFF),
((0x00, 0x00), 0x0000),
((0xAB, 0xCD), 0xABCD),
]
for (byte1, byte2), expected in test_cases:
result = tile_stitcher.toShort(byte1, byte2)
assert (
result == expected
), f"Expected {expected}, got {result} for bytes {byte1}, {byte2}"
@pytest.mark.exclude
def test_collect_tif_files_success(tile_stitcher, tmp_path):
# Set up a directory with some .tif files
dir_path = tmp_path / "tif_files"
dir_path.mkdir()
(dir_path / "file1.tif").touch()
(dir_path / "file2.tif").touch()
expected_files = sorted([str(dir_path / "file1.tif"), str(dir_path / "file2.tif")])
collected_files = sorted(tile_stitcher._collect_tif_files(str(dir_path)))
assert (
collected_files == expected_files
), f"Expected {expected_files}, got {collected_files}"
@pytest.mark.exclude
def test_collect_tif_files_no_valid_files(tile_stitcher):
# A list of file names without .tif extension
invalid_files = ["file1.jpg", "file2.png", "file3.docx"]
with pytest.raises(FileCollectionError) as exc_info:
tile_stitcher._collect_tif_files(invalid_files)
assert "No valid .tif files found in the provided list." in str(exc_info.value)
@pytest.mark.exclude
@patch(
"pathml.preprocessing.tilestitcher.TileStitcher._write_pyramidal_image_server",
side_effect=ImageWritingError("Stitching error"),
)
def test_image_stitching_operation_error(mock_stitching, sample_files, tile_stitcher):
with pytest.raises(ImageStitchingOperationError) as exc_info:
# tile_stitcher.run_image_stitching("/path/to/input_dir", "output_filename.tif")
# Run the stitching process
tile_stitcher.run_image_stitching(
sample_files,
"output_filename.tif",
downsamples=-1,
separate_series=True,
)
assert "Error running image stitching: Stitching error" in str(exc_info.value)
@pytest.mark.exclude
@patch(
"pathml.preprocessing.tilestitcher.TileStitcher.is_bfconvert_available",
return_value=True,
)
@patch(
"subprocess.run", side_effect=subprocess.CalledProcessError(1, "bfconvert -version")
)
def test_bfconvert_execution_error(mock_is_available, mock_run, tile_stitcher):
with pytest.raises(BFConvertExecutionError) as exc_info:
tile_stitcher.run_bfconvert("/path/to/stitched_image.tif")
assert "Error running bfconvert command:" in str(exc_info.value)
@pytest.mark.exclude
@patch("subprocess.run", side_effect=FileNotFoundError())
def test_bfconvert_not_available(mock_run, tile_stitcher):
assert (
not tile_stitcher.is_bfconvert_available()
), "bfconvert should not be available."
@pytest.mark.exclude
@patch("jpype.shutdownJVM")
def test_tile_stitcher_shutdown(mocked_shutdown, tile_stitcher):
tile_stitcher.shutdown()
mocked_shutdown.assert_called()
@pytest.mark.exclude
def test_initialization_with_java_home_env_var(tile_stitcher, java_home, monkeypatch):
# valid_java_home = "/path/to/valid/java" # Example valid path
monkeypatch.setenv("JAVA_HOME", java_home)
new_stitcher = TileStitcher()
assert (
new_stitcher.java_home == java_home
), "JAVA_HOME environment variable not used correctly"
@pytest.mark.exclude
def test_initialization_without_java_path_or_java_home(monkeypatch):
monkeypatch.delenv("JAVA_HOME", raising=False) # Remove JAVA_HOME if it exists
with pytest.raises(JVMInitializationError):
TileStitcher()
@pytest.mark.exclude
@pytest.fixture
def mock_jpype(monkeypatch):
# Mock jpype's startJVM and isJVMStarted functions to avoid actual JVM initialization
monkeypatch.setattr("jpype.startJVM", MagicMock())
monkeypatch.setattr("jpype.isJVMStarted", MagicMock(return_value=True))
monkeypatch.setattr(
"jpype.getDefaultJVMPath", MagicMock(return_value="/mock/path/to/jvm")
)
@pytest.mark.exclude
def test_initialization_sets_java_home(mock_jpype, monkeypatch):
mock_java_path = "/mock/path/to/java"
monkeypatch.setenv("JAVA_HOME", mock_java_path)
# Ensure jpype.startJVM is not actually called
with patch("os.path.isdir", return_value=True):
stitcher = TileStitcher()
assert stitcher.java_home == mock_java_path, "JAVA_HOME not set correctly"
@pytest.mark.exclude
@patch("jpype.getDefaultJVMPath", side_effect=Exception("JVM path error"))
def test_initialization_with_invalid_java_path(mock_get_jvm_path, tmp_path):
with pytest.raises(JVMInitializationError):
TileStitcher(java_path=str(tmp_path))
|