Skip to content

pkg/mcp: add tests for readonly enforcement, delete validation, and help resources#3831

Open
Ankitsinghsisodya wants to merge 4 commits into
knative:mainfrom
Ankitsinghsisodya:fix/mcp-missing-test-coverage
Open

pkg/mcp: add tests for readonly enforcement, delete validation, and help resources#3831
Ankitsinghsisodya wants to merge 4 commits into
knative:mainfrom
Ankitsinghsisodya:fix/mcp-missing-test-coverage

Conversation

@Ankitsinghsisodya
Copy link
Copy Markdown
Contributor

@Ankitsinghsisodya Ankitsinghsisodya commented May 21, 2026

Note: Re-submission of #3666, accidentally closed when the head repository was deleted.

Summary

  • tools_deploy_test.go and tools_delete_test.go each had a single happy-path test that manually set server.readonly = false, leaving the readonly guard in both handlers completely untested.
  • The mutual-exclusion validation in deleteHandler (exactly one of path or name must be provided) had no test coverage for either branch.
  • All 14 func://help/* resources registered in mcp.go had zero tests; the newHelpResource handler — URI construction, executor dispatch, args assembly, and response shape — was entirely unexercised.

Changes

  • pkg/mcp/tools_deploy_test.go: add TestTool_Deploy_Readonly
  • pkg/mcp/tools_delete_test.go: add TestTool_Delete_Readonly, TestTool_Delete_BothPathAndName, and TestTool_Delete_NeitherPathNorName
  • pkg/mcp/resources_test.go: add TestResource_Help — table-driven test over 6 func://help/* URIs that validates executor subcommand, args, response URI, MIME type, and body text

Test plan

  • go test ./pkg/mcp/... passes (all 10 new tests green)
  • make test passes
  • make check passes

Copilot AI review requested due to automatic review settings May 21, 2026 11:22
@knative-prow knative-prow Bot requested review from dsimansk and jrangelramos May 21, 2026 11:23
@knative-prow
Copy link
Copy Markdown

knative-prow Bot commented May 21, 2026

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: Ankitsinghsisodya
Once this PR has been reviewed and has the lgtm label, please assign gauron99 for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@knative-prow knative-prow Bot added size/M 🤖 PR changes 30-99 lines, ignoring generated files. needs-ok-to-test 🤖 Needs an org member to approve testing labels May 21, 2026
@knative-prow
Copy link
Copy Markdown

knative-prow Bot commented May 21, 2026

Hi @Ankitsinghsisodya. Thanks for your PR.

I'm waiting for a knative member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work.

Tip

We noticed you've done this a few times! Consider joining the org to skip this step and gain /lgtm and other bot rights. We recommend asking approvers on your previous PRs to sponsor you.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Note

Copilot was unable to run its full agentic suite in this review.

Adds negative-path test coverage for MCP deploy and delete tools to ensure correct behavior in readonly mode and for invalid argument combinations.

Changes:

  • Add readonly-mode test for the deploy tool.
  • Add readonly-mode and argument-validation tests for the delete tool.

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 4 comments.

File Description
pkg/mcp/tools_deploy_test.go Adds a readonly-mode test for the deploy tool.
pkg/mcp/tools_delete_test.go Adds readonly-mode and validation tests for invalid delete arguments.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread pkg/mcp/tools_deploy_test.go
Comment thread pkg/mcp/tools_delete_test.go
Comment thread pkg/mcp/tools_delete_test.go
Comment thread pkg/mcp/tools_delete_test.go
@lkingland lkingland added ok-to-test 🤖 Non-member PR verified by an org member that is safe to test. and removed needs-ok-to-test 🤖 Needs an org member to approve testing labels May 22, 2026
@knative-prow knative-prow Bot added size/L 🤖 PR changes 100-499 lines, ignoring generated files. and removed size/M 🤖 PR changes 30-99 lines, ignoring generated files. labels May 22, 2026
- Implemented TestResource_Help to validate help command behavior for various subcommands.
- Added tests for the delete tool to ensure it handles readonly mode and validation errors correctly when both path and name are provided, or neither is provided.
- Included TestTool_Delete_Readonly, TestTool_Delete_BothPathAndName, and TestTool_Delete_NeitherPathNorName to cover these scenarios.

These tests enhance the coverage and reliability of the MCP resource and tool functionalities.
- Simplified the test setup in TestTool_Delete_BothPathAndName and TestTool_Delete_NeitherPathNorName by removing the unused server variable from newTestPair.
- This change enhances code clarity and maintains the focus on testing the delete tool's functionality.
- Updated TestTool_Delete_Readonly and TestTool_Deploy_Readonly to verify that the error messages returned when the server is in readonly mode contain the phrase "readonly mode".
- Modified TestTool_Delete_BothPathAndName and TestTool_Delete_NeitherPathNorName to ensure that mutual-exclusion validation errors are correctly checked for the phrases "exactly one of 'path' or 'name'".
- These changes improve the robustness of the tests by ensuring that the error messages are not only returned but also contain the expected content.
- Deleted TestTool_Delete_Readonly and TestTool_Deploy_Readonly as they were redundant following recent enhancements to error message validation.
- This cleanup improves test maintainability and focuses on essential test cases for the delete and deploy functionalities.
@Ankitsinghsisodya Ankitsinghsisodya force-pushed the fix/mcp-missing-test-coverage branch from d03185b to a07cc5e Compare May 22, 2026 05:36
@codecov
Copy link
Copy Markdown

codecov Bot commented May 22, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 53.46%. Comparing base (aca4f21) to head (a07cc5e).
⚠️ Report is 3 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #3831      +/-   ##
==========================================
+ Coverage   51.23%   53.46%   +2.23%     
==========================================
  Files         200      200              
  Lines       23441    23450       +9     
==========================================
+ Hits        12009    12537     +528     
+ Misses      10272     9659     -613     
- Partials     1160     1254      +94     
Flag Coverage Δ
e2e 33.72% <ø> (-0.01%) ⬇️
e2e go 29.66% <ø> (-0.01%) ⬇️
e2e node 25.96% <ø> (-0.01%) ⬇️
e2e python 29.99% <ø> (-0.01%) ⬇️
e2e quarkus 26.06% <ø> (-0.01%) ⬇️
e2e rust 25.53% <ø> (-0.01%) ⬇️
e2e springboot 24.20% <ø> (-0.01%) ⬇️
e2e typescript 26.05% <ø> (-0.01%) ⬇️
e2e-config-ci 26.78% <ø> (-0.01%) ⬇️
integration 15.75% <ø> (?)
unit macos-14 42.24% <ø> (+<0.01%) ⬆️
unit macos-latest 42.24% <ø> (+<0.01%) ⬆️
unit ubuntu-24.04-arm 42.53% <ø> (-0.02%) ⬇️
unit ubuntu-latest 43.11% <ø> (+<0.01%) ⬆️
unit windows-latest 42.31% <ø> (+<0.01%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ok-to-test 🤖 Non-member PR verified by an org member that is safe to test. size/L 🤖 PR changes 100-499 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants