1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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
// REPL-015-003: Better Error Messages
//
// Provides structured, actionable error messages with source context
//
// Quality gates:
// - EXTREME TDD: RED → GREEN → REFACTOR → PROPERTY → MUTATION
// - Unit tests: 6+ scenarios
// - Integration tests: REPL workflow
// - Property tests: 1+ generators
// - Complexity: <10 per function
use crate;
/// Structured error message with source context and actionable suggestions.
///
/// `ErrorMessage` provides rich, user-friendly error messages for REPL interactions.
/// Each error includes:
/// - **Type and severity**: Categorize the error for appropriate handling
/// - **Source context**: Show exactly where the error occurred
/// - **Explanation**: Describe why it's a problem
/// - **Suggestion**: Provide actionable fixes
/// - **Help topics**: Link to relevant documentation
///
/// # Examples
///
/// ## Parse error with source context
///
/// ```
/// use bashrs::repl::errors::{ErrorMessage, ErrorType, Severity, SourceContext};
///
/// let error = ErrorMessage {
/// error_type: ErrorType::Parse,
/// code: Some("P001".to_string()),
/// severity: Severity::Error,
/// message: "Expected 'then' after condition".to_string(),
/// context: Some(SourceContext {
/// line: 1,
/// column: 13,
/// source_line: "if [ -f file".to_string(),
/// length: 1,
/// }),
/// explanation: None,
/// suggestion: None,
/// help_topics: vec![],
/// };
///
/// assert_eq!(error.error_type, ErrorType::Parse);
/// ```
///
/// ## Format error for display
///
/// ```
/// use bashrs::repl::errors::{format_parse_error, format_error};
///
/// let error = format_parse_error("Expected 'then'", 1, 13, "if [ -f file");
/// let formatted = format_error(&error);
///
/// assert!(formatted.contains("Parse Error"));
/// assert!(formatted.contains("if [ -f file"));
/// ```
/// Error type categorization for REPL errors.
///
/// # Variants
///
/// - **Parse**: Syntax errors in bash scripts
/// - **Lint**: Code quality and safety violations
/// - **Command**: Unknown or invalid REPL commands
/// - **Runtime**: Execution failures
///
/// # Examples
///
/// ```
/// use bashrs::repl::errors::ErrorType;
///
/// let parse_error = ErrorType::Parse;
/// assert_eq!(parse_error, ErrorType::Parse);
/// ```
/// Severity level for errors and warnings.
///
/// # Examples
///
/// ```
/// use bashrs::repl::errors::Severity;
///
/// let error = Severity::Error;
/// let warning = Severity::Warning;
/// let info = Severity::Info;
///
/// assert_eq!(error, Severity::Error);
/// ```
/// Source code context for error messages.
///
/// Provides the exact location and excerpt of problematic code.
///
/// # Examples
///
/// ```
/// use bashrs::repl::errors::SourceContext;
///
/// let context = SourceContext {
/// line: 5,
/// column: 10,
/// source_line: "mkdir /tmp/foo".to_string(),
/// length: 5,
/// };
///
/// assert_eq!(context.line, 5);
/// assert_eq!(context.column, 10);
/// ```
/// Suggested fix for an error.
///
/// Provides actionable guidance to resolve the issue.
///
/// # Examples
///
/// ```
/// use bashrs::repl::errors::Suggestion;
///
/// let suggestion = Suggestion {
/// description: "Use -p flag for idempotent directory creation".to_string(),
/// fixed_code: Some("mkdir -p /tmp/foo".to_string()),
/// auto_fixable: true,
/// };
///
/// assert!(suggestion.auto_fixable);
/// assert!(suggestion.fixed_code.is_some());
/// ```
/// Formats an error message for display in the terminal.
///
/// Produces a user-friendly, color-coded error message with:
/// - Icon and severity (✗, ⚠, ℹ)
/// - Error type and code
/// - Source context with caret indicators
/// - Explanation and suggestions
/// - Related help topics
///
/// # Arguments
///
/// * `error` - The error message to format
///
/// # Returns
///
/// Formatted string ready for terminal display
///
/// # Examples
///
/// ```
/// use bashrs::repl::errors::{ErrorMessage, ErrorType, Severity, format_error};
///
/// let error = ErrorMessage {
/// error_type: ErrorType::Command,
/// code: None,
/// severity: Severity::Error,
/// message: "Unknown command 'foo'".to_string(),
/// context: None,
/// explanation: Some("Command not recognized".to_string()),
/// suggestion: None,
/// help_topics: vec!["commands".to_string()],
/// };
///
/// let formatted = format_error(&error);
/// assert!(formatted.contains("Unknown command"));
/// assert!(formatted.contains(":help commands"));
/// ```
/// Creates an error message for parse errors (syntax errors).
///
/// Analyzes the parse error and constructs a helpful error message with
/// source context and common fix suggestions.
///
/// # Arguments
///
/// * `error_msg` - The parser's error message
/// * `line` - Line number where error occurred (1-indexed)
/// * `column` - Column number where error occurred (1-indexed)
/// * `source` - The source code being parsed
///
/// # Returns
///
/// Structured `ErrorMessage` with code P001
///
/// # Examples
///
/// ```
/// use bashrs::repl::errors::{format_parse_error, ErrorType};
///
/// let error = format_parse_error(
/// "Expected 'then'",
/// 1,
/// 13,
/// "if [ -f test"
/// );
///
/// assert_eq!(error.error_type, ErrorType::Parse);
/// assert_eq!(error.code, Some("P001".to_string()));
/// assert!(error.context.is_some());
/// ```
include!;