mirror of
https://github.com/thedotmack/claude-mem
synced 2026-04-26 01:25:10 +02:00
* docs: add investigation reports for 5 open GitHub issues Comprehensive analysis of issues #543, #544, #545, #555, and #557: - #557: settings.json not generated, module loader error (node/bun mismatch) - #555: Windows hooks not executing, hasIpc always false - #545: formatTool crashes on non-JSON tool_input strings - #544: mem-search skill hint shown incorrectly to Claude Code users - #543: /claude-mem slash command unavailable despite installation Each report includes root cause analysis, affected files, and proposed fixes. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * fix(logger): handle non-JSON tool_input in formatTool (#545) Wrap JSON.parse in try-catch to handle raw string inputs (e.g., Bash commands) that aren't valid JSON. Falls back to using the string as-is. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * fix(context): update mem-search hint to reference MCP tools (#544) Update hint messages to reference MCP tools (search, get_observations) instead of the deprecated "mem-search skill" terminology. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * fix(settings): auto-create settings.json on first load (#557, #543) When settings.json doesn't exist, create it with defaults instead of returning in-memory defaults. Creates parent directory if needed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * fix(hooks): use bun runtime for hooks except smart-install (#557) Change hook commands from node to bun since hooks use bun:sqlite. Keep smart-install.js on node since it bootstraps bun installation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * chore: rebuild plugin scripts * docs: clarify that build artifacts must be committed * fix(docs): update build artifacts directory reference in CLAUDE.md * test: add test coverage for PR #558 fixes - Fix 2 failing tests: update "mem-search skill" → "MCP tools" expectations - Add 56 tests for formatTool() JSON.parse crash fix (Issue #545) - Add 27 tests for settings.json auto-creation (Issue #543) Test coverage includes: - formatTool: JSON parsing, raw strings, objects, null/undefined, all tool types - Settings: file creation, directory creation, schema migration, edge cases 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * fix(tests): clean up flaky tests and fix circular dependency Phase 1 of test quality improvements: - Delete 6 harmful/worthless test files that used problematic mock.module() patterns or tested implementation details rather than behavior: - context-builder.test.ts (tested internal implementation) - export-types.test.ts (fragile mock patterns) - smart-install.test.ts (shell script testing antipattern) - session_id_refactor.test.ts (outdated, tested refactoring itself) - validate_sql_update.test.ts (one-time migration validation) - observation-broadcaster.test.ts (excessive mocking) - Fix circular dependency between logger.ts and SettingsDefaultsManager.ts by using late binding pattern - logger now lazily loads settings - Refactor mock.module() to spyOn() in several test files for more maintainable and less brittle tests: - observation-compiler.test.ts - gemini_agent.test.ts - error-handler.test.ts - server.test.ts - response-processor.test.ts All 649 tests pass. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * refactor(tests): phase 2 - reduce mock-heavy tests and improve focus - Remove mock-heavy query tests from observation-compiler.test.ts, keep real buildTimeline tests - Convert session_id_usage_validation.test.ts from 477 to 178 lines of focused smoke tests - Remove tests for language built-ins from worker-spawn.test.ts (JSON.parse, array indexing) - Rename logger-coverage.test.ts to logger-usage-standards.test.ts for clarity 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * docs(tests): phase 3 - add JSDoc mock justification to test files Document mock usage rationale in 5 test files to improve maintainability: - error-handler.test.ts: Express req/res mocks, logger spies (~11%) - fallback-error-handler.test.ts: Zero mocks, pure function tests - session-cleanup-helper.test.ts: Session fixtures, worker mocks (~19%) - hook-constants.test.ts: process.platform mock for Windows tests (~12%) - session_store.test.ts: Zero mocks, real SQLite :memory: database Part of ongoing effort to document mock justifications per TESTING.md guidelines. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * test(integration): phase 5 - add 72 tests for critical coverage gaps Add comprehensive test coverage for previously untested areas: - tests/integration/hook-execution-e2e.test.ts (10 tests) Tests lifecycle hooks execution flow and context propagation - tests/integration/worker-api-endpoints.test.ts (19 tests) Tests all worker service HTTP endpoints without heavy mocking - tests/integration/chroma-vector-sync.test.ts (16 tests) Tests vector embedding synchronization with ChromaDB - tests/utils/tag-stripping.test.ts (27 tests) Tests privacy tag stripping utilities for both <private> and <meta-observation> tags All tests use real implementations where feasible, following the project's testing philosophy of preferring integration-style tests over unit tests with extensive mocking. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * context update * docs: add comment linking DEFAULT_DATA_DIR locations Added NOTE comment in logger.ts pointing to the canonical DEFAULT_DATA_DIR in SettingsDefaultsManager.ts. This addresses PR reviewer feedback about the fragility of having the default defined in two places to avoid circular dependencies. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
329 lines
9.8 KiB
TypeScript
329 lines
9.8 KiB
TypeScript
/**
|
|
* Tests for Express error handling middleware
|
|
*
|
|
* Mock Justification (~11% mock code):
|
|
* - Logger spies: Suppress console output during tests (standard practice)
|
|
* - Express req/res mocks: Required because Express middleware expects these
|
|
* objects - testing the actual formatting and status code logic
|
|
*
|
|
* What's NOT mocked: AppError class, createErrorResponse function (tested directly)
|
|
*/
|
|
import { describe, it, expect, mock, beforeEach, afterEach, spyOn } from 'bun:test';
|
|
import type { Request, Response, NextFunction } from 'express';
|
|
import { logger } from '../../src/utils/logger.js';
|
|
|
|
import {
|
|
AppError,
|
|
createErrorResponse,
|
|
errorHandler,
|
|
notFoundHandler,
|
|
} from '../../src/services/server/ErrorHandler.js';
|
|
|
|
// Spy on logger methods to suppress output during tests
|
|
// Using spyOn instead of mock.module to avoid polluting global module cache
|
|
let loggerSpies: ReturnType<typeof spyOn>[] = [];
|
|
|
|
describe('ErrorHandler', () => {
|
|
beforeEach(() => {
|
|
loggerSpies = [
|
|
spyOn(logger, 'info').mockImplementation(() => {}),
|
|
spyOn(logger, 'debug').mockImplementation(() => {}),
|
|
spyOn(logger, 'warn').mockImplementation(() => {}),
|
|
spyOn(logger, 'error').mockImplementation(() => {}),
|
|
];
|
|
});
|
|
|
|
afterEach(() => {
|
|
loggerSpies.forEach(spy => spy.mockRestore());
|
|
mock.restore();
|
|
});
|
|
|
|
describe('AppError', () => {
|
|
it('should extend Error', () => {
|
|
const error = new AppError('Test error');
|
|
expect(error).toBeInstanceOf(Error);
|
|
expect(error).toBeInstanceOf(AppError);
|
|
});
|
|
|
|
it('should set default statusCode to 500', () => {
|
|
const error = new AppError('Test error');
|
|
expect(error.statusCode).toBe(500);
|
|
});
|
|
|
|
it('should set custom statusCode', () => {
|
|
const error = new AppError('Not found', 404);
|
|
expect(error.statusCode).toBe(404);
|
|
});
|
|
|
|
it('should set error code when provided', () => {
|
|
const error = new AppError('Invalid input', 400, 'INVALID_INPUT');
|
|
expect(error.code).toBe('INVALID_INPUT');
|
|
});
|
|
|
|
it('should set details when provided', () => {
|
|
const details = { field: 'email', reason: 'invalid format' };
|
|
const error = new AppError('Validation failed', 400, 'VALIDATION_ERROR', details);
|
|
expect(error.details).toEqual(details);
|
|
});
|
|
|
|
it('should set message correctly', () => {
|
|
const error = new AppError('Something went wrong');
|
|
expect(error.message).toBe('Something went wrong');
|
|
});
|
|
|
|
it('should set name to AppError', () => {
|
|
const error = new AppError('Test error');
|
|
expect(error.name).toBe('AppError');
|
|
});
|
|
|
|
it('should handle all parameters together', () => {
|
|
const details = { userId: 123 };
|
|
const error = new AppError('User not found', 404, 'USER_NOT_FOUND', details);
|
|
|
|
expect(error.message).toBe('User not found');
|
|
expect(error.statusCode).toBe(404);
|
|
expect(error.code).toBe('USER_NOT_FOUND');
|
|
expect(error.details).toEqual(details);
|
|
expect(error.name).toBe('AppError');
|
|
});
|
|
});
|
|
|
|
describe('createErrorResponse', () => {
|
|
it('should create basic error response with error and message', () => {
|
|
const response = createErrorResponse('Error', 'Something went wrong');
|
|
|
|
expect(response.error).toBe('Error');
|
|
expect(response.message).toBe('Something went wrong');
|
|
expect(response.code).toBeUndefined();
|
|
expect(response.details).toBeUndefined();
|
|
});
|
|
|
|
it('should include code when provided', () => {
|
|
const response = createErrorResponse('ValidationError', 'Invalid input', 'INVALID_INPUT');
|
|
|
|
expect(response.error).toBe('ValidationError');
|
|
expect(response.message).toBe('Invalid input');
|
|
expect(response.code).toBe('INVALID_INPUT');
|
|
expect(response.details).toBeUndefined();
|
|
});
|
|
|
|
it('should include details when provided', () => {
|
|
const details = { fields: ['email', 'password'] };
|
|
const response = createErrorResponse('ValidationError', 'Multiple errors', 'VALIDATION_ERROR', details);
|
|
|
|
expect(response.error).toBe('ValidationError');
|
|
expect(response.message).toBe('Multiple errors');
|
|
expect(response.code).toBe('VALIDATION_ERROR');
|
|
expect(response.details).toEqual(details);
|
|
});
|
|
|
|
it('should not include code or details keys when not provided', () => {
|
|
const response = createErrorResponse('Error', 'Basic error');
|
|
|
|
expect(Object.keys(response)).toEqual(['error', 'message']);
|
|
});
|
|
|
|
it('should handle empty string code as falsy and exclude it', () => {
|
|
const response = createErrorResponse('Error', 'Test', '');
|
|
|
|
// Empty string is falsy, so code should not be set
|
|
expect(response.code).toBeUndefined();
|
|
});
|
|
});
|
|
|
|
describe('errorHandler middleware', () => {
|
|
let mockRequest: Partial<Request>;
|
|
let mockResponse: Partial<Response>;
|
|
let mockNext: NextFunction;
|
|
let statusSpy: ReturnType<typeof mock>;
|
|
let jsonSpy: ReturnType<typeof mock>;
|
|
|
|
beforeEach(() => {
|
|
statusSpy = mock(() => mockResponse);
|
|
jsonSpy = mock(() => mockResponse);
|
|
|
|
mockRequest = {
|
|
method: 'GET',
|
|
path: '/api/test',
|
|
};
|
|
|
|
mockResponse = {
|
|
status: statusSpy as unknown as Response['status'],
|
|
json: jsonSpy as unknown as Response['json'],
|
|
};
|
|
|
|
mockNext = mock(() => {});
|
|
});
|
|
|
|
it('should handle AppError with custom status code', () => {
|
|
const error = new AppError('Not found', 404, 'NOT_FOUND');
|
|
|
|
errorHandler(
|
|
error,
|
|
mockRequest as Request,
|
|
mockResponse as Response,
|
|
mockNext
|
|
);
|
|
|
|
expect(statusSpy).toHaveBeenCalledWith(404);
|
|
expect(jsonSpy).toHaveBeenCalled();
|
|
|
|
const responseBody = jsonSpy.mock.calls[0][0];
|
|
expect(responseBody.error).toBe('AppError');
|
|
expect(responseBody.message).toBe('Not found');
|
|
expect(responseBody.code).toBe('NOT_FOUND');
|
|
});
|
|
|
|
it('should handle AppError with details', () => {
|
|
const details = { resourceId: 'abc123' };
|
|
const error = new AppError('Resource not found', 404, 'RESOURCE_NOT_FOUND', details);
|
|
|
|
errorHandler(
|
|
error,
|
|
mockRequest as Request,
|
|
mockResponse as Response,
|
|
mockNext
|
|
);
|
|
|
|
const responseBody = jsonSpy.mock.calls[0][0];
|
|
expect(responseBody.details).toEqual(details);
|
|
});
|
|
|
|
it('should handle generic Error with 500 status code', () => {
|
|
const error = new Error('Something went wrong');
|
|
|
|
errorHandler(
|
|
error,
|
|
mockRequest as Request,
|
|
mockResponse as Response,
|
|
mockNext
|
|
);
|
|
|
|
expect(statusSpy).toHaveBeenCalledWith(500);
|
|
|
|
const responseBody = jsonSpy.mock.calls[0][0];
|
|
expect(responseBody.error).toBe('Error');
|
|
expect(responseBody.message).toBe('Something went wrong');
|
|
expect(responseBody.code).toBeUndefined();
|
|
expect(responseBody.details).toBeUndefined();
|
|
});
|
|
|
|
it('should not call next after handling error', () => {
|
|
const error = new AppError('Test error', 400);
|
|
|
|
errorHandler(
|
|
error,
|
|
mockRequest as Request,
|
|
mockResponse as Response,
|
|
mockNext
|
|
);
|
|
|
|
expect(mockNext).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('should use error name in response', () => {
|
|
const error = new TypeError('Invalid type');
|
|
|
|
errorHandler(
|
|
error,
|
|
mockRequest as Request,
|
|
mockResponse as Response,
|
|
mockNext
|
|
);
|
|
|
|
const responseBody = jsonSpy.mock.calls[0][0];
|
|
expect(responseBody.error).toBe('TypeError');
|
|
});
|
|
|
|
it('should handle AppError with default 500 status', () => {
|
|
const error = new AppError('Server error');
|
|
|
|
errorHandler(
|
|
error,
|
|
mockRequest as Request,
|
|
mockResponse as Response,
|
|
mockNext
|
|
);
|
|
|
|
expect(statusSpy).toHaveBeenCalledWith(500);
|
|
});
|
|
});
|
|
|
|
describe('notFoundHandler', () => {
|
|
let mockRequest: Partial<Request>;
|
|
let mockResponse: Partial<Response>;
|
|
let statusSpy: ReturnType<typeof mock>;
|
|
let jsonSpy: ReturnType<typeof mock>;
|
|
|
|
beforeEach(() => {
|
|
statusSpy = mock(() => mockResponse);
|
|
jsonSpy = mock(() => mockResponse);
|
|
|
|
mockResponse = {
|
|
status: statusSpy as unknown as Response['status'],
|
|
json: jsonSpy as unknown as Response['json'],
|
|
};
|
|
});
|
|
|
|
it('should return 404 status', () => {
|
|
mockRequest = {
|
|
method: 'GET',
|
|
path: '/api/unknown',
|
|
};
|
|
|
|
notFoundHandler(mockRequest as Request, mockResponse as Response);
|
|
|
|
expect(statusSpy).toHaveBeenCalledWith(404);
|
|
});
|
|
|
|
it('should include method and path in message', () => {
|
|
mockRequest = {
|
|
method: 'POST',
|
|
path: '/api/users',
|
|
};
|
|
|
|
notFoundHandler(mockRequest as Request, mockResponse as Response);
|
|
|
|
const responseBody = jsonSpy.mock.calls[0][0];
|
|
expect(responseBody.error).toBe('NotFound');
|
|
expect(responseBody.message).toBe('Cannot POST /api/users');
|
|
});
|
|
|
|
it('should handle DELETE method', () => {
|
|
mockRequest = {
|
|
method: 'DELETE',
|
|
path: '/api/items/123',
|
|
};
|
|
|
|
notFoundHandler(mockRequest as Request, mockResponse as Response);
|
|
|
|
const responseBody = jsonSpy.mock.calls[0][0];
|
|
expect(responseBody.message).toBe('Cannot DELETE /api/items/123');
|
|
});
|
|
|
|
it('should handle PUT method', () => {
|
|
mockRequest = {
|
|
method: 'PUT',
|
|
path: '/api/config',
|
|
};
|
|
|
|
notFoundHandler(mockRequest as Request, mockResponse as Response);
|
|
|
|
const responseBody = jsonSpy.mock.calls[0][0];
|
|
expect(responseBody.message).toBe('Cannot PUT /api/config');
|
|
});
|
|
|
|
it('should return structured error response', () => {
|
|
mockRequest = {
|
|
method: 'GET',
|
|
path: '/missing',
|
|
};
|
|
|
|
notFoundHandler(mockRequest as Request, mockResponse as Response);
|
|
|
|
const responseBody = jsonSpy.mock.calls[0][0];
|
|
expect(Object.keys(responseBody)).toEqual(['error', 'message']);
|
|
});
|
|
});
|
|
});
|