Open
Conversation
- Add pytest-based test infrastructure with fixtures and mocks - Include MockRegistry for agent registration testing - Include MockAdapter for agent-to-agent messaging testing - Provide AgentTestHarness for complete test environment - Add 20+ example tests covering unit, integration, and e2e scenarios - Add pytest configuration with test markers (unit/integration/slow) This addresses the lack of test coverage in the adapter repository, providing production-tested testing patterns for all contributors. All 14 tests passing. Zero dependencies beyond pytest.
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.
Summary
Adds comprehensive pytest-based testing infrastructure to enable test-driven development for the adapter repository.
Problem
The adapter repository currently has no test coverage, making it difficult to:
Solution
This PR adds:
Testing
All 14 tests passing in 0.03s
Usage Example
Contributors can now write tests like:
Test Categories
Future Work
Impact
Enables test-driven development for the adapter repo and provides reusable testing patterns for all NANDA contributors.