Add comprehensive tests verifying RequiresApproval attribute blocks on approval service#70
Merged
Add comprehensive tests verifying RequiresApproval attribute blocks on approval service#70
Conversation
…n approval service Co-authored-by: johnkord <16021727+johnkord@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Write tests that verifies that the RequiresApproval attribute blocks on the Approval service
Add comprehensive tests verifying RequiresApproval attribute blocks on approval service
Jun 25, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds comprehensive test coverage to verify that the
RequiresApprovalattribute correctly blocks tool execution waiting for approval from the approval service, and ensures that tools without the attribute execute immediately without approval checks.Problem
The existing tests only verified static attribute detection and wrapper creation, but lacked integration tests demonstrating the actual blocking behavior during tool execution. There was no verification that:
[RequiresApproval]actually block and wait for approvalSolution
Added 5 new test files with 21 comprehensive tests:
New Test Infrastructure
Core Functionality Tests
[RequiresApproval]are wrapped byToolApprovalWrapper[RequiresApproval(false)]execute immediatelyIntegration Tests
End-to-End Tests
Test Coverage
The new tests verify:
[RequiresApproval]are wrapped and would block for approvalRequiresApprovalexecute immediately without approval checks[RequiresApproval(false)]execute immediatelyShellTools.RunCommandResults
The implementation successfully demonstrates that the RequiresApproval system works as intended - dangerous operations are properly gated by the approval service while safe operations execute immediately.
Fixes #69.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.