mcplint 0.4.0

MCP Server Testing, Fuzzing, and Security Scanning Platform
Documentation
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
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
//! Output abstraction layer for consistent CLI output
//!
//! Provides automatic detection of output mode (interactive, CI, plain)
//! and centralized print functions that respect the current mode.

use std::io::{self, IsTerminal, Write};

/// Output mode for the CLI
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum OutputMode {
    /// Interactive terminal with colors and unicode
    Interactive,
    /// CI environment - plain text, no colors
    CI,
    /// Piped output - plain text, no colors
    Plain,
}

impl OutputMode {
    /// Detect the appropriate output mode based on environment
    pub fn detect() -> Self {
        // Check if running in CI
        if is_ci::cached() {
            return OutputMode::CI;
        }

        // Check if stdout is a terminal
        if io::stdout().is_terminal() {
            OutputMode::Interactive
        } else {
            OutputMode::Plain
        }
    }

    /// Whether colors should be used
    pub fn colors_enabled(&self) -> bool {
        matches!(self, OutputMode::Interactive)
    }

    /// Whether unicode symbols should be used
    pub fn unicode_enabled(&self) -> bool {
        matches!(self, OutputMode::Interactive)
    }

    /// Whether progress bars should be shown
    pub fn progress_enabled(&self) -> bool {
        matches!(self, OutputMode::Interactive)
    }
}

impl Default for OutputMode {
    fn default() -> Self {
        Self::detect()
    }
}

/// Centralized printer that respects output mode
#[derive(Debug, Clone)]
pub struct Printer {
    mode: OutputMode,
}

impl Default for Printer {
    fn default() -> Self {
        Self::new()
    }
}

impl Printer {
    /// Create a new printer with auto-detected mode
    pub fn new() -> Self {
        Self {
            mode: OutputMode::detect(),
        }
    }

    /// Create a printer with a specific mode
    pub fn with_mode(mode: OutputMode) -> Self {
        Self { mode }
    }

    /// Get the current output mode
    pub fn mode(&self) -> OutputMode {
        self.mode
    }

    /// Print a line to stdout
    pub fn println(&self, message: &str) {
        println!("{}", message);
    }

    /// Print to stdout without newline
    #[allow(dead_code)]
    pub fn print(&self, message: &str) {
        print!("{}", message);
        let _ = io::stdout().flush();
    }

    /// Print a blank line
    pub fn newline(&self) {
        println!();
    }

    /// Print a separator line
    pub fn separator(&self) {
        if self.mode.unicode_enabled() {
            println!("{}", "".repeat(60));
        } else {
            println!("{}", "-".repeat(60));
        }
    }

    /// Print a header with emphasis
    pub fn header(&self, text: &str) {
        use colored::Colorize;
        if self.mode.colors_enabled() {
            println!("{}", text.cyan().bold());
        } else {
            println!("{}", text);
        }
    }

    /// Print a success message
    pub fn success(&self, message: &str) {
        use colored::Colorize;
        let symbol = if self.mode.unicode_enabled() {
            ""
        } else {
            "[OK]"
        };
        if self.mode.colors_enabled() {
            println!("{} {}", symbol.green(), message.green());
        } else {
            println!("{} {}", symbol, message);
        }
    }

    /// Print an error message
    pub fn error(&self, message: &str) {
        use colored::Colorize;
        let symbol = if self.mode.unicode_enabled() {
            ""
        } else {
            "[ERROR]"
        };
        if self.mode.colors_enabled() {
            eprintln!("{} {}", symbol.red(), message.red());
        } else {
            eprintln!("{} {}", symbol, message);
        }
    }

    /// Print a warning message
    #[allow(dead_code)]
    pub fn warning(&self, message: &str) {
        use colored::Colorize;
        let symbol = if self.mode.unicode_enabled() {
            ""
        } else {
            "[WARN]"
        };
        if self.mode.colors_enabled() {
            println!("{} {}", symbol.yellow(), message.yellow());
        } else {
            println!("{} {}", symbol, message);
        }
    }

    /// Print an info message
    #[allow(dead_code)]
    pub fn info(&self, message: &str) {
        use colored::Colorize;
        let symbol = if self.mode.unicode_enabled() {
            ""
        } else {
            "[INFO]"
        };
        if self.mode.colors_enabled() {
            println!("{} {}", symbol.cyan(), message);
        } else {
            println!("{} {}", symbol, message);
        }
    }

