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

test: add invalid package to test language scanner #4918

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
4 changes: 4 additions & 0 deletions test/language_data/invalid-package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions test/test_language_scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,11 +199,26 @@ def test_javascript_package_none_found(self, filename: str) -> None:
scanner = VersionScanner()
scanner.file_stack.append(filename)
product = None

# Not expecting any product to match with a vendor in the database
for product in scanner.scan_file(filename):
pass
assert product is not None

@pytest.mark.parametrize(
"filename", ((str(TEST_FILE_PATH / "invalid-package-lock.json")),)
)
def test_invalid_javascript_package(self, filename: str) -> None:
"""Test an invalid package-lock.json file

The parser should gracefully handle invalid package-lock.json files.
"""
scanner = VersionScanner()
scanner_output = scanner.scan_file(filename)

for product in scanner_output:
assert product is None

@pytest.mark.parametrize(
"filename",
[
Expand Down
Loading