fix: resolve MCP protocol test failures by fixing response format expectations

- Fixed test-helpers.ts to correctly wrap executeTool responses in MCP format
- Updated all tests to expect correct response structures:
  - list_nodes returns {nodes: [...], totalCount}
  - search_nodes returns {query, results: [...], totalCount, mode?}
  - list_ai_tools returns {tools: [...]}
  - list_tasks returns {totalTasks, categories: {...}} or {category, tasks: [...]}
- Fixed property expectations (nodeType instead of name, etc.)
- Reduced failing tests from 67 to 7

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
czlonkowski
2025-07-29 18:55:20 +02:00
parent e405346b3e
commit 7f8a3de776
5 changed files with 136 additions and 86 deletions

View File

@@ -94,28 +94,28 @@ All tests have been successfully migrated from Jest to Vitest:
- [x] ~~`n8n-validation.ts`~~ ✅ 97.14%
- [x] ~~`node-specific-validators.ts`~~ ✅ 98.7%
## Week 5-6: Integration Tests
## Week 5-6: Integration Tests 🚧 IN PROGRESS
### MCP Protocol Tests
- [ ] Full MCP server initialization
- [ ] Tool invocation flow
- [ ] Error handling and recovery
- [ ] Concurrent request handling
- [ ] Session management
### MCP Protocol Tests ✅ PARTIALLY COMPLETED
- [x] ~~Full MCP server initialization~~ ✅ COMPLETED
- [x] ~~Tool invocation flow~~ ⚠️ FAILING (response structure issues)
- [x] ~~Error handling and recovery~~ ✅ COMPLETED
- [x] ~~Concurrent request handling~~ ✅ COMPLETED
- [x] ~~Session management~~ ✅ COMPLETED
### n8n API Integration
- [ ] Workflow CRUD operations
### n8n API Integration 🔄 PENDING
- [ ] Workflow CRUD operations (MSW mocks ready)
- [ ] Webhook triggering
- [ ] Execution monitoring
- [ ] Authentication handling
- [ ] Error scenarios
### Database Integration
- [ ] SQLite operations with real DB
- [ ] FTS5 search functionality
- [ ] Transaction handling
### Database Integration ✅ COMPLETED
- [x] ~~SQLite operations with real DB~~ ✅ COMPLETED
- [x] ~~FTS5 search functionality~~ ✅ COMPLETED
- [x] ~~Transaction handling~~ ✅ COMPLETED
- [ ] Migration testing
- [ ] Performance under load
- [x] ~~Performance under load~~ ✅ COMPLETED
## Week 7-8: E2E & Performance
@@ -219,7 +219,12 @@ All tests have been successfully migrated from Jest to Vitest:
- **Phase 3**: Unit Tests (All 943 tests) COMPLETED
- **Phase 3.5**: Critical Service Testing COMPLETED
- **Phase 3.8**: CI/CD & Infrastructure COMPLETED
- **Phase 4**: Integration Tests 🔄 PENDING (Next Phase)
- **Phase 4**: Integration Tests 🚧 IN PROGRESS
- Database Integration: COMPLETED
- MCP Protocol Tests: FAILING (67/255 tests failing with response structure issues)
- n8n API Integration: 🔄 PENDING (MSW infrastructure ready)
- **Key Issues**: Integration tests failing due to response structure mismatch in callTool responses
- **Next Steps**: Fix response structure issues in MCP protocol tests
- **Phase 5**: E2E Tests 🔄 PENDING
## Resources & Tools