-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
No-Issue Signed-off-by: James Tanner <[email protected]>
- Loading branch information
Showing
1 changed file
with
127 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
# (c) 2012-2023, Ansible by Red Hat | ||
# | ||
# This file is part of Ansible Galaxy | ||
# | ||
# Ansible Galaxy is free software: you can redistribute it and/or modify | ||
# it under the terms of the Apache License as published by | ||
# the Apache Software Foundation, either version 2 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# Ansible Galaxy is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# Apache License for more details. | ||
# | ||
# You should have received a copy of the Apache License | ||
# along with Galaxy. If not, see <http://www.apache.org/licenses/>. | ||
|
||
import logging | ||
import os | ||
import shutil | ||
import tarfile | ||
import tempfile | ||
import unittest | ||
from io import BytesIO | ||
|
||
import pytest | ||
|
||
from galaxy_importer.collection import _extract_archive | ||
from galaxy_importer.exceptions import ImporterError | ||
|
||
log = logging.getLogger(__name__) | ||
|
||
|
||
|
||
class TestCollectionExtractArchive(unittest.TestCase): | ||
def test_valid_archive(self): | ||
# Create a valid tar archive with no invalid paths | ||
archive_data = b'testfile content' | ||
archive_file = BytesIO() | ||
with tarfile.open(fileobj=archive_file, mode="w") as tf: | ||
tarinfo = tarfile.TarInfo("testfile") | ||
tarinfo.size = len(archive_data) | ||
tf.addfile(tarinfo, BytesIO(archive_data)) | ||
archive_file.seek(0) | ||
|
||
# Create a temporary extraction directory | ||
extract_dir = tempfile.mkdtemp(prefix='collection-archive-extract-test-') | ||
os.makedirs(extract_dir, exist_ok=True) | ||
|
||
try: | ||
# Test extracting the archive | ||
_extract_archive(archive_file, extract_dir) | ||
finally: | ||
pass | ||
|
||
# Assert that the extracted file exists | ||
extracted_file_path = os.path.join(extract_dir, "testfile") | ||
self.assertTrue(os.path.isfile(extracted_file_path)) | ||
|
||
# Clean up the temporary extraction directory | ||
shutil.rmtree(extract_dir) | ||
|
||
def test_invalid_path_with_absolute_path(self): | ||
# Create an archive with invalid paths | ||
archive_data = b'testfile content' | ||
archive_file = BytesIO() | ||
with tarfile.open(fileobj=archive_file, mode="w") as tf: | ||
tarinfo = tarfile.TarInfo("/invalid_path") | ||
tarinfo.size = len(archive_data) | ||
tf.addfile(tarinfo, BytesIO(archive_data)) | ||
archive_file.seek(0) | ||
|
||
# Create a temporary extraction directory | ||
extract_dir = tempfile.mkdtemp(prefix='collection-archive-extract-test-') | ||
os.makedirs(extract_dir, exist_ok=True) | ||
|
||
# Test extracting the archive with invalid paths | ||
with self.assertRaises(ImporterError): | ||
_extract_archive(archive_file, extract_dir) | ||
|
||
# Clean up the temporary extraction directory | ||
shutil.rmtree(extract_dir) | ||
|
||
def test_invalid_parent_reference(self): | ||
# Create an archive with invalid paths | ||
archive_data = b'testfile content' | ||
archive_file = BytesIO() | ||
with tarfile.open(fileobj=archive_file, mode="w") as tf: | ||
tarinfo = tarfile.TarInfo("../invalid_path") | ||
tarinfo.size = len(archive_data) | ||
tf.addfile(tarinfo, BytesIO(archive_data)) | ||
archive_file.seek(0) | ||
|
||
# Create a temporary extraction directory | ||
extract_dir = tempfile.mkdtemp(prefix='collection-archive-extract-test-') | ||
os.makedirs(extract_dir, exist_ok=True) | ||
|
||
# Test extracting the archive with invalid paths | ||
with self.assertRaises(ImporterError): | ||
_extract_archive(archive_file, extract_dir) | ||
|
||
# Clean up the temporary extraction directory | ||
shutil.rmtree(extract_dir) | ||
|
||
def test_invalid_link_destination(self): | ||
# Create an archive with a link whose destination is "/" | ||
archive_data = b'testfile content' | ||
archive_file = BytesIO() | ||
with tarfile.open(fileobj=archive_file, mode="w") as tf: | ||
tarinfo = tarfile.TarInfo("testfile") | ||
tf.addfile(tarinfo, BytesIO(archive_data)) | ||
tarinfo = tarfile.TarInfo("invalid_link") | ||
tarinfo.type = tarfile.SYMTYPE | ||
tarinfo.linkname = "/" | ||
tf.addfile(tarinfo) | ||
archive_file.seek(0) | ||
|
||
# Create a temporary extraction directory | ||
extract_dir = tempfile.mkdtemp(prefix='collection-archive-extract-test-') | ||
os.makedirs(extract_dir, exist_ok=True) | ||
|
||
# Test extracting the archive with an invalid link destination | ||
with self.assertRaises(ImporterError): | ||
_extract_archive(archive_file, extract_dir) | ||
|
||
# Clean up the temporary extraction directory | ||
os.rmdir(extract_dir) |