    /// Print a bullet point item
    #[allow(dead_code)]
    pub fn bullet(&self, message: &str) {
        let symbol = if self.mode.unicode_enabled() {
            ""
        } else {
            "-"
        };
        println!("  {} {}", symbol, message);
    }

    /// Print a key-value pair
    pub fn kv(&self, key: &str, value: &str) {
        use colored::Colorize;
        if self.mode.colors_enabled() {
            println!("  {}: {}", key.cyan(), value);
        } else {
            println!("  {}: {}", key, value);
        }
    }

    /// Print a labeled section header
    #[allow(dead_code)]
    pub fn section(&self, label: &str, value: &str) {
        use colored::Colorize;
        if self.mode.colors_enabled() {
            println!("{} {}", label.cyan(), value.yellow().bold());
        } else {
            println!("{} {}", label, value);
        }
    }

    /// Print dimmed/secondary text
    #[allow(dead_code)]
    pub fn dimmed(&self, message: &str) {
        use colored::Colorize;
        if self.mode.colors_enabled() {
            println!("{}", message.dimmed());
        } else {
            println!("{}", message);
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn output_mode_colors() {
        assert!(OutputMode::Interactive.colors_enabled());
        assert!(!OutputMode::CI.colors_enabled());
        assert!(!OutputMode::Plain.colors_enabled());
    }

    #[test]
    fn output_mode_unicode() {
        assert!(OutputMode::Interactive.unicode_enabled());
        assert!(!OutputMode::CI.unicode_enabled());
        assert!(!OutputMode::Plain.unicode_enabled());
    }

    #[test]
    fn output_mode_progress() {
        assert!(OutputMode::Interactive.progress_enabled());
        assert!(!OutputMode::CI.progress_enabled());
        assert!(!OutputMode::Plain.progress_enabled());
    }

    #[test]
    fn printer_with_mode() {
        let printer = Printer::with_mode(OutputMode::CI);
        assert_eq!(printer.mode(), OutputMode::CI);
    }

    #[test]
    fn printer_default() {
        let printer = Printer::default();
        // Mode depends on environment, just verify it doesn't panic
        let _ = printer.mode();
    }

    #[test]
    fn output_mode_detect() {
        // Just verify detection doesn't panic
        let _mode = OutputMode::detect();
    }

    #[test]
    fn output_mode_default() {
        let mode = OutputMode::default();
        // Should be one of the valid modes
        assert!(matches!(
            mode,
            OutputMode::Interactive | OutputMode::CI | OutputMode::Plain
        ));
    }

    #[test]
    fn output_mode_equality() {
        assert_eq!(OutputMode::Interactive, OutputMode::Interactive);
        assert_eq!(OutputMode::CI, OutputMode::CI);
        assert_eq!(OutputMode::Plain, OutputMode::Plain);
        assert_ne!(OutputMode::Interactive, OutputMode::CI);
        assert_ne!(OutputMode::CI, OutputMode::Plain);
    }

    #[test]
    fn output_mode_debug() {
        let mode = OutputMode::Interactive;
        let debug_str = format!("{:?}", mode);
        assert!(debug_str.contains("Interactive"));
    }

    #[test]
    fn output_mode_clone_copy() {
        let mode1 = OutputMode::Interactive;
        let mode2 = mode1;
        assert_eq!(mode1, mode2);
    }

    #[test]
    fn printer_println() {
        let printer = Printer::with_mode(OutputMode::CI);
        // Should not panic
        printer.println("Test message");
    }

    #[test]
    fn printer_print() {
        let printer = Printer::with_mode(OutputMode::CI);
        // Should not panic
        printer.print("Test message");
    }

    #[test]
    fn printer_newline() {
        let printer = Printer::with_mode(OutputMode::CI);
        printer.newline();
    }

    #[test]
    fn printer_separator_ci() {
        let printer = Printer::with_mode(OutputMode::CI);
        printer.separator();
    }

    #[test]
    fn printer_separator_interactive() {
        let printer = Printer::with_mode(OutputMode::Interactive);
        printer.separator();
    }

    #[test]
    fn printer_header_ci() {
        let printer = Printer::with_mode(OutputMode::CI);
        printer.header("Test Header");
    }

    #[test]
    fn printer_header_interactive() {
        let printer = Printer::with_mode(OutputMode::Interactive);
        printer.header("Test Header");
    }

    #[test]
    fn printer_success_ci() {
        let printer = Printer::with_mode(OutputMode::CI);
        printer.success("Operation successful");
    }

    #[test]
    fn printer_success_interactive() {
        let printer = Printer::with_mode(OutputMode::Interactive);
        printer.success("Operation successful");
    }

    #[test]
    fn printer_error_ci() {
        let printer = Printer::with_mode(OutputMode::CI);
        printer.error("Error occurred");
    }

    #[test]
    fn printer_error_interactive() {
        let printer = Printer::with_mode(OutputMode::Interactive);
        printer.error("Error occurred");
    }

    #[test]
    fn printer_warning_ci() {
        let printer = Printer::with_mode(OutputMode::CI);
        printer.warning("Warning message");
    }

    #[test]
    fn printer_warning_interactive() {
        let printer = Printer::with_mode(OutputMode::Interactive);
        printer.warning("Warning message");
    }

    #[test]
    fn printer_info_ci() {
        let printer = Printer::with_mode(OutputMode::CI);
        printer.info("Info message");
    }

    #[test]
    fn printer_info_interactive() {
        let printer = Printer::with_mode(OutputMode::Interactive);
        printer.info("Info message");
    }

    #[test]
    fn printer_bullet_ci() {
        let printer = Printer::with_mode(OutputMode::CI);
        printer.bullet("Bullet point");
    }

    #[test]
    fn printer_bullet_interactive() {
        let printer = Printer::with_mode(OutputMode::Interactive);
        printer.bullet("Bullet point");
    }

    #[test]
    fn printer_kv_ci() {
        let printer = Printer::with_mode(OutputMode::CI);
        printer.kv("Key", "Value");
    }

    #[test]
    fn printer_kv_interactive() {
        let printer = Printer::with_mode(OutputMode::Interactive);
        printer.kv("Key", "Value");
    }

    #[test]
    fn printer_section_ci() {
        let printer = Printer::with_mode(OutputMode::CI);
        printer.section("Section", "Content");
    }

    #[test]
    fn printer_section_interactive() {
        let printer = Printer::with_mode(OutputMode::Interactive);
        printer.section("Section", "Content");
    }

    #[test]
    fn printer_dimmed_ci() {
        let printer = Printer::with_mode(OutputMode::CI);
        printer.dimmed("Dimmed text");
    }

    #[test]
    fn printer_dimmed_interactive() {
        let printer = Printer::with_mode(OutputMode::Interactive);
        printer.dimmed("Dimmed text");
    }

    #[test]
    fn printer_clone() {
        let printer1 = Printer::with_mode(OutputMode::CI);
        let printer2 = printer1.clone();
        assert_eq!(printer1.mode(), printer2.mode());
    }

    #[test]
    fn printer_debug() {
        let printer = Printer::with_mode(OutputMode::Interactive);
        let debug_str = format!("{:?}", printer);
        assert!(debug_str.contains("Printer"));
    }

    #[test]
    fn printer_new() {
        let printer = Printer::new();
        // Should not panic and should return a valid mode
        let mode = printer.mode();
        assert!(matches!(
            mode,
            OutputMode::Interactive | OutputMode::CI | OutputMode::Plain
        ));
    }

    #[test]
    fn printer_all_modes_complete_workflow() {
        for mode in [OutputMode::Interactive, OutputMode::CI, OutputMode::Plain] {
            let printer = Printer::with_mode(mode);
            printer.header("Header");
            printer.separator();
            printer.success("Success");
            printer.error("Error");
            printer.warning("Warning");
            printer.info("Info");
            printer.bullet("Bullet");
            printer.kv("Key", "Value");
            printer.section("Section", "Content");
            printer.dimmed("Dimmed");
            printer.newline();
        }
    }

    #[test]
    fn output_mode_plain_flags() {
        let mode = OutputMode::Plain;
        assert!(!mode.colors_enabled());
        assert!(!mode.unicode_enabled());
        assert!(!mode.progress_enabled());
    }
}