Skip to content

Commit aa8a585

Browse files
committed
Add support for "Permission denied" file access in make_codebase_resource #1630
Signed-off-by: tdruez <[email protected]>
1 parent 97e40ef commit aa8a585

File tree

3 files changed

+37
-1
lines changed

3 files changed

+37
-1
lines changed

scanpipe/pipes/__init__.py

+15-1
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,22 @@ def make_codebase_resource(project, location, save=True, **extra_fields):
6868
the error raised on save() is not stored in the database and the creation is
6969
skipped.
7070
"""
71+
from scanpipe.pipes import flag
72+
7173
relative_path = Path(location).relative_to(project.codebase_path)
72-
resource_data = scancode.get_resource_info(location=str(location))
74+
try:
75+
resource_data = scancode.get_resource_info(location=str(location))
76+
except OSError as error:
77+
logger.error(
78+
f"Failed to read resource at {location}: "
79+
f"Permission denied or file inaccessible."
80+
)
81+
resource_data = {"status": flag.RESOURCE_READ_ERROR}
82+
project.add_error(
83+
model=CodebaseResource,
84+
details={"resource_path": str(relative_path)},
85+
exception=error,
86+
)
7387

7488
if extra_fields:
7589
resource_data.update(**extra_fields)

scanpipe/pipes/flag.py

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
UNKNOWN_LICENSE = "unknown-license"
3535
NOT_ANALYZED = "not-analyzed"
3636

37+
RESOURCE_READ_ERROR = "resource-read-error"
38+
3739
IGNORED_WHITEOUT = "ignored-whiteout"
3840
IGNORED_EMPTY_FILE = "ignored-empty-file"
3941
IGNORED_WHITESPACE_FILE = "ignored-whitespace-file"

scanpipe/tests/pipes/test_pipes.py

+20
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
from scanpipe.pipes.input import copy_input
4141
from scanpipe.pipes.input import copy_inputs
4242
from scanpipe.tests import dependency_data1
43+
from scanpipe.tests import make_project
4344
from scanpipe.tests import make_resource_file
4445
from scanpipe.tests import mocked_now
4546
from scanpipe.tests import package_data1
@@ -305,6 +306,25 @@ def test_scanpipe_pipes_make_codebase_resource(self):
305306
self.assertEqual(1, p1.codebaseresources.count())
306307
self.assertEqual(0, p1.projectmessages.count())
307308

309+
@mock.patch("scanpipe.pipes.scancode.get_resource_info")
310+
def test_scanpipe_pipes_make_codebase_resource_permission_denied(
311+
self, mock_get_info
312+
):
313+
project = make_project()
314+
mock_get_info.side_effect = PermissionError("Permission denied")
315+
resource_location = str(project.codebase_path / "notice.NOTICE")
316+
317+
resource = pipes.make_codebase_resource(project, location=resource_location)
318+
self.assertTrue(resource.pk)
319+
self.assertEqual(flag.RESOURCE_READ_ERROR, resource.status)
320+
self.assertEqual("notice.NOTICE", str(resource.path))
321+
322+
error = project.projectmessages.get()
323+
self.assertEqual("error", error.severity)
324+
self.assertEqual("Permission denied", error.description)
325+
self.assertEqual("CodebaseResource", error.model)
326+
self.assertEqual({"resource_path": "notice.NOTICE"}, error.details)
327+
308328
def test_scanpipe_add_resource_to_package(self):
309329
project1 = Project.objects.create(name="Analysis")
310330
resource1 = make_resource_file(project=project1, path="filename.ext")

0 commit comments

Comments
 (0)