vibecodingmachine-core 2026.2.26-1739 → 2026.3.9-850
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/package.json +1 -1
- package/src/agents/AgentCheckDiscoveryService.js +180 -0
- package/src/agents/AgentCheckService.js +18 -261
- package/src/agents/AgentCheckStatisticsService.js +195 -0
- package/src/agents/EnvironmentConfigurationManager.js +31 -380
- package/src/agents/InstallationType.js +19 -6
- package/src/agents/SimpleAgentCheckService.js +472 -0
- package/src/agents/config-managers/ConfigUtils.js +72 -0
- package/src/agents/config-managers/DefaultConfig.js +58 -0
- package/src/agents/config-managers/EnvVarLoader.js +66 -0
- package/src/agents/config-managers/FileConfigLoader.js +124 -0
- package/src/agents/config-managers/TypeConverters.js +61 -0
- package/src/agents/config-managers/VariableMappings.js +92 -0
- package/src/agents/discovery/AgentDiscoveryService-refactored.js +272 -0
- package/src/agents/discovery/AgentDiscoveryService.js +29 -403
- package/src/agents/discovery/agent-validator.js +262 -0
- package/src/agents/discovery/discovery-results.js +176 -0
- package/src/agents/discovery/discovery-scanner.js +268 -0
- package/src/agents/discovery/discovery-utils.js +161 -0
- package/src/agents/discovery/executable-analyzer.js +290 -0
- package/src/agents/discovery/history-manager.js +310 -0
- package/src/agents/verification/ResultAnalyzer-refactored.js +341 -0
- package/src/agents/verification/ResultAnalyzer.js +30 -431
- package/src/agents/verification/analysis-utils.js +310 -0
- package/src/agents/verification/batch-analyzer.js +440 -0
- package/src/agents/verification/pattern-recognizer.js +369 -0
- package/src/agents/verification/report-generator.js +320 -0
- package/src/agents/verification/test-analyzer.js +290 -0
- package/src/agents/windows/InstallerFactory.js +4 -0
- package/src/agents/windows/VSCodeExtensionInstaller.js +404 -0
- package/src/analysis/analysis-engine.js +314 -0
- package/src/analysis/ast-analyzer.js +342 -0
- package/src/analysis/boundary-detector-refactored.js +378 -0
- package/src/analysis/boundary-detector.js +200 -603
- package/src/analysis/boundary-scanner.js +609 -0
- package/src/analysis/boundary-types.js +118 -0
- package/src/analysis/boundary-utils.js +293 -0
- package/src/analysis/deadline-priority-calculator.js +18 -0
- package/src/analysis/detection-methods.js +347 -0
- package/src/analysis/importance-priority-calculator.js +18 -0
- package/src/analysis/priority/factor-calculators.js +204 -0
- package/src/analysis/priority/factor-helpers.js +71 -0
- package/src/analysis/priority/priority-constants.js +73 -0
- package/src/analysis/priority/priority-factor-calculators.js +301 -0
- package/src/analysis/priority/reasons-generator.js +44 -0
- package/src/analysis/priority-calculator.js +15 -580
- package/src/analysis/strategy-generator.js +16 -66
- package/src/analysis/type-priority-calculator.js +18 -0
- package/src/analysis/urgency-priority-calculator.js +18 -0
- package/src/auto-mode/AutoModeBusinessLogic.js +2 -40
- package/src/commands/disable-requirement.js +60 -0
- package/src/commands/disable-spec.js +60 -0
- package/src/commands/enable-requirement.js +60 -0
- package/src/commands/enable-spec.js +60 -0
- package/src/commands/registry.js +1 -6
- package/src/commands/requirements.js +8 -2
- package/src/ide-integration/applescript-manager.cjs +9 -24
- package/src/ide-integration/cdp-handlers/chat-reader.js +44 -0
- package/src/ide-integration/cdp-handlers/connection-handler.js +88 -0
- package/src/ide-integration/cdp-handlers/continuation-handler.js +314 -0
- package/src/ide-integration/cdp-handlers/message-submitter.js +75 -0
- package/src/ide-integration/cdp-handlers/text-sender.js +138 -0
- package/src/ide-integration/cdp-manager.js +28 -573
- package/src/ide-integration/claude-code-cli-manager.cjs +48 -12
- package/src/ide-integration/ide-openers/claude-opener.js +171 -0
- package/src/ide-integration/ide-openers/cursor-opener.js +53 -0
- package/src/ide-integration/ide-openers/other-ides-opener.js +230 -0
- package/src/ide-integration/ide-openers/vscode-opener.js +147 -0
- package/src/ide-integration/macos-ide-manager.js +20 -582
- package/src/ide-integration/macos-quota-checker.js +164 -0
- package/src/ide-integration/macos-text-sender.js +19 -38
- package/src/ide-integration/provider-manager.cjs +52 -7
- package/src/index.cjs +6 -0
- package/src/index.js +10 -0
- package/src/llm/direct-llm-manager.cjs +501 -0
- package/src/localization/translations/en-part1.js +363 -0
- package/src/localization/translations/en-part2.js +320 -0
- package/src/localization/translations/en.js +4 -687
- package/src/localization/translations/es-part1.js +363 -0
- package/src/localization/translations/es-part2.js +320 -0
- package/src/localization/translations/es.js +4 -688
- package/src/models/file-analysis-collection.js +139 -0
- package/src/models/file-analysis-metrics.js +50 -0
- package/src/models/file-analysis.js +15 -262
- package/src/models/plan-manager.js +410 -0
- package/src/models/refactoring-models.js +380 -0
- package/src/models/refactoring-plan-refactored.js +81 -0
- package/src/models/refactoring-plan.js +2 -663
- package/src/monitoring/alert-system.js +4 -45
- package/src/monitoring/continuous-scan-notifications.js +37 -191
- package/src/monitoring/notification-handlers/base-handler.js +58 -0
- package/src/monitoring/notification-handlers/error-handler.js +36 -0
- package/src/monitoring/notification-handlers/index.js +21 -0
- package/src/monitoring/notification-handlers/new-violation-handler.js +91 -0
- package/src/monitoring/notification-handlers/progress-handler.js +48 -0
- package/src/monitoring/notification-handlers/resolved-violation-handler.js +54 -0
- package/src/monitoring/notification-handlers/threshold-handler.js +36 -0
- package/src/provider-registry.js +8 -0
- package/src/refactoring/boundary/boundary-detector-refactored.js +58 -0
- package/src/refactoring/boundary/boundary-detector.js +26 -596
- package/src/refactoring/boundary/detectors/boundary-analyzers.js +281 -0
- package/src/refactoring/boundary/detectors/boundary-core.js +167 -0
- package/src/refactoring/boundary/detectors/class-detector.js +247 -0
- package/src/refactoring/boundary/detectors/config-detector.js +270 -0
- package/src/refactoring/boundary/detectors/constant-detector.js +269 -0
- package/src/refactoring/boundary/detectors/function-detector.js +248 -0
- package/src/refactoring/boundary/detectors/module-detector.js +249 -0
- package/src/refactoring/boundary/detectors/object-detector.js +247 -0
- package/src/refactoring/boundary/detectors/type-detectors.js +338 -0
- package/src/refactoring/boundary/detectors/utility-detector.js +270 -0
- package/src/refactoring/circular-dependency-resolver-original.js +16 -76
- package/src/refactoring/code-mover-refactored.js +309 -0
- package/src/refactoring/code-mover.js +48 -355
- package/src/refactoring/execution-status.js +18 -0
- package/src/refactoring/execution-strategies.js +172 -0
- package/src/refactoring/file-splitter-core.js +568 -0
- package/src/refactoring/file-splitter-types.js +136 -0
- package/src/refactoring/file-splitter.js +2 -682
- package/src/refactoring/functionality-validator.js +11 -51
- package/src/refactoring/import-manager-refactored.js +385 -0
- package/src/refactoring/import-manager.js +112 -487
- package/src/refactoring/import-models.js +189 -0
- package/src/refactoring/import-parser.js +306 -0
- package/src/refactoring/move-executor.js +431 -0
- package/src/refactoring/move-utils.js +368 -0
- package/src/refactoring/operation-executor.js +76 -0
- package/src/refactoring/plan-creator.js +36 -0
- package/src/refactoring/plan-executor.js +143 -0
- package/src/refactoring/plan-validator.js +68 -0
- package/src/refactoring/refactoring-executor-result.js +70 -0
- package/src/refactoring/refactoring-executor.js +34 -569
- package/src/refactoring/refactoring-operation.js +94 -0
- package/src/refactoring/refactoring-plan.js +69 -0
- package/src/refactoring/refactoring-rollback.js +22 -527
- package/src/refactoring/rollback-handlers/RollbackExecutor.js +107 -0
- package/src/refactoring/rollback-handlers/RollbackManager.js +265 -0
- package/src/refactoring/rollback-handlers/RollbackOperation.js +105 -0
- package/src/refactoring/rollback-handlers/RollbackResult.js +109 -0
- package/src/refactoring/rollback-handlers/RollbackStatistics.js +77 -0
- package/src/refactoring/test-validator.js +32 -448
- package/src/refactoring/validation/baseline-runner.js +71 -0
- package/src/refactoring/validation/report-generator.js +136 -0
- package/src/refactoring/validation/result-comparator.js +92 -0
- package/src/refactoring/validation/test-suite.js +59 -0
- package/src/refactoring/validation/test-validation-result.js +83 -0
- package/src/refactoring/validation/validation-runner.js +95 -0
- package/src/refactoring/validation/validation-status.js +18 -0
- package/src/rui/commands/AgentCommandParser.js +60 -369
- package/src/rui/commands/AgentResponseFormatter.js +7 -47
- package/src/rui/commands/parsers/CommandMapper.js +148 -0
- package/src/rui/commands/parsers/CommandValidator.js +228 -0
- package/src/rui/commands/parsers/ComponentExtractor.js +100 -0
- package/src/rui/commands/parsers/TokenParser.js +69 -0
- package/src/rui/commands/parsers/tokenizer.js +153 -0
- package/src/utils/current-requirement-operations.js +50 -1
- package/src/utils/report-generator.js +18 -514
- package/src/utils/report-generators/analysis-generator.js +115 -0
- package/src/utils/report-generators/base-generator.js +141 -0
- package/src/utils/report-generators/compliance-generator.js +41 -0
- package/src/utils/report-generators/format-handlers.js +185 -0
- package/src/utils/report-generators/refactoring-generator.js +46 -0
- package/src/utils/report-generators/validation-generator.js +63 -0
- package/src/utils/requirement-enable-disable.js +265 -0
- package/src/utils/requirement-helpers/requirement-file-ops.js +69 -1
- package/src/utils/requirement-helpers/requirement-mover.js +88 -1
- package/src/utils/requirement-helpers.js +5 -2
- package/src/utils/smoke-test-cli.js +45 -8
- package/src/utils/specification-enable-disable.js +122 -0
- package/src/utils/specification-helpers.js +30 -4
- package/src/utils/specification-migration.js +5 -5
- package/src/utils/test-comparator.js +118 -0
- package/src/utils/test-config.js +54 -0
- package/src/utils/test-executor.js +133 -0
- package/src/utils/test-parser.js +215 -0
- package/src/utils/test-runner-baseline.js +63 -0
- package/src/utils/test-runner-core.js +98 -0
- package/src/utils/test-runner-report.js +39 -0
- package/src/utils/test-runner-validation.js +71 -0
- package/src/utils/test-runner.js +11 -535
- package/src/validation/comparison-analyzer.js +333 -0
- package/src/validation/compliance-reporter-new.js +282 -0
- package/src/validation/compliance-reporter-refactored.js +344 -0
- package/src/validation/compliance-reporter.js +278 -591
- package/src/validation/compliance-utils.js +278 -0
- package/src/validation/html-generator.js +446 -0
- package/src/validation/metrics/category-calculator.js +137 -0
- package/src/validation/metrics/metrics-helpers.js +155 -0
- package/src/validation/metrics/overview-calculator.js +85 -0
- package/src/validation/metrics/overview-metrics.js +41 -0
- package/src/validation/metrics/quality-calculator.js +166 -0
- package/src/validation/metrics/size-calculator.js +69 -0
- package/src/validation/metrics-calculator.js +27 -551
|
@@ -0,0 +1,310 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Analysis Utilities
|
|
3
|
+
*
|
|
4
|
+
* Utility functions for verification result analysis.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
const { AgentStatus } = require('../AgentStatus');
|
|
8
|
+
const { VerificationType } = require('../VerificationType');
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Determine test result severity
|
|
12
|
+
* @param {Object} testResult - Test result
|
|
13
|
+
* @returns {string} - Severity level
|
|
14
|
+
*/
|
|
15
|
+
function determineSeverity(testResult) {
|
|
16
|
+
if (!testResult.success) {
|
|
17
|
+
// Check for critical failures
|
|
18
|
+
if (testResult.error && (
|
|
19
|
+
testResult.error.includes('timeout') ||
|
|
20
|
+
testResult.error.includes('crash') ||
|
|
21
|
+
testResult.error.includes('fatal')
|
|
22
|
+
)) {
|
|
23
|
+
return 'critical';
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
// Check for warning-level failures
|
|
27
|
+
if (testResult.error && (
|
|
28
|
+
testResult.error.includes('warning') ||
|
|
29
|
+
testResult.error.includes('deprecated') ||
|
|
30
|
+
testResult.error.includes('partial')
|
|
31
|
+
)) {
|
|
32
|
+
return 'warning';
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
return 'error';
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
return 'info';
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Categorize test result
|
|
43
|
+
* @param {Object} testResult - Test result
|
|
44
|
+
* @returns {string} - Result category
|
|
45
|
+
*/
|
|
46
|
+
function categorizeResult(testResult) {
|
|
47
|
+
const { testType, success } = testResult;
|
|
48
|
+
|
|
49
|
+
if (!success) {
|
|
50
|
+
switch (testType) {
|
|
51
|
+
case 'installation':
|
|
52
|
+
return 'installation_failure';
|
|
53
|
+
case 'verification':
|
|
54
|
+
return 'verification_failure';
|
|
55
|
+
case 'configuration':
|
|
56
|
+
return 'configuration_failure';
|
|
57
|
+
case 'connectivity':
|
|
58
|
+
return 'connectivity_failure';
|
|
59
|
+
case 'performance':
|
|
60
|
+
return 'performance_failure';
|
|
61
|
+
default:
|
|
62
|
+
return 'unknown_failure';
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
return 'success';
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* Generate recommendations for test result
|
|
71
|
+
* @param {Object} testResult - Test result
|
|
72
|
+
* @returns {Array} - Array of recommendations
|
|
73
|
+
*/
|
|
74
|
+
function generateRecommendations(testResult) {
|
|
75
|
+
const recommendations = [];
|
|
76
|
+
const { testType, success, error } = testResult;
|
|
77
|
+
|
|
78
|
+
if (!success) {
|
|
79
|
+
switch (testType) {
|
|
80
|
+
case 'installation':
|
|
81
|
+
recommendations.push({
|
|
82
|
+
type: 'action',
|
|
83
|
+
priority: 'high',
|
|
84
|
+
message: 'Check installation requirements and permissions',
|
|
85
|
+
action: 'verify_dependencies'
|
|
86
|
+
});
|
|
87
|
+
if (error && error.includes('permission')) {
|
|
88
|
+
recommendations.push({
|
|
89
|
+
type: 'permission',
|
|
90
|
+
priority: 'critical',
|
|
91
|
+
message: 'Run with appropriate permissions',
|
|
92
|
+
action: 'check_permissions'
|
|
93
|
+
});
|
|
94
|
+
}
|
|
95
|
+
break;
|
|
96
|
+
|
|
97
|
+
case 'verification':
|
|
98
|
+
recommendations.push({
|
|
99
|
+
type: 'action',
|
|
100
|
+
priority: 'medium',
|
|
101
|
+
message: 'Verify agent configuration and test environment',
|
|
102
|
+
action: 'check_configuration'
|
|
103
|
+
});
|
|
104
|
+
break;
|
|
105
|
+
|
|
106
|
+
case 'connectivity':
|
|
107
|
+
recommendations.push({
|
|
108
|
+
type: 'network',
|
|
109
|
+
priority: 'high',
|
|
110
|
+
message: 'Check network connectivity and firewall settings',
|
|
111
|
+
action: 'test_network'
|
|
112
|
+
});
|
|
113
|
+
break;
|
|
114
|
+
|
|
115
|
+
case 'performance':
|
|
116
|
+
recommendations.push({
|
|
117
|
+
type: 'optimization',
|
|
118
|
+
priority: 'medium',
|
|
119
|
+
message: 'Optimize agent configuration for better performance',
|
|
120
|
+
action: 'optimize_settings'
|
|
121
|
+
});
|
|
122
|
+
break;
|
|
123
|
+
}
|
|
124
|
+
} else {
|
|
125
|
+
recommendations.push({
|
|
126
|
+
type: 'maintenance',
|
|
127
|
+
priority: 'low',
|
|
128
|
+
message: 'Regular monitoring recommended',
|
|
129
|
+
action: 'setup_monitoring'
|
|
130
|
+
});
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
return recommendations;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* Calculate confidence score for test result
|
|
138
|
+
* @param {Object} testResult - Test result
|
|
139
|
+
* @returns {number} - Confidence score (0-1)
|
|
140
|
+
*/
|
|
141
|
+
function calculateConfidence(testResult) {
|
|
142
|
+
let confidence = 0.5; // Base confidence
|
|
143
|
+
|
|
144
|
+
if (testResult.success) {
|
|
145
|
+
confidence += 0.4; // Success bonus
|
|
146
|
+
} else {
|
|
147
|
+
confidence -= 0.2; // Failure penalty
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
// Adjust based on test type
|
|
151
|
+
const { testType, duration } = testResult;
|
|
152
|
+
switch (testType) {
|
|
153
|
+
case 'installation':
|
|
154
|
+
confidence += testResult.success ? 0.1 : -0.1;
|
|
155
|
+
break;
|
|
156
|
+
case 'verification':
|
|
157
|
+
confidence += testResult.success ? 0.2 : -0.1;
|
|
158
|
+
break;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
// Adjust based on duration (faster = more confident)
|
|
162
|
+
if (duration && duration < 5000) {
|
|
163
|
+
confidence += 0.1;
|
|
164
|
+
} else if (duration && duration > 30000) {
|
|
165
|
+
confidence -= 0.1;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
return Math.max(0, Math.min(1, confidence));
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
/**
|
|
172
|
+
* Analyze detailed test result information
|
|
173
|
+
* @param {Object} testResult - Test result
|
|
174
|
+
* @returns {Object} - Detailed analysis
|
|
175
|
+
*/
|
|
176
|
+
function analyzeDetails(testResult) {
|
|
177
|
+
const details = {
|
|
178
|
+
executionTime: testResult.duration || 0,
|
|
179
|
+
resourceUsage: testResult.resources || {},
|
|
180
|
+
environment: testResult.environment || {},
|
|
181
|
+
dependencies: testResult.dependencies || []
|
|
182
|
+
};
|
|
183
|
+
|
|
184
|
+
// Analyze execution time
|
|
185
|
+
if (testResult.duration) {
|
|
186
|
+
details.executionTimeAnalysis = {
|
|
187
|
+
category: categorizeExecutionTime(testResult.duration),
|
|
188
|
+
withinExpectedRange: testResult.duration < 30000
|
|
189
|
+
};
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
// Analyze resource usage
|
|
193
|
+
if (testResult.resources) {
|
|
194
|
+
details.resourceAnalysis = {
|
|
195
|
+
memoryUsage: testResult.resources.memory || 0,
|
|
196
|
+
cpuUsage: testResult.resources.cpu || 0,
|
|
197
|
+
diskUsage: testResult.resources.disk || 0,
|
|
198
|
+
withinLimits: true // Would need actual limits to compare
|
|
199
|
+
};
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
return details;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
/**
|
|
206
|
+
* Categorize execution time
|
|
207
|
+
* @param {number} duration - Duration in milliseconds
|
|
208
|
+
* @returns {string} - Time category
|
|
209
|
+
*/
|
|
210
|
+
function categorizeExecutionTime(duration) {
|
|
211
|
+
if (duration < 1000) return 'fast';
|
|
212
|
+
if (duration < 5000) return 'normal';
|
|
213
|
+
if (duration < 15000) return 'slow';
|
|
214
|
+
if (duration < 30000) return 'very_slow';
|
|
215
|
+
return 'timeout_risk';
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
/**
|
|
219
|
+
* Identify patterns in test results
|
|
220
|
+
* @param {Object} testResult - Test result
|
|
221
|
+
* @returns {Array} - Array of identified patterns
|
|
222
|
+
*/
|
|
223
|
+
function identifyPatterns(testResult) {
|
|
224
|
+
const patterns = [];
|
|
225
|
+
const { error, warnings } = testResult;
|
|
226
|
+
|
|
227
|
+
// Look for common error patterns
|
|
228
|
+
if (error) {
|
|
229
|
+
if (error.includes('permission')) {
|
|
230
|
+
patterns.push({
|
|
231
|
+
type: 'permission_error',
|
|
232
|
+
frequency: 'common',
|
|
233
|
+
impact: 'high'
|
|
234
|
+
});
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
if (error.includes('network') || error.includes('connection')) {
|
|
238
|
+
patterns.push({
|
|
239
|
+
type: 'network_error',
|
|
240
|
+
frequency: 'common',
|
|
241
|
+
impact: 'medium'
|
|
242
|
+
});
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
if (error.includes('timeout')) {
|
|
246
|
+
patterns.push({
|
|
247
|
+
type: 'timeout_error',
|
|
248
|
+
frequency: 'occasional',
|
|
249
|
+
impact: 'medium'
|
|
250
|
+
});
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
// Look for warning patterns
|
|
255
|
+
if (warnings && warnings.length > 0) {
|
|
256
|
+
patterns.push({
|
|
257
|
+
type: 'multiple_warnings',
|
|
258
|
+
frequency: warnings.length > 3 ? 'common' : 'occasional',
|
|
259
|
+
impact: 'low'
|
|
260
|
+
});
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
return patterns;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
/**
|
|
267
|
+
* Identify risk factors
|
|
268
|
+
* @param {Object} testResult - Test result
|
|
269
|
+
* @returns {Array} - Array of risk factors
|
|
270
|
+
*/
|
|
271
|
+
function identifyRiskFactors(testResult) {
|
|
272
|
+
const riskFactors = [];
|
|
273
|
+
const { testType, success, error, duration } = testResult;
|
|
274
|
+
|
|
275
|
+
if (!success) {
|
|
276
|
+
riskFactors.push({
|
|
277
|
+
type: 'test_failure',
|
|
278
|
+
severity: 'high',
|
|
279
|
+
description: `Test failed: ${error || 'Unknown error'}`
|
|
280
|
+
});
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
if (duration && duration > 30000) {
|
|
284
|
+
riskFactors.push({
|
|
285
|
+
type: 'timeout_risk',
|
|
286
|
+
severity: 'medium',
|
|
287
|
+
description: 'Test execution approaching timeout limit'
|
|
288
|
+
});
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
if (testType === 'installation' && !success) {
|
|
292
|
+
riskFactors.push({
|
|
293
|
+
type: 'installation_failure',
|
|
294
|
+
severity: 'high',
|
|
295
|
+
description: 'Agent installation failed'
|
|
296
|
+
});
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
return riskFactors;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
module.exports = {
|
|
303
|
+
determineSeverity,
|
|
304
|
+
categorizeResult,
|
|
305
|
+
generateRecommendations,
|
|
306
|
+
calculateConfidence,
|
|
307
|
+
analyzeDetails,
|
|
308
|
+
identifyPatterns,
|
|
309
|
+
identifyRiskFactors
|
|
310
|
+
};
|