Skip to content

docs: backfill exported docstrings to clear 80% coverage gate (closes #619)#880

Open
cristim wants to merge 2 commits into
mainfrom
fix/619-wave20
Open

docs: backfill exported docstrings to clear 80% coverage gate (closes #619)#880
cristim wants to merge 2 commits into
mainfrom
fix/619-wave20

Conversation

@cristim

@cristim cristim commented May 30, 2026

Copy link
Copy Markdown
Member

Closes #619

Summary

Backfills Go doc comments on the 16 exported identifiers (across 7 files) that were left undocumented, lifting measured exported-identifier coverage from ~60% to 100%.

Packages touched: internal/api (7 auth/session types), ci_cd_sanity_tests/pkg/sanity/{aws,azure,report} (sanity-test types + package-level docs), cmd/lambda/clear-rate-limit (Lambda response type), ci_cd_sanity_tests/cmd/ri-exchange (CLI output type), and providers/azure/services/compute (retail price envelope).

All comments explain purpose and context rather than restating the identifier name. No logic changes; only // ... lines were added.

Test plan

  • go build ./... passes (verified locally)
  • go vet ./... passes (verified locally)
  • CodeRabbit docstring-coverage check passes (>= 80%)

@cristim cristim added triaged Item has been triaged priority/p3 Polish / idea / may never ship severity/low Minor harm urgency/eventually No deadline impact/internal Team-internal only effort/m Days type/docs Documentation labels May 30, 2026
@cristim

cristim commented May 30, 2026

Copy link
Copy Markdown
Member Author

@coderabbitai review

@coderabbitai

coderabbitai Bot commented May 30, 2026

Copy link
Copy Markdown
Contributor

Warning

Review limit reached

You’ve reached a temporary PR review limit under our Fair Usage Limits Policy.

Your recent review volume is higher than typical usage, so adaptive limits are currently applied.

Next review available in: 7 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 77effd8c-784d-4bf0-add1-b538611ccd0d

📥 Commits

Reviewing files that changed from the base of the PR and between 1d9f1b8 and dc264a9.

📒 Files selected for processing (6)
  • ci_cd_sanity_tests/cmd/ri-exchange/main.go
  • ci_cd_sanity_tests/pkg/sanity/aws/aws.go
  • ci_cd_sanity_tests/pkg/sanity/report/report.go
  • cmd/lambda/clear-rate-limit/main.go
  • internal/api/types.go
  • providers/azure/services/compute/client.go
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch fix/619-wave20

Comment @coderabbitai help to get the list of available commands.

@coderabbitai

coderabbitai Bot commented May 30, 2026

Copy link
Copy Markdown
Contributor
✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

@cristim

cristim commented May 30, 2026

Copy link
Copy Markdown
Member Author

@coderabbitai review

@coderabbitai

coderabbitai Bot commented May 30, 2026

Copy link
Copy Markdown
Contributor
✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

@cristim

cristim commented May 30, 2026

Copy link
Copy Markdown
Member Author

@coderabbitai review

@coderabbitai

coderabbitai Bot commented May 30, 2026

Copy link
Copy Markdown
Contributor
✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

@cristim

cristim commented May 30, 2026

Copy link
Copy Markdown
Member Author

@coderabbitai full review

@coderabbitai

coderabbitai Bot commented May 30, 2026

Copy link
Copy Markdown
Contributor
✅ Actions performed

Full review triggered.

@cristim

cristim commented Jun 4, 2026

Copy link
Copy Markdown
Member Author

@coderabbitai review

@coderabbitai

coderabbitai Bot commented Jun 4, 2026

Copy link
Copy Markdown
Contributor
✅ Action performed

Review finished.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

@cristim

cristim commented Jun 8, 2026

Copy link
Copy Markdown
Member Author

@coderabbitai full review

@coderabbitai

coderabbitai Bot commented Jun 8, 2026

Copy link
Copy Markdown
Contributor
✅ Action performed

Full review finished.

@cristim
cristim changed the base branch from feat/multicloud-web-frontend to main June 9, 2026 15:43
@cristim

cristim commented Jun 19, 2026

Copy link
Copy Markdown
Member Author

@coderabbitai review

@coderabbitai

coderabbitai Bot commented Jun 19, 2026

Copy link
Copy Markdown
Contributor
✅ Action performed

Review finished.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

@cristim

cristim commented Jul 10, 2026

Copy link
Copy Markdown
Member Author

@coderabbitai review

@coderabbitai

coderabbitai Bot commented Jul 10, 2026

Copy link
Copy Markdown
Contributor
✅ Action performed

Review finished.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

cristim added 2 commits July 17, 2026 21:17
Add Go doc comments to all remaining undocumented exported identifiers
across 7 files. Packages touched: internal/api (auth/session types),
ci_cd_sanity_tests/pkg/sanity/{aws,azure,report} (sanity test types
and package-level docs), cmd/lambda/clear-rate-limit (Lambda response
type), ci_cd_sanity_tests/cmd/ri-exchange (CLI output type), and
providers/azure/services/compute (retail price envelope).

All comments explain purpose and context, not just the identifier name.
Coverage moves from 60% to 100% on exported identifiers.
Three small follow-up tweaks to the docstring backfill:

- clear-rate-limit/main.go: Response.RemainingCount counts ALL rate-limit
  rows, not only forgot_password rows; reword the doc to match.
- internal/api/types.go: replace the colloquial "extends UserInfo" wording
  on User with an explicit field-level description and a callout that User
  is reserved for admin endpoints (LoginResponse/CurrentUserResponse use
  UserInfo / its own type).
- ci_cd_sanity_tests/pkg/sanity/report: document the exported Add,
  HasFailures, and WriteJSON methods; Add notes the not-safe-for-concurrent
  use contract that current callers rely on.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

effort/m Days impact/internal Team-internal only priority/p3 Polish / idea / may never ship severity/low Minor harm triaged Item has been triaged type/docs Documentation urgency/eventually No deadline

Projects

None yet

Development

Successfully merging this pull request may close these issues.

chore(docs): backfill docstrings to clear 80% coverage gate (repo at 60%)

1 participant