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 tests for common.go #5191

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
Open

Add tests for common.go #5191

wants to merge 13 commits into from

Conversation

teodor-yanev
Copy link
Contributor

@teodor-yanev teodor-yanev commented Dec 12, 2024

Summary

Provide a brief overview of the changes and the issue being addressed.
Explain the rationale and any background necessary for understanding the changes.
List dependencies required by this change, if any.

Part of #4380

Note: The tests are broken down into different commits, based on their logical coverage.

Change Type

Mark the type of change your PR introduces:

  • Bug fix (resolves an issue without affecting existing features)
  • Feature (adds new functionality without breaking changes)
  • Breaking change (may impact existing functionalities or require documentation updates)
  • Documentation (updates or additions to documentation)
  • Refactoring or test improvements (no bug fixes or new functionality)

Testing

Outline how the changes were tested, including steps to reproduce and any relevant configurations.
Attach screenshots if helpful.

Review Checklist:

  • Reviewed my own code for quality and clarity.
  • Added comments to complex or tricky code sections.
  • Updated any affected documentation.
  • Included tests that validate the fix or feature.
  • Checked that related changes are merged.

- ListPackagesByRepository()
- GetArtifactVersions()
- getPackageVersions()
@coveralls
Copy link

coveralls commented Dec 13, 2024

Coverage Status

coverage: 55.882% (+0.7%) from 55.145%
when pulling f20eea3 on add-tests-common.go
into a6d9b22 on main.

- CanHandleOwner()
- NewFallbackTokenClient()
- ListFiles()
- ListAllRepositories()
- CreateSecurityAdvisory()
- CloseSecurityAdvisory()
@teodor-yanev teodor-yanev self-assigned this Dec 23, 2024
@teodor-yanev teodor-yanev marked this pull request as ready for review December 23, 2024 14:57
@teodor-yanev teodor-yanev requested a review from a team as a code owner December 23, 2024 14:57
eleftherias
eleftherias previously approved these changes Jan 6, 2025
Copy link
Contributor

@eleftherias eleftherias left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice! I just had 1 non-blocking question.

}
}

func safeInt32(n int) int32 {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this necessary given that the integers are provided by us, so we know they will be within the bounds?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fair point, thanks -- removed

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah, I remember why I added them now: the gosec linter was complaining about int overflow. Added a nolint now.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would it also work to change the type of tt.itemsPerPage and tt.pageNumber to int32?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants