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

Add skip for when kernel is not readable #70

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
16 changes: 16 additions & 0 deletions tests/test_vmimage.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,24 @@

from extractcode import vmimage

def is_kernel_readable():
"""
Check if the kernel is readable by testing access to /boot/vmlinuz-*.
Return True if readable, False otherwise.
"""
if not os.name == "posix":
return False # Skip on non-Linux systems

try:
kernels = list(Path("/boot").glob("vmlinuz-*"))
if not kernels:
return False # No kernel found
return all(os.access(kern, os.R_OK) for kern in kernels)
except Exception:
return False # Kernel check failed

@pytest.mark.skipif(not on_linux, reason='Only linux supports image extraction')
@pytest.mark.skipif(not is_kernel_readable(), reason="Kernel not readable")
class TestExtractVmImage(BaseArchiveTestCase):
test_data_dir = os.path.join(os.path.dirname(__file__), 'data')

Expand Down
Loading