@dizzlkheinz/ynab-mcpb 0.18.3 → 0.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/CLAUDE.md +87 -8
- package/bin/ynab-mcp-server.cjs +2 -2
- package/bin/ynab-mcp-server.js +3 -3
- package/biome.json +39 -0
- package/dist/bundle/index.cjs +67 -67
- package/dist/index.d.ts +1 -1
- package/dist/index.js +27 -27
- package/dist/server/YNABMCPServer.d.ts +3 -4
- package/dist/server/YNABMCPServer.js +111 -116
- package/dist/server/budgetResolver.d.ts +6 -5
- package/dist/server/budgetResolver.js +46 -36
- package/dist/server/cacheKeys.js +6 -6
- package/dist/server/cacheManager.js +14 -11
- package/dist/server/completions.d.ts +2 -2
- package/dist/server/completions.js +20 -15
- package/dist/server/config.d.ts +10 -5
- package/dist/server/config.js +24 -7
- package/dist/server/deltaCache.d.ts +2 -2
- package/dist/server/deltaCache.js +22 -16
- package/dist/server/deltaCache.merge.d.ts +2 -2
- package/dist/server/diagnostics.d.ts +4 -4
- package/dist/server/diagnostics.js +38 -32
- package/dist/server/errorHandler.d.ts +5 -12
- package/dist/server/errorHandler.js +219 -217
- package/dist/server/prompts.d.ts +2 -2
- package/dist/server/prompts.js +45 -45
- package/dist/server/rateLimiter.js +4 -4
- package/dist/server/requestLogger.d.ts +1 -1
- package/dist/server/requestLogger.js +40 -35
- package/dist/server/resources.d.ts +3 -3
- package/dist/server/resources.js +55 -52
- package/dist/server/responseFormatter.js +6 -6
- package/dist/server/securityMiddleware.d.ts +2 -2
- package/dist/server/securityMiddleware.js +22 -20
- package/dist/server/serverKnowledgeStore.js +1 -1
- package/dist/server/toolRegistry.d.ts +3 -3
- package/dist/server/toolRegistry.js +47 -40
- package/dist/tools/__tests__/deltaTestUtils.d.ts +3 -3
- package/dist/tools/__tests__/deltaTestUtils.js +2 -2
- package/dist/tools/accountTools.d.ts +9 -8
- package/dist/tools/accountTools.js +47 -47
- package/dist/tools/adapters.d.ts +13 -8
- package/dist/tools/adapters.js +21 -11
- package/dist/tools/budgetTools.d.ts +8 -7
- package/dist/tools/budgetTools.js +22 -22
- package/dist/tools/categoryTools.d.ts +9 -8
- package/dist/tools/categoryTools.js +68 -59
- package/dist/tools/compareTransactions/formatter.d.ts +3 -3
- package/dist/tools/compareTransactions/formatter.js +9 -9
- package/dist/tools/compareTransactions/index.d.ts +6 -6
- package/dist/tools/compareTransactions/index.js +58 -43
- package/dist/tools/compareTransactions/matcher.d.ts +1 -1
- package/dist/tools/compareTransactions/matcher.js +28 -15
- package/dist/tools/compareTransactions/parser.d.ts +2 -2
- package/dist/tools/compareTransactions/parser.js +144 -138
- package/dist/tools/compareTransactions/types.d.ts +4 -4
- package/dist/tools/compareTransactions.d.ts +1 -1
- package/dist/tools/compareTransactions.js +1 -1
- package/dist/tools/deltaFetcher.d.ts +2 -2
- package/dist/tools/deltaFetcher.js +16 -15
- package/dist/tools/deltaSupport.d.ts +4 -4
- package/dist/tools/deltaSupport.js +35 -41
- package/dist/tools/exportTransactions.d.ts +5 -4
- package/dist/tools/exportTransactions.js +61 -59
- package/dist/tools/monthTools.d.ts +7 -6
- package/dist/tools/monthTools.js +31 -29
- package/dist/tools/payeeTools.d.ts +7 -6
- package/dist/tools/payeeTools.js +28 -28
- package/dist/tools/reconcileAdapter.d.ts +2 -2
- package/dist/tools/reconcileAdapter.js +21 -11
- package/dist/tools/reconciliation/analyzer.d.ts +4 -4
- package/dist/tools/reconciliation/analyzer.js +136 -57
- package/dist/tools/reconciliation/csvParser.d.ts +3 -3
- package/dist/tools/reconciliation/csvParser.js +128 -104
- package/dist/tools/reconciliation/executor.d.ts +4 -4
- package/dist/tools/reconciliation/executor.js +148 -109
- package/dist/tools/reconciliation/index.d.ts +10 -10
- package/dist/tools/reconciliation/index.js +96 -83
- package/dist/tools/reconciliation/matcher.d.ts +3 -3
- package/dist/tools/reconciliation/matcher.js +17 -16
- package/dist/tools/reconciliation/payeeNormalizer.js +19 -8
- package/dist/tools/reconciliation/recommendationEngine.d.ts +1 -1
- package/dist/tools/reconciliation/recommendationEngine.js +40 -40
- package/dist/tools/reconciliation/reportFormatter.d.ts +2 -2
- package/dist/tools/reconciliation/reportFormatter.js +79 -54
- package/dist/tools/reconciliation/signDetector.d.ts +1 -1
- package/dist/tools/reconciliation/types.d.ts +19 -16
- package/dist/tools/reconciliation/ynabAdapter.d.ts +2 -2
- package/dist/tools/schemas/common.d.ts +1 -1
- package/dist/tools/schemas/common.js +1 -1
- package/dist/tools/schemas/outputs/accountOutputs.d.ts +1 -1
- package/dist/tools/schemas/outputs/accountOutputs.js +24 -18
- package/dist/tools/schemas/outputs/budgetOutputs.d.ts +1 -1
- package/dist/tools/schemas/outputs/budgetOutputs.js +14 -11
- package/dist/tools/schemas/outputs/categoryOutputs.d.ts +1 -1
- package/dist/tools/schemas/outputs/categoryOutputs.js +49 -29
- package/dist/tools/schemas/outputs/comparisonOutputs.d.ts +1 -1
- package/dist/tools/schemas/outputs/comparisonOutputs.js +12 -12
- package/dist/tools/schemas/outputs/index.d.ts +14 -14
- package/dist/tools/schemas/outputs/index.js +14 -14
- package/dist/tools/schemas/outputs/monthOutputs.d.ts +1 -1
- package/dist/tools/schemas/outputs/monthOutputs.js +56 -41
- package/dist/tools/schemas/outputs/payeeOutputs.d.ts +1 -1
- package/dist/tools/schemas/outputs/payeeOutputs.js +10 -10
- package/dist/tools/schemas/outputs/reconciliationOutputs.d.ts +2 -2
- package/dist/tools/schemas/outputs/reconciliationOutputs.js +45 -45
- package/dist/tools/schemas/outputs/transactionMutationOutputs.d.ts +1 -1
- package/dist/tools/schemas/outputs/transactionMutationOutputs.js +28 -22
- package/dist/tools/schemas/outputs/transactionOutputs.d.ts +1 -1
- package/dist/tools/schemas/outputs/transactionOutputs.js +43 -35
- package/dist/tools/schemas/outputs/utilityOutputs.d.ts +1 -1
- package/dist/tools/schemas/outputs/utilityOutputs.js +5 -3
- package/dist/tools/schemas/shared/commonOutputs.d.ts +1 -1
- package/dist/tools/schemas/shared/commonOutputs.js +15 -9
- package/dist/tools/transactionReadTools.d.ts +11 -0
- package/dist/tools/transactionReadTools.js +202 -0
- package/dist/tools/transactionSchemas.d.ts +309 -0
- package/dist/tools/transactionSchemas.js +235 -0
- package/dist/tools/transactionTools.d.ts +6 -302
- package/dist/tools/transactionTools.js +7 -2054
- package/dist/tools/transactionUtils.d.ts +31 -0
- package/dist/tools/transactionUtils.js +364 -0
- package/dist/tools/transactionWriteTools.d.ts +20 -0
- package/dist/tools/transactionWriteTools.js +1342 -0
- package/dist/tools/utilityTools.d.ts +5 -4
- package/dist/tools/utilityTools.js +11 -11
- package/dist/types/index.d.ts +7 -7
- package/dist/types/index.js +6 -6
- package/dist/types/reconciliation.d.ts +1 -1
- package/dist/types/toolRegistration.d.ts +14 -12
- package/dist/utils/amountUtils.js +1 -1
- package/dist/utils/dateUtils.js +4 -4
- package/dist/utils/errors.d.ts +3 -3
- package/dist/utils/errors.js +4 -4
- package/dist/utils/money.d.ts +2 -2
- package/dist/utils/money.js +8 -8
- package/dist/utils/validationError.d.ts +1 -1
- package/dist/utils/validationError.js +1 -1
- package/docs/assets/examples/reconciliation-with-recommendations.json +66 -66
- package/docs/assets/schemas/reconciliation-v2.json +360 -336
- package/docs/plans/2025-12-25-transaction-tools-refactor-design.md +211 -0
- package/docs/plans/2025-12-25-transaction-tools-refactor.md +905 -0
- package/esbuild.config.mjs +53 -50
- package/meta.json +12548 -12548
- package/package.json +98 -109
- package/scripts/analyze-bundle.mjs +33 -30
- package/scripts/create-pr-description.js +169 -120
- package/scripts/run-all-tests.js +205 -0
- package/scripts/run-domain-integration-tests.js +28 -18
- package/scripts/run-generate-mcpb.js +19 -17
- package/scripts/run-throttled-integration-tests.js +92 -83
- package/scripts/test-delta-params.mjs +149 -120
- package/scripts/test-recommendations.ts +36 -32
- package/scripts/tmpTransaction.ts +80 -43
- package/scripts/validate-env.js +98 -91
- package/scripts/verify-build.js +78 -76
- package/src/__tests__/comprehensive.integration.test.ts +1281 -1154
- package/src/__tests__/performance.test.ts +723 -671
- package/src/__tests__/setup.ts +442 -395
- package/src/__tests__/smoke.e2e.test.ts +41 -39
- package/src/__tests__/testRunner.ts +314 -295
- package/src/__tests__/testUtils.ts +456 -364
- package/src/__tests__/tools/reconciliation/csvParser.integration.test.ts +109 -107
- package/src/__tests__/tools/reconciliation/real-world.integration.test.ts +41 -41
- package/src/index.ts +68 -59
- package/src/server/CLAUDE.md +480 -0
- package/src/server/YNABMCPServer.ts +821 -794
- package/src/server/__tests__/YNABMCPServer.integration.test.ts +929 -893
- package/src/server/__tests__/YNABMCPServer.test.ts +903 -899
- package/src/server/__tests__/budgetResolver.test.ts +466 -423
- package/src/server/__tests__/cacheManager.test.ts +891 -874
- package/src/server/__tests__/completions.integration.test.ts +115 -106
- package/src/server/__tests__/completions.test.ts +334 -313
- package/src/server/__tests__/config.test.ts +98 -86
- package/src/server/__tests__/deltaCache.merge.test.ts +774 -703
- package/src/server/__tests__/deltaCache.swr.test.ts +198 -153
- package/src/server/__tests__/deltaCache.test.ts +946 -759
- package/src/server/__tests__/diagnostics.test.ts +825 -792
- package/src/server/__tests__/errorHandler.integration.test.ts +512 -462
- package/src/server/__tests__/errorHandler.test.ts +402 -397
- package/src/server/__tests__/prompts.test.ts +424 -347
- package/src/server/__tests__/rateLimiter.test.ts +313 -309
- package/src/server/__tests__/requestLogger.test.ts +443 -403
- package/src/server/__tests__/resources.template.test.ts +196 -185
- package/src/server/__tests__/resources.test.ts +294 -288
- package/src/server/__tests__/security.integration.test.ts +487 -421
- package/src/server/__tests__/securityMiddleware.test.ts +519 -444
- package/src/server/__tests__/server-startup.integration.test.ts +509 -490
- package/src/server/__tests__/serverKnowledgeStore.test.ts +174 -173
- package/src/server/__tests__/toolRegistration.test.ts +239 -210
- package/src/server/__tests__/toolRegistry.test.ts +907 -845
- package/src/server/budgetResolver.ts +221 -181
- package/src/server/cacheKeys.ts +6 -6
- package/src/server/cacheManager.ts +498 -484
- package/src/server/completions.ts +267 -243
- package/src/server/config.ts +35 -14
- package/src/server/deltaCache.merge.ts +146 -128
- package/src/server/deltaCache.ts +352 -309
- package/src/server/diagnostics.ts +257 -242
- package/src/server/errorHandler.ts +747 -744
- package/src/server/prompts.ts +181 -176
- package/src/server/rateLimiter.ts +131 -129
- package/src/server/requestLogger.ts +350 -322
- package/src/server/resources.ts +442 -374
- package/src/server/responseFormatter.ts +41 -37
- package/src/server/securityMiddleware.ts +223 -205
- package/src/server/serverKnowledgeStore.ts +67 -67
- package/src/server/toolRegistry.ts +508 -474
- package/src/tools/CLAUDE.md +604 -0
- package/src/tools/__tests__/accountTools.delta.integration.test.ts +128 -111
- package/src/tools/__tests__/accountTools.integration.test.ts +129 -111
- package/src/tools/__tests__/accountTools.test.ts +685 -638
- package/src/tools/__tests__/adapters.test.ts +142 -108
- package/src/tools/__tests__/budgetTools.delta.integration.test.ts +73 -73
- package/src/tools/__tests__/budgetTools.integration.test.ts +132 -124
- package/src/tools/__tests__/budgetTools.test.ts +442 -413
- package/src/tools/__tests__/categoryTools.delta.integration.test.ts +76 -68
- package/src/tools/__tests__/categoryTools.integration.test.ts +314 -288
- package/src/tools/__tests__/categoryTools.test.ts +656 -625
- package/src/tools/__tests__/compareTransactions/formatter.test.ts +535 -462
- package/src/tools/__tests__/compareTransactions/index.test.ts +378 -358
- package/src/tools/__tests__/compareTransactions/matcher.test.ts +497 -398
- package/src/tools/__tests__/compareTransactions/parser.test.ts +765 -747
- package/src/tools/__tests__/compareTransactions.test.ts +352 -332
- package/src/tools/__tests__/compareTransactions.window.test.ts +150 -146
- package/src/tools/__tests__/deltaFetcher.scheduled.integration.test.ts +69 -65
- package/src/tools/__tests__/deltaFetcher.test.ts +325 -265
- package/src/tools/__tests__/deltaSupport.test.ts +211 -184
- package/src/tools/__tests__/deltaTestUtils.ts +37 -33
- package/src/tools/__tests__/exportTransactions.test.ts +205 -200
- package/src/tools/__tests__/monthTools.delta.integration.test.ts +68 -68
- package/src/tools/__tests__/monthTools.integration.test.ts +178 -166
- package/src/tools/__tests__/monthTools.test.ts +561 -512
- package/src/tools/__tests__/payeeTools.delta.integration.test.ts +68 -68
- package/src/tools/__tests__/payeeTools.integration.test.ts +158 -142
- package/src/tools/__tests__/payeeTools.test.ts +486 -434
- package/src/tools/__tests__/transactionSchemas.test.ts +1204 -0
- package/src/tools/__tests__/transactionTools.integration.test.ts +875 -825
- package/src/tools/__tests__/transactionTools.test.ts +4923 -4366
- package/src/tools/__tests__/transactionUtils.test.ts +1016 -0
- package/src/tools/__tests__/utilityTools.integration.test.ts +32 -32
- package/src/tools/__tests__/utilityTools.test.ts +68 -58
- package/src/tools/accountTools.ts +293 -271
- package/src/tools/adapters.ts +120 -63
- package/src/tools/budgetTools.ts +121 -116
- package/src/tools/categoryTools.ts +379 -339
- package/src/tools/compareTransactions/formatter.ts +131 -119
- package/src/tools/compareTransactions/index.ts +249 -214
- package/src/tools/compareTransactions/matcher.ts +259 -209
- package/src/tools/compareTransactions/parser.ts +517 -487
- package/src/tools/compareTransactions/types.ts +38 -38
- package/src/tools/compareTransactions.ts +1 -1
- package/src/tools/deltaFetcher.ts +281 -260
- package/src/tools/deltaSupport.ts +264 -259
- package/src/tools/exportTransactions.ts +230 -218
- package/src/tools/monthTools.ts +180 -165
- package/src/tools/payeeTools.ts +152 -140
- package/src/tools/reconcileAdapter.ts +297 -246
- package/src/tools/reconciliation/CLAUDE.md +506 -0
- package/src/tools/reconciliation/__tests__/adapter.causes.test.ts +135 -112
- package/src/tools/reconciliation/__tests__/adapter.test.ts +249 -227
- package/src/tools/reconciliation/__tests__/analyzer.test.ts +408 -335
- package/src/tools/reconciliation/__tests__/csvParser.test.ts +71 -69
- package/src/tools/reconciliation/__tests__/executor.integration.test.ts +348 -323
- package/src/tools/reconciliation/__tests__/executor.progress.test.ts +503 -457
- package/src/tools/reconciliation/__tests__/executor.test.ts +898 -831
- package/src/tools/reconciliation/__tests__/matcher.test.ts +667 -663
- package/src/tools/reconciliation/__tests__/payeeNormalizer.test.ts +296 -276
- package/src/tools/reconciliation/__tests__/recommendationEngine.integration.test.ts +692 -624
- package/src/tools/reconciliation/__tests__/recommendationEngine.test.ts +1008 -986
- package/src/tools/reconciliation/__tests__/reconciliation.delta.integration.test.ts +187 -146
- package/src/tools/reconciliation/__tests__/reportFormatter.test.ts +583 -530
- package/src/tools/reconciliation/__tests__/scenarios/adapterCurrency.scenario.test.ts +75 -71
- package/src/tools/reconciliation/__tests__/scenarios/extremes.scenario.test.ts +70 -58
- package/src/tools/reconciliation/__tests__/scenarios/repeatAmount.scenario.test.ts +102 -88
- package/src/tools/reconciliation/__tests__/schemaUrl.test.ts +58 -43
- package/src/tools/reconciliation/__tests__/signDetector.test.ts +209 -206
- package/src/tools/reconciliation/__tests__/ynabAdapter.test.ts +66 -60
- package/src/tools/reconciliation/analyzer.ts +582 -406
- package/src/tools/reconciliation/csvParser.ts +656 -609
- package/src/tools/reconciliation/executor.ts +1290 -1128
- package/src/tools/reconciliation/index.ts +580 -528
- package/src/tools/reconciliation/matcher.ts +256 -240
- package/src/tools/reconciliation/payeeNormalizer.ts +92 -78
- package/src/tools/reconciliation/recommendationEngine.ts +357 -345
- package/src/tools/reconciliation/reportFormatter.ts +349 -276
- package/src/tools/reconciliation/signDetector.ts +89 -83
- package/src/tools/reconciliation/types.ts +164 -153
- package/src/tools/reconciliation/ynabAdapter.ts +17 -15
- package/src/tools/schemas/CLAUDE.md +546 -0
- package/src/tools/schemas/common.ts +1 -1
- package/src/tools/schemas/outputs/__tests__/accountOutputs.test.ts +410 -409
- package/src/tools/schemas/outputs/__tests__/budgetOutputs.test.ts +305 -299
- package/src/tools/schemas/outputs/__tests__/categoryOutputs.test.ts +431 -430
- package/src/tools/schemas/outputs/__tests__/comparisonOutputs.test.ts +510 -495
- package/src/tools/schemas/outputs/__tests__/dateValidation.test.ts +179 -153
- package/src/tools/schemas/outputs/__tests__/discrepancyDirection.test.ts +293 -254
- package/src/tools/schemas/outputs/__tests__/monthOutputs.test.ts +457 -457
- package/src/tools/schemas/outputs/__tests__/payeeOutputs.test.ts +362 -356
- package/src/tools/schemas/outputs/__tests__/reconciliationOutputs.test.ts +402 -399
- package/src/tools/schemas/outputs/__tests__/transactionMutationSchemas.test.ts +225 -211
- package/src/tools/schemas/outputs/__tests__/transactionOutputs.test.ts +457 -454
- package/src/tools/schemas/outputs/__tests__/utilityOutputs.test.ts +316 -315
- package/src/tools/schemas/outputs/accountOutputs.ts +40 -34
- package/src/tools/schemas/outputs/budgetOutputs.ts +24 -19
- package/src/tools/schemas/outputs/categoryOutputs.ts +76 -56
- package/src/tools/schemas/outputs/comparisonOutputs.ts +192 -169
- package/src/tools/schemas/outputs/index.ts +163 -163
- package/src/tools/schemas/outputs/monthOutputs.ts +95 -80
- package/src/tools/schemas/outputs/payeeOutputs.ts +18 -18
- package/src/tools/schemas/outputs/reconciliationOutputs.ts +386 -373
- package/src/tools/schemas/outputs/transactionMutationOutputs.ts +259 -231
- package/src/tools/schemas/outputs/transactionOutputs.ts +81 -71
- package/src/tools/schemas/outputs/utilityOutputs.ts +90 -84
- package/src/tools/schemas/shared/commonOutputs.ts +27 -19
- package/src/tools/toolCategories.ts +114 -114
- package/src/tools/transactionReadTools.ts +327 -0
- package/src/tools/transactionSchemas.ts +484 -0
- package/src/tools/transactionTools.ts +107 -2990
- package/src/tools/transactionUtils.ts +621 -0
- package/src/tools/transactionWriteTools.ts +2110 -0
- package/src/tools/utilityTools.ts +46 -41
- package/src/types/CLAUDE.md +477 -0
- package/src/types/__tests__/index.test.ts +51 -51
- package/src/types/index.ts +43 -39
- package/src/types/integration-tests.d.ts +26 -26
- package/src/types/reconciliation.ts +29 -29
- package/src/types/toolAnnotations.ts +30 -30
- package/src/types/toolRegistration.ts +43 -32
- package/src/utils/CLAUDE.md +508 -0
- package/src/utils/__tests__/dateUtils.test.ts +174 -168
- package/src/utils/__tests__/money.test.ts +193 -187
- package/src/utils/amountUtils.ts +5 -5
- package/src/utils/baseError.ts +5 -5
- package/src/utils/dateUtils.ts +29 -26
- package/src/utils/errors.ts +14 -14
- package/src/utils/money.ts +66 -52
- package/src/utils/validationError.ts +1 -1
- package/tsconfig.json +29 -29
- package/tsconfig.prod.json +16 -16
- package/vitest-reporters/split-json-reporter.ts +247 -204
- package/vitest.config.ts +99 -95
- package/.prettierignore +0 -10
- package/.prettierrc.json +0 -10
- package/eslint.config.js +0 -49
|
@@ -4,820 +4,853 @@
|
|
|
4
4
|
* Tests diagnostic data collection functionality.
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import {
|
|
7
|
+
import { beforeEach, describe, expect, it, vi } from "vitest";
|
|
8
8
|
import {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
} from
|
|
9
|
+
type DiagnosticDependencies,
|
|
10
|
+
DiagnosticManager,
|
|
11
|
+
type DiagnosticOptions,
|
|
12
|
+
formatBytes,
|
|
13
|
+
formatUptime,
|
|
14
|
+
maskToken,
|
|
15
|
+
} from "../diagnostics.js";
|
|
16
16
|
|
|
17
17
|
// Mock SecurityMiddleware
|
|
18
18
|
const mockSecurityMiddleware = {
|
|
19
|
-
|
|
19
|
+
getSecurityStats: vi.fn(),
|
|
20
20
|
};
|
|
21
21
|
|
|
22
22
|
// Mock CacheManager
|
|
23
23
|
const mockCacheManager = {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
24
|
+
getStats: vi.fn(),
|
|
25
|
+
getEntriesForSizeEstimation: vi.fn(),
|
|
26
|
+
getCacheMetadata: vi.fn(),
|
|
27
27
|
};
|
|
28
28
|
|
|
29
29
|
// Mock response formatter
|
|
30
30
|
const mockResponseFormatter = {
|
|
31
|
-
|
|
31
|
+
format: vi.fn((data) => JSON.stringify(data)),
|
|
32
32
|
};
|
|
33
33
|
|
|
34
34
|
const mockKnowledgeStore = {
|
|
35
|
-
|
|
35
|
+
getStats: vi.fn(),
|
|
36
36
|
};
|
|
37
37
|
|
|
38
38
|
const mockDeltaCache = {
|
|
39
|
-
|
|
39
|
+
getStats: vi.fn(),
|
|
40
40
|
};
|
|
41
41
|
|
|
42
42
|
// Mock process functions for testing
|
|
43
43
|
const mockProcess = {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
44
|
+
uptime: vi.fn(),
|
|
45
|
+
memoryUsage: vi.fn(),
|
|
46
|
+
env: {} as Record<string, string | undefined>,
|
|
47
|
+
version: "v18.0.0",
|
|
48
|
+
platform: "linux",
|
|
49
|
+
arch: "x64",
|
|
50
|
+
pid: 12345,
|
|
51
|
+
cwd: vi.fn(),
|
|
52
52
|
};
|
|
53
53
|
|
|
54
|
-
describe(
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
54
|
+
describe("diagnostics module", () => {
|
|
55
|
+
let diagnosticManager: DiagnosticManager;
|
|
56
|
+
let dependencies: DiagnosticDependencies;
|
|
57
|
+
|
|
58
|
+
beforeEach(() => {
|
|
59
|
+
vi.clearAllMocks();
|
|
60
|
+
|
|
61
|
+
dependencies = {
|
|
62
|
+
securityMiddleware: mockSecurityMiddleware as any,
|
|
63
|
+
cacheManager: mockCacheManager as any,
|
|
64
|
+
responseFormatter: mockResponseFormatter,
|
|
65
|
+
serverVersion: "1.0.0",
|
|
66
|
+
serverKnowledgeStore: mockKnowledgeStore as any,
|
|
67
|
+
deltaCache: mockDeltaCache as any,
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
diagnosticManager = new DiagnosticManager(dependencies);
|
|
71
|
+
|
|
72
|
+
// Mock process methods
|
|
73
|
+
vi.spyOn(process, "uptime").mockImplementation(mockProcess.uptime);
|
|
74
|
+
vi.spyOn(process, "memoryUsage").mockImplementation(
|
|
75
|
+
mockProcess.memoryUsage,
|
|
76
|
+
);
|
|
77
|
+
vi.spyOn(process, "cwd").mockImplementation(mockProcess.cwd);
|
|
78
|
+
|
|
79
|
+
// Set up default mock values
|
|
80
|
+
mockProcess.uptime.mockReturnValue(3661.5); // 1 hour, 1 minute, 1.5 seconds
|
|
81
|
+
mockProcess.memoryUsage.mockReturnValue({
|
|
82
|
+
rss: 100 * 1024 * 1024, // 100 MB
|
|
83
|
+
heapUsed: 50 * 1024 * 1024, // 50 MB
|
|
84
|
+
heapTotal: 80 * 1024 * 1024, // 80 MB
|
|
85
|
+
external: 10 * 1024 * 1024, // 10 MB
|
|
86
|
+
arrayBuffers: 5 * 1024 * 1024, // 5 MB
|
|
87
|
+
});
|
|
88
|
+
mockProcess.cwd.mockReturnValue("/test/directory");
|
|
89
|
+
|
|
90
|
+
mockSecurityMiddleware.getSecurityStats.mockReturnValue({
|
|
91
|
+
requests: 100,
|
|
92
|
+
blocked: 5,
|
|
93
|
+
rate_limited: 2,
|
|
94
|
+
});
|
|
95
|
+
|
|
96
|
+
mockCacheManager.getStats.mockReturnValue({
|
|
97
|
+
size: 10,
|
|
98
|
+
keys: ["key1", "key2", "key3"],
|
|
99
|
+
hits: 25,
|
|
100
|
+
misses: 5,
|
|
101
|
+
evictions: 2,
|
|
102
|
+
lastCleanup: Date.now() - 5 * 60 * 1000, // 5 minutes ago
|
|
103
|
+
maxEntries: 1000,
|
|
104
|
+
hitRate: 0.833,
|
|
105
|
+
});
|
|
106
|
+
mockCacheManager.getCacheMetadata.mockReturnValue([
|
|
107
|
+
{
|
|
108
|
+
key: "key1",
|
|
109
|
+
timestamp: Date.now(),
|
|
110
|
+
ttl: 1000,
|
|
111
|
+
dataType: "string",
|
|
112
|
+
isExpired: false,
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
key: "key2",
|
|
116
|
+
timestamp: Date.now(),
|
|
117
|
+
ttl: 2000,
|
|
118
|
+
dataType: "object",
|
|
119
|
+
isExpired: false,
|
|
120
|
+
},
|
|
121
|
+
]);
|
|
122
|
+
mockKnowledgeStore.getStats.mockReturnValue({ entryCount: 0, entries: {} });
|
|
123
|
+
mockDeltaCache.getStats.mockReturnValue({
|
|
124
|
+
deltaHits: 0,
|
|
125
|
+
deltaMisses: 0,
|
|
126
|
+
mergeOperations: 0,
|
|
127
|
+
knowledgeGapEvents: 0,
|
|
128
|
+
});
|
|
129
|
+
});
|
|
130
|
+
|
|
131
|
+
describe("DiagnosticManager", () => {
|
|
132
|
+
describe("constructor", () => {
|
|
133
|
+
it("should initialize with dependencies", () => {
|
|
134
|
+
expect(diagnosticManager).toBeInstanceOf(DiagnosticManager);
|
|
135
|
+
});
|
|
136
|
+
});
|
|
137
|
+
|
|
138
|
+
describe("collectDiagnostics", () => {
|
|
139
|
+
it("should always include timestamp", async () => {
|
|
140
|
+
const options: DiagnosticOptions = {};
|
|
141
|
+
const result = await diagnosticManager.collectDiagnostics(options);
|
|
142
|
+
|
|
143
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
144
|
+
expect.objectContaining({
|
|
145
|
+
timestamp: expect.any(String),
|
|
146
|
+
}),
|
|
147
|
+
);
|
|
148
|
+
|
|
149
|
+
expect(result).toEqual({
|
|
150
|
+
content: [{ type: "text", text: expect.any(String) }],
|
|
151
|
+
});
|
|
152
|
+
});
|
|
153
|
+
|
|
154
|
+
describe("server diagnostics", () => {
|
|
155
|
+
it("should include server information when include_server is true", async () => {
|
|
156
|
+
const options: DiagnosticOptions = { include_server: true };
|
|
157
|
+
await diagnosticManager.collectDiagnostics(options);
|
|
158
|
+
|
|
159
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
160
|
+
expect.objectContaining({
|
|
161
|
+
server: expect.objectContaining({
|
|
162
|
+
name: "ynab-mcp-server",
|
|
163
|
+
version: "1.0.0",
|
|
164
|
+
node_version: expect.any(String),
|
|
165
|
+
platform: expect.any(String),
|
|
166
|
+
arch: expect.any(String),
|
|
167
|
+
pid: expect.any(Number),
|
|
168
|
+
uptime_ms: 3661500,
|
|
169
|
+
uptime_readable: "1h 1m 1s",
|
|
170
|
+
env: expect.objectContaining({
|
|
171
|
+
node_env: expect.any(String),
|
|
172
|
+
minify_output: expect.any(String),
|
|
173
|
+
}),
|
|
174
|
+
}),
|
|
175
|
+
}),
|
|
176
|
+
);
|
|
177
|
+
});
|
|
178
|
+
|
|
179
|
+
it("should exclude server information when include_server is false", async () => {
|
|
180
|
+
const options: DiagnosticOptions = { include_server: false };
|
|
181
|
+
await diagnosticManager.collectDiagnostics(options);
|
|
182
|
+
|
|
183
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
184
|
+
expect.not.objectContaining({
|
|
185
|
+
server: expect.anything(),
|
|
186
|
+
}),
|
|
187
|
+
);
|
|
188
|
+
});
|
|
189
|
+
|
|
190
|
+
it("should handle custom NODE_ENV", async () => {
|
|
191
|
+
const originalEnv = process.env.NODE_ENV;
|
|
192
|
+
process.env.NODE_ENV = "production";
|
|
193
|
+
|
|
194
|
+
try {
|
|
195
|
+
const options: DiagnosticOptions = { include_server: true };
|
|
196
|
+
await diagnosticManager.collectDiagnostics(options);
|
|
197
|
+
|
|
198
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
199
|
+
expect.objectContaining({
|
|
200
|
+
server: expect.objectContaining({
|
|
201
|
+
env: expect.objectContaining({
|
|
202
|
+
node_env: "production",
|
|
203
|
+
}),
|
|
204
|
+
}),
|
|
205
|
+
}),
|
|
206
|
+
);
|
|
207
|
+
} finally {
|
|
208
|
+
process.env.NODE_ENV = originalEnv;
|
|
209
|
+
}
|
|
210
|
+
});
|
|
211
|
+
});
|
|
212
|
+
|
|
213
|
+
describe("memory diagnostics", () => {
|
|
214
|
+
it("should include memory information when include_memory is true", async () => {
|
|
215
|
+
const options: DiagnosticOptions = { include_memory: true };
|
|
216
|
+
await diagnosticManager.collectDiagnostics(options);
|
|
217
|
+
|
|
218
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
219
|
+
expect.objectContaining({
|
|
220
|
+
memory: {
|
|
221
|
+
rss_mb: 100,
|
|
222
|
+
heap_used_mb: 50,
|
|
223
|
+
heap_total_mb: 80,
|
|
224
|
+
external_mb: 10,
|
|
225
|
+
array_buffers_mb: 5,
|
|
226
|
+
description: {
|
|
227
|
+
rss: "Resident Set Size - total memory allocated for the process",
|
|
228
|
+
heap_used: "Used heap memory (objects, closures, etc.)",
|
|
229
|
+
heap_total: "Total heap memory allocated",
|
|
230
|
+
external:
|
|
231
|
+
"Memory used by C++ objects bound to JavaScript objects",
|
|
232
|
+
array_buffers:
|
|
233
|
+
"Memory allocated for ArrayBuffer and SharedArrayBuffer",
|
|
234
|
+
},
|
|
235
|
+
},
|
|
236
|
+
}),
|
|
237
|
+
);
|
|
238
|
+
});
|
|
239
|
+
|
|
240
|
+
it("should exclude memory information when include_memory is false", async () => {
|
|
241
|
+
const options: DiagnosticOptions = { include_memory: false };
|
|
242
|
+
await diagnosticManager.collectDiagnostics(options);
|
|
243
|
+
|
|
244
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
245
|
+
expect.not.objectContaining({
|
|
246
|
+
memory: expect.anything(),
|
|
247
|
+
}),
|
|
248
|
+
);
|
|
249
|
+
});
|
|
250
|
+
|
|
251
|
+
it("should handle undefined arrayBuffers", async () => {
|
|
252
|
+
mockProcess.memoryUsage.mockReturnValue({
|
|
253
|
+
rss: 100 * 1024 * 1024,
|
|
254
|
+
heapUsed: 50 * 1024 * 1024,
|
|
255
|
+
heapTotal: 80 * 1024 * 1024,
|
|
256
|
+
external: 10 * 1024 * 1024,
|
|
257
|
+
arrayBuffers: undefined,
|
|
258
|
+
});
|
|
259
|
+
|
|
260
|
+
const options: DiagnosticOptions = { include_memory: true };
|
|
261
|
+
await diagnosticManager.collectDiagnostics(options);
|
|
262
|
+
|
|
263
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
264
|
+
expect.objectContaining({
|
|
265
|
+
memory: expect.objectContaining({
|
|
266
|
+
array_buffers_mb: 0,
|
|
267
|
+
}),
|
|
268
|
+
}),
|
|
269
|
+
);
|
|
270
|
+
});
|
|
271
|
+
});
|
|
272
|
+
|
|
273
|
+
describe("environment diagnostics", () => {
|
|
274
|
+
it("should include environment information when include_environment is true", async () => {
|
|
275
|
+
const originalEnv = process.env;
|
|
276
|
+
process.env = {
|
|
277
|
+
...originalEnv,
|
|
278
|
+
YNAB_ACCESS_TOKEN: "test-token-123456",
|
|
279
|
+
YNAB_MCP_DEBUG: "true",
|
|
280
|
+
OTHER_VAR: "value",
|
|
281
|
+
};
|
|
282
|
+
|
|
283
|
+
try {
|
|
284
|
+
const options: DiagnosticOptions = { include_environment: true };
|
|
285
|
+
await diagnosticManager.collectDiagnostics(options);
|
|
286
|
+
|
|
287
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
288
|
+
expect.objectContaining({
|
|
289
|
+
environment: expect.objectContaining({
|
|
290
|
+
token_present: true,
|
|
291
|
+
token_length: 18,
|
|
292
|
+
token_preview: "test...3456",
|
|
293
|
+
ynab_env_keys_present: expect.arrayContaining([
|
|
294
|
+
"YNAB_ACCESS_TOKEN",
|
|
295
|
+
"YNAB_MCP_DEBUG",
|
|
296
|
+
]),
|
|
297
|
+
working_directory: "/test/directory",
|
|
298
|
+
}),
|
|
299
|
+
}),
|
|
300
|
+
);
|
|
301
|
+
} finally {
|
|
302
|
+
process.env = originalEnv;
|
|
303
|
+
}
|
|
304
|
+
});
|
|
305
|
+
|
|
306
|
+
it("should handle missing token", async () => {
|
|
307
|
+
const originalEnv = process.env;
|
|
308
|
+
process.env = { ...originalEnv };
|
|
309
|
+
process.env.YNAB_ACCESS_TOKEN = undefined;
|
|
310
|
+
|
|
311
|
+
try {
|
|
312
|
+
const options: DiagnosticOptions = { include_environment: true };
|
|
313
|
+
await diagnosticManager.collectDiagnostics(options);
|
|
314
|
+
|
|
315
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
316
|
+
expect.objectContaining({
|
|
317
|
+
environment: expect.objectContaining({
|
|
318
|
+
token_present: false,
|
|
319
|
+
token_length: 0,
|
|
320
|
+
token_preview: null,
|
|
321
|
+
}),
|
|
322
|
+
}),
|
|
323
|
+
);
|
|
324
|
+
} finally {
|
|
325
|
+
process.env = originalEnv;
|
|
326
|
+
}
|
|
327
|
+
});
|
|
328
|
+
});
|
|
329
|
+
|
|
330
|
+
describe("delta diagnostics", () => {
|
|
331
|
+
it("should include delta metrics when include_delta is true", async () => {
|
|
332
|
+
const originalEnv = process.env.YNAB_MCP_ENABLE_DELTA;
|
|
333
|
+
process.env.YNAB_MCP_ENABLE_DELTA = "true";
|
|
334
|
+
|
|
335
|
+
try {
|
|
336
|
+
mockKnowledgeStore.getStats.mockReturnValue({
|
|
337
|
+
entryCount: 2,
|
|
338
|
+
entries: {
|
|
339
|
+
"accounts:list:budget-1": 1000,
|
|
340
|
+
"transactions:list:budget-1": 1500,
|
|
341
|
+
},
|
|
342
|
+
});
|
|
343
|
+
mockDeltaCache.getStats.mockReturnValue({
|
|
344
|
+
deltaHits: 5,
|
|
345
|
+
deltaMisses: 3,
|
|
346
|
+
mergeOperations: 7,
|
|
347
|
+
knowledgeGapEvents: 1,
|
|
348
|
+
});
|
|
349
|
+
|
|
350
|
+
await diagnosticManager.collectDiagnostics({ include_delta: true });
|
|
351
|
+
|
|
352
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
353
|
+
expect.objectContaining({
|
|
354
|
+
delta: expect.objectContaining({
|
|
355
|
+
enabled: true,
|
|
356
|
+
knowledge_entries: 2,
|
|
357
|
+
knowledge_stats: {
|
|
358
|
+
"accounts:list:budget-1": 1000,
|
|
359
|
+
"transactions:list:budget-1": 1500,
|
|
360
|
+
},
|
|
361
|
+
feature_flag: "true",
|
|
362
|
+
delta_hits: 5,
|
|
363
|
+
delta_misses: 3,
|
|
364
|
+
delta_hit_rate: Number((5 / 8).toFixed(4)),
|
|
365
|
+
merge_operations: 7,
|
|
366
|
+
knowledge_gap_events: 1,
|
|
367
|
+
}),
|
|
368
|
+
}),
|
|
369
|
+
);
|
|
370
|
+
expect(mockDeltaCache.getStats).toHaveBeenCalled();
|
|
371
|
+
} finally {
|
|
372
|
+
if (originalEnv === undefined) {
|
|
373
|
+
process.env.YNAB_MCP_ENABLE_DELTA = undefined;
|
|
374
|
+
} else {
|
|
375
|
+
process.env.YNAB_MCP_ENABLE_DELTA = originalEnv;
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
});
|
|
379
|
+
|
|
380
|
+
it("should skip delta metrics when include_delta is not explicitly true", async () => {
|
|
381
|
+
await diagnosticManager.collectDiagnostics({});
|
|
382
|
+
|
|
383
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
384
|
+
expect.not.objectContaining({
|
|
385
|
+
delta: expect.anything(),
|
|
386
|
+
}),
|
|
387
|
+
);
|
|
388
|
+
expect(mockDeltaCache.getStats).not.toHaveBeenCalled();
|
|
389
|
+
});
|
|
390
|
+
});
|
|
391
|
+
|
|
392
|
+
describe("security diagnostics", () => {
|
|
393
|
+
it("should include security information when include_security is true", async () => {
|
|
394
|
+
const options: DiagnosticOptions = { include_security: true };
|
|
395
|
+
await diagnosticManager.collectDiagnostics(options);
|
|
396
|
+
|
|
397
|
+
expect(
|
|
398
|
+
mockSecurityMiddleware.getSecurityStats,
|
|
399
|
+
).toHaveBeenCalledOnce();
|
|
400
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
401
|
+
expect.objectContaining({
|
|
402
|
+
security: {
|
|
403
|
+
requests: 100,
|
|
404
|
+
blocked: 5,
|
|
405
|
+
rate_limited: 2,
|
|
406
|
+
},
|
|
407
|
+
}),
|
|
408
|
+
);
|
|
409
|
+
});
|
|
410
|
+
|
|
411
|
+
it("should exclude security information when include_security is false", async () => {
|
|
412
|
+
const options: DiagnosticOptions = { include_security: false };
|
|
413
|
+
await diagnosticManager.collectDiagnostics(options);
|
|
414
|
+
|
|
415
|
+
expect(
|
|
416
|
+
mockSecurityMiddleware.getSecurityStats,
|
|
417
|
+
).not.toHaveBeenCalled();
|
|
418
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
419
|
+
expect.not.objectContaining({
|
|
420
|
+
security: expect.anything(),
|
|
421
|
+
}),
|
|
422
|
+
);
|
|
423
|
+
});
|
|
424
|
+
});
|
|
425
|
+
|
|
426
|
+
describe("cache diagnostics", () => {
|
|
427
|
+
it("should include cache information when include_cache is true", async () => {
|
|
428
|
+
const options: DiagnosticOptions = { include_cache: true };
|
|
429
|
+
await diagnosticManager.collectDiagnostics(options);
|
|
430
|
+
|
|
431
|
+
expect(mockCacheManager.getStats).toHaveBeenCalledOnce();
|
|
432
|
+
expect(mockCacheManager.getCacheMetadata).toHaveBeenCalledOnce();
|
|
433
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
434
|
+
expect.objectContaining({
|
|
435
|
+
cache: expect.objectContaining({
|
|
436
|
+
entries: 10,
|
|
437
|
+
estimated_size_kb: expect.any(Number),
|
|
438
|
+
keys: ["key1", "key2", "key3"],
|
|
439
|
+
hits: 25,
|
|
440
|
+
misses: 5,
|
|
441
|
+
evictions: 2,
|
|
442
|
+
lastCleanup: expect.any(String),
|
|
443
|
+
maxEntries: 1000,
|
|
444
|
+
hitRate: "83.30%",
|
|
445
|
+
performance_summary: expect.stringContaining("Hit rate: 83.3%"),
|
|
446
|
+
}),
|
|
447
|
+
}),
|
|
448
|
+
);
|
|
449
|
+
});
|
|
450
|
+
|
|
451
|
+
it("should handle cache serialization errors gracefully", async () => {
|
|
452
|
+
mockCacheManager.getCacheMetadata.mockImplementation(() => {
|
|
453
|
+
const circular: any = {};
|
|
454
|
+
circular.self = circular;
|
|
455
|
+
return circular;
|
|
456
|
+
});
|
|
457
|
+
|
|
458
|
+
const options: DiagnosticOptions = { include_cache: true };
|
|
459
|
+
await diagnosticManager.collectDiagnostics(options);
|
|
460
|
+
|
|
461
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
462
|
+
expect.objectContaining({
|
|
463
|
+
cache: expect.objectContaining({
|
|
464
|
+
estimated_size_kb: 0,
|
|
465
|
+
}),
|
|
466
|
+
}),
|
|
467
|
+
);
|
|
468
|
+
});
|
|
469
|
+
|
|
470
|
+
it("should include enhanced cache metrics when available", async () => {
|
|
471
|
+
const options: DiagnosticOptions = { include_cache: true };
|
|
472
|
+
await diagnosticManager.collectDiagnostics(options);
|
|
473
|
+
|
|
474
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
475
|
+
expect.objectContaining({
|
|
476
|
+
cache: expect.objectContaining({
|
|
477
|
+
hits: 25,
|
|
478
|
+
misses: 5,
|
|
479
|
+
evictions: 2,
|
|
480
|
+
lastCleanup: expect.any(String),
|
|
481
|
+
maxEntries: 1000,
|
|
482
|
+
hitRate: "83.30%",
|
|
483
|
+
}),
|
|
484
|
+
}),
|
|
485
|
+
);
|
|
486
|
+
});
|
|
487
|
+
|
|
488
|
+
it("should handle missing enhanced metrics gracefully", async () => {
|
|
489
|
+
// Mock old cache manager that only returns basic stats
|
|
490
|
+
mockCacheManager.getStats.mockReturnValue({
|
|
491
|
+
size: 5,
|
|
492
|
+
keys: ["key1", "key2"],
|
|
493
|
+
});
|
|
494
|
+
|
|
495
|
+
const options: DiagnosticOptions = { include_cache: true };
|
|
496
|
+
await diagnosticManager.collectDiagnostics(options);
|
|
497
|
+
|
|
498
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
499
|
+
expect.objectContaining({
|
|
500
|
+
cache: expect.objectContaining({
|
|
501
|
+
entries: 5,
|
|
502
|
+
keys: ["key1", "key2"],
|
|
503
|
+
estimated_size_kb: expect.any(Number),
|
|
504
|
+
}),
|
|
505
|
+
}),
|
|
506
|
+
);
|
|
507
|
+
|
|
508
|
+
// Should not include enhanced metrics
|
|
509
|
+
expect(mockResponseFormatter.format).not.toHaveBeenCalledWith(
|
|
510
|
+
expect.objectContaining({
|
|
511
|
+
cache: expect.objectContaining({
|
|
512
|
+
hits: expect.any(Number),
|
|
513
|
+
}),
|
|
514
|
+
}),
|
|
515
|
+
);
|
|
516
|
+
});
|
|
517
|
+
|
|
518
|
+
it("should format lastCleanup timestamp correctly", async () => {
|
|
519
|
+
const testTimestamp = Date.now() - 3 * 60 * 1000; // 3 minutes ago
|
|
520
|
+
mockCacheManager.getStats.mockReturnValue({
|
|
521
|
+
size: 5,
|
|
522
|
+
keys: ["key1"],
|
|
523
|
+
hits: 10,
|
|
524
|
+
misses: 2,
|
|
525
|
+
evictions: 1,
|
|
526
|
+
lastCleanup: testTimestamp,
|
|
527
|
+
maxEntries: 1000,
|
|
528
|
+
hitRate: 0.833,
|
|
529
|
+
});
|
|
530
|
+
|
|
531
|
+
const options: DiagnosticOptions = { include_cache: true };
|
|
532
|
+
await diagnosticManager.collectDiagnostics(options);
|
|
533
|
+
|
|
534
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
535
|
+
expect.objectContaining({
|
|
536
|
+
cache: expect.objectContaining({
|
|
537
|
+
lastCleanup: new Date(testTimestamp).toISOString(),
|
|
538
|
+
}),
|
|
539
|
+
}),
|
|
540
|
+
);
|
|
541
|
+
});
|
|
542
|
+
|
|
543
|
+
it("should handle null lastCleanup timestamp", async () => {
|
|
544
|
+
mockCacheManager.getStats.mockReturnValue({
|
|
545
|
+
size: 5,
|
|
546
|
+
keys: ["key1"],
|
|
547
|
+
hits: 10,
|
|
548
|
+
misses: 2,
|
|
549
|
+
evictions: 0,
|
|
550
|
+
lastCleanup: null,
|
|
551
|
+
maxEntries: 1000,
|
|
552
|
+
hitRate: 0.833,
|
|
553
|
+
});
|
|
554
|
+
|
|
555
|
+
const options: DiagnosticOptions = { include_cache: true };
|
|
556
|
+
await diagnosticManager.collectDiagnostics(options);
|
|
557
|
+
|
|
558
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
559
|
+
expect.objectContaining({
|
|
560
|
+
cache: expect.objectContaining({
|
|
561
|
+
lastCleanup: null,
|
|
562
|
+
}),
|
|
563
|
+
}),
|
|
564
|
+
);
|
|
565
|
+
});
|
|
566
|
+
|
|
567
|
+
it("should calculate and display hit rate percentage", async () => {
|
|
568
|
+
mockCacheManager.getStats.mockReturnValue({
|
|
569
|
+
size: 3,
|
|
570
|
+
keys: ["key1"],
|
|
571
|
+
hits: 85,
|
|
572
|
+
misses: 15,
|
|
573
|
+
evictions: 0,
|
|
574
|
+
lastCleanup: null,
|
|
575
|
+
maxEntries: 1000,
|
|
576
|
+
hitRate: 0.85,
|
|
577
|
+
});
|
|
578
|
+
|
|
579
|
+
const options: DiagnosticOptions = { include_cache: true };
|
|
580
|
+
await diagnosticManager.collectDiagnostics(options);
|
|
581
|
+
|
|
582
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
583
|
+
expect.objectContaining({
|
|
584
|
+
cache: expect.objectContaining({
|
|
585
|
+
hitRate: "85.00%",
|
|
586
|
+
performance_summary: expect.stringContaining(
|
|
587
|
+
"Hit rate: 85.0% (85 hits, 15 misses)",
|
|
588
|
+
),
|
|
589
|
+
}),
|
|
590
|
+
}),
|
|
591
|
+
);
|
|
592
|
+
});
|
|
593
|
+
|
|
594
|
+
it("should include performance summary with evictions", async () => {
|
|
595
|
+
mockCacheManager.getStats.mockReturnValue({
|
|
596
|
+
size: 1000,
|
|
597
|
+
keys: Array.from({ length: 1000 }, (_, i) => `key${i}`),
|
|
598
|
+
hits: 75,
|
|
599
|
+
misses: 25,
|
|
600
|
+
evictions: 15,
|
|
601
|
+
lastCleanup: Date.now() - 10 * 60 * 1000, // 10 minutes ago
|
|
602
|
+
maxEntries: 1000,
|
|
603
|
+
hitRate: 0.75,
|
|
604
|
+
});
|
|
605
|
+
|
|
606
|
+
const options: DiagnosticOptions = { include_cache: true };
|
|
607
|
+
await diagnosticManager.collectDiagnostics(options);
|
|
608
|
+
|
|
609
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
610
|
+
expect.objectContaining({
|
|
611
|
+
cache: expect.objectContaining({
|
|
612
|
+
performance_summary: expect.stringMatching(
|
|
613
|
+
/Hit rate: 75\.0%.*LRU evictions: 15.*Last cleanup: 10 minutes ago/,
|
|
614
|
+
),
|
|
615
|
+
}),
|
|
616
|
+
}),
|
|
617
|
+
);
|
|
618
|
+
});
|
|
619
|
+
|
|
620
|
+
it("should handle zero requests for hit rate calculation", async () => {
|
|
621
|
+
mockCacheManager.getStats.mockReturnValue({
|
|
622
|
+
size: 0,
|
|
623
|
+
keys: [],
|
|
624
|
+
hits: 0,
|
|
625
|
+
misses: 0,
|
|
626
|
+
evictions: 0,
|
|
627
|
+
lastCleanup: null,
|
|
628
|
+
maxEntries: 1000,
|
|
629
|
+
hitRate: 0,
|
|
630
|
+
});
|
|
631
|
+
|
|
632
|
+
const options: DiagnosticOptions = { include_cache: true };
|
|
633
|
+
await diagnosticManager.collectDiagnostics(options);
|
|
634
|
+
|
|
635
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
636
|
+
expect.objectContaining({
|
|
637
|
+
cache: expect.objectContaining({
|
|
638
|
+
hitRate: "0.00%",
|
|
639
|
+
performance_summary: expect.stringContaining(
|
|
640
|
+
"Hit rate: 0.0% (0 hits, 0 misses)",
|
|
641
|
+
),
|
|
642
|
+
}),
|
|
643
|
+
}),
|
|
644
|
+
);
|
|
645
|
+
});
|
|
646
|
+
});
|
|
647
|
+
|
|
648
|
+
describe("combined diagnostics", () => {
|
|
649
|
+
it("should include all diagnostics when all options are true", async () => {
|
|
650
|
+
const options: DiagnosticOptions = {
|
|
651
|
+
include_server: true,
|
|
652
|
+
include_memory: true,
|
|
653
|
+
include_environment: true,
|
|
654
|
+
include_security: true,
|
|
655
|
+
include_cache: true,
|
|
656
|
+
};
|
|
657
|
+
|
|
658
|
+
await diagnosticManager.collectDiagnostics(options);
|
|
659
|
+
|
|
660
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
661
|
+
expect.objectContaining({
|
|
662
|
+
timestamp: expect.any(String),
|
|
663
|
+
server: expect.any(Object),
|
|
664
|
+
memory: expect.any(Object),
|
|
665
|
+
environment: expect.any(Object),
|
|
666
|
+
security: expect.any(Object),
|
|
667
|
+
cache: expect.any(Object),
|
|
668
|
+
}),
|
|
669
|
+
);
|
|
670
|
+
});
|
|
671
|
+
|
|
672
|
+
it("should include only timestamp when all options are false", async () => {
|
|
673
|
+
const options: DiagnosticOptions = {
|
|
674
|
+
include_server: false,
|
|
675
|
+
include_memory: false,
|
|
676
|
+
include_environment: false,
|
|
677
|
+
include_security: false,
|
|
678
|
+
include_cache: false,
|
|
679
|
+
};
|
|
680
|
+
|
|
681
|
+
await diagnosticManager.collectDiagnostics(options);
|
|
682
|
+
|
|
683
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith({
|
|
684
|
+
timestamp: expect.any(String),
|
|
685
|
+
});
|
|
686
|
+
});
|
|
687
|
+
});
|
|
688
|
+
});
|
|
689
|
+
});
|
|
690
|
+
|
|
691
|
+
describe("utility functions", () => {
|
|
692
|
+
describe("formatUptime", () => {
|
|
693
|
+
it("should format seconds only", () => {
|
|
694
|
+
expect(formatUptime(5000)).toBe("5s");
|
|
695
|
+
expect(formatUptime(59000)).toBe("59s");
|
|
696
|
+
});
|
|
697
|
+
|
|
698
|
+
it("should format minutes and seconds", () => {
|
|
699
|
+
expect(formatUptime(60000)).toBe("1m 0s");
|
|
700
|
+
expect(formatUptime(90000)).toBe("1m 30s");
|
|
701
|
+
expect(formatUptime(3540000)).toBe("59m 0s");
|
|
702
|
+
});
|
|
703
|
+
|
|
704
|
+
it("should format hours, minutes, and seconds", () => {
|
|
705
|
+
expect(formatUptime(3600000)).toBe("1h 0m 0s");
|
|
706
|
+
expect(formatUptime(3661000)).toBe("1h 1m 1s");
|
|
707
|
+
expect(formatUptime(86340000)).toBe("23h 59m 0s");
|
|
708
|
+
});
|
|
709
|
+
|
|
710
|
+
it("should format days, hours, minutes, and seconds", () => {
|
|
711
|
+
expect(formatUptime(86400000)).toBe("1d 0h 0m 0s");
|
|
712
|
+
expect(formatUptime(90061000)).toBe("1d 1h 1m 1s");
|
|
713
|
+
expect(formatUptime(172800000)).toBe("2d 0h 0m 0s");
|
|
714
|
+
});
|
|
715
|
+
|
|
716
|
+
it("should handle zero uptime", () => {
|
|
717
|
+
expect(formatUptime(0)).toBe("0s");
|
|
718
|
+
});
|
|
719
|
+
|
|
720
|
+
it("should handle fractional milliseconds", () => {
|
|
721
|
+
expect(formatUptime(1500.7)).toBe("1s");
|
|
722
|
+
expect(formatUptime(59999.9)).toBe("59s");
|
|
723
|
+
});
|
|
724
|
+
});
|
|
725
|
+
|
|
726
|
+
describe("formatBytes", () => {
|
|
727
|
+
it("should format bytes to MB with proper rounding", () => {
|
|
728
|
+
expect(formatBytes(0)).toBe(0);
|
|
729
|
+
expect(formatBytes(1024)).toBe(0);
|
|
730
|
+
expect(formatBytes(1024 * 1024)).toBe(1);
|
|
731
|
+
expect(formatBytes(1024 * 1024 * 1.5)).toBe(1.5);
|
|
732
|
+
expect(formatBytes(1024 * 1024 * 100.123)).toBe(100.12);
|
|
733
|
+
});
|
|
734
|
+
|
|
735
|
+
it("should handle large values", () => {
|
|
736
|
+
expect(formatBytes(1024 * 1024 * 1000)).toBe(1000);
|
|
737
|
+
expect(formatBytes(1024 * 1024 * 1024)).toBe(1024);
|
|
738
|
+
});
|
|
739
|
+
});
|
|
740
|
+
|
|
741
|
+
describe("maskToken", () => {
|
|
742
|
+
it("should return null for undefined token", () => {
|
|
743
|
+
expect(maskToken(undefined)).toBeNull();
|
|
744
|
+
});
|
|
745
|
+
|
|
746
|
+
it("should return null for empty token", () => {
|
|
747
|
+
expect(maskToken("")).toBeNull();
|
|
748
|
+
});
|
|
749
|
+
|
|
750
|
+
it("should mask tokens with 8+ characters", () => {
|
|
751
|
+
expect(maskToken("12345678")).toBe("1234...5678");
|
|
752
|
+
expect(maskToken("abcdefghijklmnop")).toBe("abcd...mnop");
|
|
753
|
+
expect(maskToken("very-long-token-with-many-chars")).toBe(
|
|
754
|
+
"very...-chars",
|
|
755
|
+
);
|
|
756
|
+
});
|
|
757
|
+
|
|
758
|
+
it("should mask short tokens differently", () => {
|
|
759
|
+
expect(maskToken("a")).toBe("a***");
|
|
760
|
+
expect(maskToken("ab")).toBe("a***");
|
|
761
|
+
expect(maskToken("abc")).toBe("a***");
|
|
762
|
+
expect(maskToken("1234567")).toBe("1***");
|
|
763
|
+
});
|
|
764
|
+
});
|
|
765
|
+
});
|
|
766
|
+
|
|
767
|
+
describe("dependency injection", () => {
|
|
768
|
+
it("should use injected security middleware", async () => {
|
|
769
|
+
const customSecurityMiddleware = {
|
|
770
|
+
getSecurityStats: vi.fn().mockReturnValue({ custom: "stats" }),
|
|
771
|
+
};
|
|
772
|
+
|
|
773
|
+
const customDependencies = {
|
|
774
|
+
...dependencies,
|
|
775
|
+
securityMiddleware: customSecurityMiddleware as any,
|
|
776
|
+
};
|
|
777
|
+
|
|
778
|
+
const customDiagnosticManager = new DiagnosticManager(customDependencies);
|
|
779
|
+
await customDiagnosticManager.collectDiagnostics({
|
|
780
|
+
include_security: true,
|
|
781
|
+
});
|
|
782
|
+
|
|
783
|
+
expect(customSecurityMiddleware.getSecurityStats).toHaveBeenCalledOnce();
|
|
784
|
+
expect(mockSecurityMiddleware.getSecurityStats).not.toHaveBeenCalled();
|
|
785
|
+
});
|
|
786
|
+
|
|
787
|
+
it("should use injected cache manager", async () => {
|
|
788
|
+
const customCacheManager = {
|
|
789
|
+
getStats: vi.fn().mockReturnValue({ size: 5, keys: ["custom"] }),
|
|
790
|
+
getEntriesForSizeEstimation: vi
|
|
791
|
+
.fn()
|
|
792
|
+
.mockReturnValue({ custom: "data" }),
|
|
793
|
+
getCacheMetadata: vi.fn().mockReturnValue([
|
|
794
|
+
{
|
|
795
|
+
key: "custom",
|
|
796
|
+
timestamp: Date.now(),
|
|
797
|
+
ttl: 1000,
|
|
798
|
+
dataType: "object",
|
|
799
|
+
isExpired: false,
|
|
800
|
+
},
|
|
801
|
+
]),
|
|
802
|
+
};
|
|
803
|
+
|
|
804
|
+
const customDependencies = {
|
|
805
|
+
...dependencies,
|
|
806
|
+
cacheManager: customCacheManager as any,
|
|
807
|
+
};
|
|
808
|
+
|
|
809
|
+
const customDiagnosticManager = new DiagnosticManager(customDependencies);
|
|
810
|
+
await customDiagnosticManager.collectDiagnostics({ include_cache: true });
|
|
811
|
+
|
|
812
|
+
expect(customCacheManager.getStats).toHaveBeenCalledOnce();
|
|
813
|
+
expect(customCacheManager.getCacheMetadata).toHaveBeenCalledOnce();
|
|
814
|
+
expect(mockCacheManager.getStats).not.toHaveBeenCalled();
|
|
815
|
+
expect(mockCacheManager.getCacheMetadata).not.toHaveBeenCalled();
|
|
816
|
+
});
|
|
817
|
+
|
|
818
|
+
it("should use injected response formatter", async () => {
|
|
819
|
+
const customFormatter = {
|
|
820
|
+
format: vi.fn().mockReturnValue("custom-formatted"),
|
|
821
|
+
};
|
|
822
|
+
|
|
823
|
+
const customDependencies = {
|
|
824
|
+
...dependencies,
|
|
825
|
+
responseFormatter: customFormatter,
|
|
826
|
+
};
|
|
827
|
+
|
|
828
|
+
const customDiagnosticManager = new DiagnosticManager(customDependencies);
|
|
829
|
+
const result = await customDiagnosticManager.collectDiagnostics({});
|
|
830
|
+
|
|
831
|
+
expect(customFormatter.format).toHaveBeenCalled();
|
|
832
|
+
expect(mockResponseFormatter.format).not.toHaveBeenCalled();
|
|
833
|
+
expect(result.content[0].text).toBe("custom-formatted");
|
|
834
|
+
});
|
|
835
|
+
|
|
836
|
+
it("should use injected server version", async () => {
|
|
837
|
+
const customDependencies = {
|
|
838
|
+
...dependencies,
|
|
839
|
+
serverVersion: "2.0.0-beta",
|
|
840
|
+
};
|
|
841
|
+
|
|
842
|
+
const customDiagnosticManager = new DiagnosticManager(customDependencies);
|
|
843
|
+
await customDiagnosticManager.collectDiagnostics({
|
|
844
|
+
include_server: true,
|
|
845
|
+
});
|
|
846
|
+
|
|
847
|
+
expect(mockResponseFormatter.format).toHaveBeenCalledWith(
|
|
848
|
+
expect.objectContaining({
|
|
849
|
+
server: expect.objectContaining({
|
|
850
|
+
version: "2.0.0-beta",
|
|
851
|
+
}),
|
|
852
|
+
}),
|
|
853
|
+
);
|
|
854
|
+
});
|
|
855
|
+
});
|
|
823
856
|
});
|