-
Notifications
You must be signed in to change notification settings - Fork 521
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: Improve Tests for nvd_api.py
file
#4877
Comments
You're not wrong about these, but I just want to note that we need to be extra careful about not abusing the NVD api here, since it's a shared resource under a lot of very big load. Mocked tests are fine, but we should not have any more network tests to any NVD code unless there's a clear benefit. Note that while we don't have these as part of the coverage numbers, some of these functions are running daily as part of our cache updates, so they're not really going totally untested, they're just not counted by codecov. There's maybe a project to figure out what parts are running daily so we don't have to add additional tests on them, but I'd venture that this is pretty low priority for us. I'd much rather people work on other issues over this one. |
Hi @terriko ,
This aligns with project guidelines to minimize external API usage while ensuring critical paths are tested. However, if I have missed something, Feedback is welcome! |
Description
Several functions in
cve_bin_tool/nvd_api.py
lack proper test coverage.~~ report
Affected Functions
nvd_count_metadata
(async, staticmethod)convert_date_to_nvd_date_api2
(staticmethod)get_reject_count_api2
(staticmethod)get_nvd_params
(async)validate_nvd_api
(async)load_nvd_request
(async)get
(async)Steps to Reproduce
Currently, there are no proper tests ensuring the correctness of these functions.
Expected Behavior
Suggested Approach
pytest
andunittest.mock
for mocking API responses.pytest-asyncio
.The text was updated successfully, but these errors were encountered: