metadata_gen/
error.rs

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
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
//! Error types for the metadata-gen library.
//!
//! This module defines custom error types used throughout the library,
//! providing detailed information about various failure scenarios.

use serde::de::Error as SerdeError;
use serde_yml::Error as SerdeYmlError;
use std::fmt::Display;
use thiserror::Error;

/// A custom error type to add context to the `Other` variant of `MetadataError`.
///
/// This struct wraps another error and provides additional context information.
#[derive(Debug)]
pub struct ContextError {
    /// The context message providing additional information about the error.
    context: String,
    /// The source error that this `ContextError` is wrapping.
    source: Box<dyn std::error::Error + Send + Sync>,
}

impl std::fmt::Display for ContextError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}: {}", self.context, self.source)
    }
}

impl std::error::Error for ContextError {
    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
        Some(&*self.source)
    }
}

/// Custom error types for the metadata-gen library.
///
/// This enum encompasses all possible errors that can occur during
/// metadata extraction, processing, and related operations.
#[derive(Error, Debug)]
pub enum MetadataError {
    /// Error occurred while extracting metadata.
    #[error("Failed to extract metadata: {message}")]
    ExtractionError {
        /// A descriptive message about the extraction error.
        message: String,
    },

    /// Error occurred while processing metadata.
    #[error("Failed to process metadata: {message}")]
    ProcessingError {
        /// A descriptive message about the processing error.
        message: String,
    },

    /// Error occurred due to missing required field.
    #[error("Missing required metadata field: {0}")]
    MissingFieldError(String),

    /// Error occurred while parsing date.
    #[error("Failed to parse date: {0}")]
    DateParseError(String),

    /// I/O error.
    #[error("I/O error: {0}")]
    IoError(#[from] std::io::Error),

    /// YAML parsing error.
    #[error("YAML parsing error: {0}")]
    YamlError(#[from] SerdeYmlError),

    /// JSON parsing error.
    #[error("JSON parsing error: {0}")]
    JsonError(#[from] serde_json::Error),

    /// TOML parsing error.
    #[error("TOML parsing error: {0}")]
    TomlError(#[from] toml::de::Error),

    /// Unsupported metadata format error.
    #[error("Unsupported metadata format: {0}")]
    UnsupportedFormatError(String),

    /// Validation error for metadata fields.
    #[error("Metadata validation error: {field} - {message}")]
    ValidationError {
        /// The field that failed validation.
        field: String,
        /// A descriptive message about the validation error.
        message: String,
    },

    /// UTF-8 decoding error.
    #[error("UTF-8 decoding error: {0}")]
    Utf8Error(#[from] std::str::Utf8Error),

    /// Catch-all for unexpected errors.
    #[error("Unexpected error: {0}")]
    Other(#[from] Box<dyn std::error::Error + Send + Sync>),
}

impl MetadataError {
    /// Creates a new `ExtractionError` with the given message.
    ///
    /// # Arguments
    ///
    /// * `message` - A descriptive message about the extraction error.
    ///
    /// # Returns
    ///
    /// A new `MetadataError::ExtractionError` variant.
    ///
    /// # Example
    ///
    /// ```
    /// use metadata_gen::error::MetadataError;
    ///
    /// let error = MetadataError::new_extraction_error("Failed to extract title");
    /// assert!(matches!(error, MetadataError::ExtractionError { .. }));
    /// ```
    pub fn new_extraction_error(message: impl Into<String>) -> Self {
        Self::ExtractionError {
            message: message.into(),
        }
    }

    /// Creates a new `ProcessingError` with the given message.
    ///
    /// # Arguments
    ///
    /// * `message` - A descriptive message about the processing error.
    ///
    /// # Returns
    ///
    /// A new `MetadataError::ProcessingError` variant.
    ///
    /// # Example
    ///
    /// ```
    /// use metadata_gen::error::MetadataError;
    ///
    /// let error = MetadataError::new_processing_error("Failed to process metadata");
    /// assert!(matches!(error, MetadataError::ProcessingError { .. }));
    /// ```
    pub fn new_processing_error(message: impl Into<String>) -> Self {
        Self::ProcessingError {
            message: message.into(),
        }
    }

    /// Creates a new `ValidationError` with the given field and message.
    ///
    /// # Arguments
    ///
    /// * `field` - The name of the field that failed validation.
    /// * `message` - A descriptive message about the validation error.
    ///
    /// # Returns
    ///
    /// A new `MetadataError::ValidationError` variant.
    ///
    /// # Example
    ///
    /// ```
    /// use metadata_gen::error::MetadataError;
    ///
    /// let error = MetadataError::new_validation_error("title", "Title must not be empty");
    /// assert!(matches!(error, MetadataError::ValidationError { .. }));
    /// ```
    pub fn new_validation_error(
        field: impl Into<String>,
        message: impl Into<String>,
    ) -> Self {
        Self::ValidationError {
            field: field.into(),
            message: message.into(),
        }
    }

    /// Adds context to an existing error.
    ///
    /// This method wraps the current error with additional context information.
    ///
    /// # Arguments
    ///
    /// * `ctx` - The context to add to the error.
    ///
    /// # Returns
    ///
    /// A new `MetadataError` with the added context.
    ///
    /// # Example
    ///
    /// ```
    /// use metadata_gen::error::MetadataError;
    ///
    /// let error = MetadataError::new_extraction_error("Failed to parse YAML")
    ///     .context("Processing file 'example.md'");
    /// assert_eq!(error.to_string(), "Failed to extract metadata: Processing file 'example.md': Failed to parse YAML");
    /// ```
    pub fn context<C>(self, ctx: C) -> Self
    where
        C: Display + Send + Sync + 'static,
    {
        match self {
            Self::ExtractionError { message } => {
                Self::ExtractionError {
                    message: format!("{}: {}", ctx, message),
                }
            }
            Self::ProcessingError { message } => {
                Self::ProcessingError {
                    message: format!("{}: {}", ctx, message),
                }
            }
            Self::MissingFieldError(field) => {
                Self::MissingFieldError(format!("{}: {}", ctx, field))
            }
            Self::DateParseError(error) => {
                Self::DateParseError(format!("{}: {}", ctx, error))
            }
            Self::IoError(error) => Self::IoError(std::io::Error::new(
                error.kind(),
                format!("{}: {}", ctx, error),
            )),
            Self::YamlError(error) => Self::YamlError(
                SerdeYmlError::custom(format!("{}: {}", ctx, error)),
            ),
            Self::JsonError(error) => {
                Self::JsonError(serde_json::Error::custom(format!(
                    "{}: {}",
                    ctx, error
                )))
            }
            Self::TomlError(error) => Self::TomlError(
                toml::de::Error::custom(format!("{}: {}", ctx, error)),
            ),
            Self::UnsupportedFormatError(format) => {
                Self::UnsupportedFormatError(format!(
                    "{}: {}",
                    ctx, format
                ))
            }
            Self::ValidationError { field, message } => {
                Self::ValidationError {
                    field,
                    message: format!("{}: {}", ctx, message),
                }
            }
            Self::Utf8Error(error) => Self::Utf8Error(error),
            Self::Other(error) => Self::Other(Box::new(ContextError {
                context: ctx.to_string(),
                source: error,
            })),
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::error::Error;
    use std::fmt;
    use std::io;

    #[test]
    fn test_extraction_error() {
        let error = MetadataError::new_extraction_error(
            "No valid front matter found.",
        );
        assert_eq!(
            error.to_string(),
            "Failed to extract metadata: No valid front matter found."
        );
    }

    #[test]
    fn test_processing_error() {
        let error =
            MetadataError::new_processing_error("Unknown field");
        assert_eq!(
            error.to_string(),
            "Failed to process metadata: Unknown field"
        );
    }

    #[test]
    fn test_missing_field_error() {
        let error =
            MetadataError::MissingFieldError("author".to_string());
        assert_eq!(
            error.to_string(),
            "Missing required metadata field: author"
        );
    }

    #[test]
    fn test_date_parse_error() {
        let error = MetadataError::DateParseError(
            "Invalid date format".to_string(),
        );
        assert_eq!(
            error.to_string(),
            "Failed to parse date: Invalid date format"
        );
    }

    #[test]
    fn test_io_error() {
        let io_error =
            io::Error::new(io::ErrorKind::NotFound, "File not found");
        let error: MetadataError = io_error.into();
        assert_eq!(error.to_string(), "I/O error: File not found");
    }

    #[test]
    fn test_yaml_error() {
        let yaml_error =
            serde_yml::Error::custom("YAML structure error");
        let error: MetadataError = yaml_error.into();
        assert!(error.to_string().contains("YAML parsing error"));
    }

    #[test]
    fn test_json_error() {
        let json_error =
            serde_json::Error::custom("Invalid JSON format");
        let error: MetadataError = json_error.into();
        assert_eq!(
            error.to_string(),
            "JSON parsing error: Invalid JSON format"
        );
    }

    #[test]
    fn test_toml_error() {
        let toml_error =
            toml::de::Error::custom("Invalid TOML structure");
        let error: MetadataError = toml_error.into();
        assert!(error.to_string().contains("TOML parsing error"));
    }

    #[test]
    fn test_unsupported_format_error() {
        let error =
            MetadataError::UnsupportedFormatError("XML".to_string());
        assert_eq!(
            error.to_string(),
            "Unsupported metadata format: XML"
        );
    }

    #[test]
    fn test_validation_error() {
        let error = MetadataError::new_validation_error(
            "title",
            "Title must not be empty",
        );
        match error {
            MetadataError::ValidationError { field, message } => {
                assert_eq!(field, "title");
                assert_eq!(message, "Title must not be empty");
            }
            _ => panic!("Unexpected error variant"),
        }
    }

    #[test]
    #[allow(invalid_from_utf8)]
    fn test_utf8_error() {
        let invalid_bytes: &[u8] = &[0xFF, 0xFF];
        let utf8_error =
            std::str::from_utf8(invalid_bytes).unwrap_err();
        let error: MetadataError = utf8_error.into();
        assert!(matches!(error, MetadataError::Utf8Error(..)));
        assert!(error.to_string().starts_with("UTF-8 decoding error:"));
    }

    #[test]
    fn test_other_error() {
        use std::error::Error;

        #[derive(Debug)]
        struct CustomError;

        impl std::fmt::Display for CustomError {
            fn fmt(
                &self,
                f: &mut std::fmt::Formatter<'_>,
            ) -> std::fmt::Result {
                write!(f, "Custom error occurred")
            }
        }

        impl Error for CustomError {}

        let custom_error = CustomError;
        let error = MetadataError::Other(Box::new(custom_error));

        assert!(matches!(error, MetadataError::Other(..)));
        assert_eq!(
            error.to_string(),
            "Unexpected error: Custom error occurred"
        );
    }

    #[test]
    fn test_extraction_error_with_empty_message() {
        let error = MetadataError::new_extraction_error("");
        assert_eq!(error.to_string(), "Failed to extract metadata: ");
    }

    #[test]
    fn test_processing_error_with_empty_message() {
        let error = MetadataError::new_processing_error("");
        assert_eq!(error.to_string(), "Failed to process metadata: ");
    }

    #[test]
    fn test_validation_error_with_empty_field_and_message() {
        let error = MetadataError::new_validation_error("", "");
        match error {
            MetadataError::ValidationError { field, message } => {
                assert_eq!(field, "");
                assert_eq!(message, "");
            }
            _ => panic!("Unexpected error variant"),
        }
    }

    #[test]
    fn test_unsupported_format_error_with_empty_format() {
        let error =
            MetadataError::UnsupportedFormatError("".to_string());
        assert_eq!(error.to_string(), "Unsupported metadata format: ");
    }

    #[test]
    fn test_yaml_error_with_custom_message() {
        // Custom YAML error message
        let yaml_error =
            serde_yml::Error::custom("Custom YAML error occurred");
        let error: MetadataError = yaml_error.into();
        assert!(error.to_string().contains(
            "YAML parsing error: Custom YAML error occurred"
        ));
    }

    #[test]
    fn test_json_error_with_custom_message() {
        // Custom JSON error message
        let json_error = serde_json::Error::custom("Custom JSON error");
        let error: MetadataError = json_error.into();
        assert_eq!(
            error.to_string(),
            "JSON parsing error: Custom JSON error"
        );
    }

    #[test]
    fn test_toml_error_with_custom_message() {
        // Custom TOML error message
        let toml_error = toml::de::Error::custom("Custom TOML error");
        let error: MetadataError = toml_error.into();
        assert!(error
            .to_string()
            .contains("TOML parsing error: Custom TOML error"));
    }

    #[test]
    #[allow(invalid_from_utf8)]
    fn test_utf8_error_with_specific_invalid_bytes() {
        let invalid_bytes: &[u8] = &[0xC0, 0x80]; // Overlong encoding, invalid UTF-8
        let utf8_error =
            std::str::from_utf8(invalid_bytes).unwrap_err();
        let error: MetadataError = utf8_error.into();
        assert!(matches!(error, MetadataError::Utf8Error(..)));
        assert!(error.to_string().starts_with("UTF-8 decoding error:"));
    }

    #[test]
    fn test_io_error_with_custom_message() {
        let io_error = std::io::Error::new(
            std::io::ErrorKind::PermissionDenied,
            "Permission denied",
        );
        let error: MetadataError = io_error.into();
        assert_eq!(error.to_string(), "I/O error: Permission denied");
    }

    #[test]
    fn test_extraction_error_to_debug() {
        let error = MetadataError::new_extraction_error(
            "Failed to extract metadata",
        );
        assert_eq!(
            format!("{:?}", error),
            r#"ExtractionError { message: "Failed to extract metadata" }"#
        );
    }

    #[test]
    fn test_processing_error_to_debug() {
        let error =
            MetadataError::new_processing_error("Processing failed");
        assert_eq!(
            format!("{:?}", error),
            r#"ProcessingError { message: "Processing failed" }"#
        );
    }

    #[test]
    fn test_validation_error_to_debug() {
        let error = MetadataError::new_validation_error(
            "title",
            "Title cannot be empty",
        );
        assert_eq!(
            format!("{:?}", error),
            r#"ValidationError { field: "title", message: "Title cannot be empty" }"#
        );
    }

    #[test]
    fn test_other_error_to_debug() {
        #[derive(Debug)]
        struct CustomError;

        impl std::fmt::Display for CustomError {
            fn fmt(
                &self,
                f: &mut std::fmt::Formatter<'_>,
            ) -> std::fmt::Result {
                write!(f, "A custom error occurred")
            }
        }

        impl std::error::Error for CustomError {}

        let custom_error = CustomError;
        let error = MetadataError::Other(Box::new(custom_error));

        // Ensure the debug output is correctly formatted
        assert!(format!("{:?}", error).contains("Other("));
    }

    #[test]
    fn test_context_error() {
        let error =
            MetadataError::new_extraction_error("Failed to parse YAML")
                .context("Processing file 'example.md'");
        assert_eq!(
            error.to_string(),
            "Failed to extract metadata: Processing file 'example.md': Failed to parse YAML"
        );
    }

    #[test]
    fn test_nested_context_error() {
        let error =
            MetadataError::new_extraction_error("Failed to parse YAML")
                .context("Processing file 'example.md'")
                .context("Metadata extraction process");
        assert_eq!(
            error.to_string(),
            "Failed to extract metadata: Metadata extraction process: Processing file 'example.md': Failed to parse YAML"
        );
    }

    #[test]
    fn test_extraction_error_empty_message() {
        let error = MetadataError::ExtractionError {
            message: "".to_string(),
        };
        assert_eq!(error.to_string(), "Failed to extract metadata: ");
    }

    #[test]
    fn test_processing_error_empty_message() {
        let error = MetadataError::ProcessingError {
            message: "".to_string(),
        };
        assert_eq!(error.to_string(), "Failed to process metadata: ");
    }

    #[test]
    fn test_missing_field_error_empty_message() {
        let error = MetadataError::MissingFieldError("".to_string());
        assert_eq!(
            error.to_string(),
            "Missing required metadata field: "
        );
    }

    #[test]
    fn test_date_parse_error_empty_message() {
        let error = MetadataError::DateParseError("".to_string());
        assert_eq!(error.to_string(), "Failed to parse date: ");
    }

    #[test]
    fn test_extraction_error_debug() {
        let error = MetadataError::ExtractionError {
            message: "Error extracting metadata".to_string(),
        };
        // The correct Debug output for the struct variant should include the field name
        assert_eq!(
            format!("{:?}", error),
            r#"ExtractionError { message: "Error extracting metadata" }"#
        );
    }

    #[test]
    fn test_processing_error_debug() {
        let error = MetadataError::ProcessingError {
            message: "Error processing metadata".to_string(),
        };
        // The correct Debug output for the struct variant should include the field name
        assert_eq!(
            format!("{:?}", error),
            r#"ProcessingError { message: "Error processing metadata" }"#
        );
    }

    #[test]
    fn test_io_error_propagation() {
        let io_error =
            io::Error::new(io::ErrorKind::NotFound, "file not found");
        let error: MetadataError = io_error.into();
        assert_eq!(error.to_string(), "I/O error: file not found");
        assert!(matches!(error, MetadataError::IoError(_)));
    }

    #[test]
    fn test_yaml_error_propagation() {
        let yaml_error = serde_yml::Error::custom("Custom YAML error");
        let error: MetadataError = yaml_error.into();
        assert_eq!(
            error.to_string(),
            "YAML parsing error: Custom YAML error"
        );
        assert!(matches!(error, MetadataError::YamlError(_)));
    }

    #[test]
    fn test_json_error_propagation() {
        let json_error = serde_json::Error::custom("Custom JSON error");
        let error: MetadataError = json_error.into();
        assert_eq!(
            error.to_string(),
            "JSON parsing error: Custom JSON error"
        );
        assert!(matches!(error, MetadataError::JsonError(_)));
    }

    #[test]
    fn test_toml_error_propagation() {
        let toml_error = toml::de::Error::custom("Custom TOML error");
        let error: MetadataError = toml_error.into();
        assert_eq!(
            error.to_string(),
            "TOML parsing error: Custom TOML error\n"
        );
        assert!(matches!(error, MetadataError::TomlError(_)));
    }

    #[test]
    fn test_missing_field_error_debug() {
        let error =
            MetadataError::MissingFieldError("title".to_string());
        assert_eq!(
            format!("{:?}", error),
            r#"MissingFieldError("title")"#
        );
    }

    #[test]
    fn test_date_parse_error_debug() {
        let error = MetadataError::DateParseError(
            "Invalid date format".to_string(),
        );
        assert_eq!(
            format!("{:?}", error),
            r#"DateParseError("Invalid date format")"#
        );
    }

    #[test]
    fn test_empty_yaml_error_message() {
        let yaml_error = serde_yml::Error::custom("");
        let error: MetadataError = yaml_error.into();
        assert_eq!(error.to_string(), "YAML parsing error: ");
    }

    #[test]
    fn test_empty_json_error_message() {
        let json_error = serde_json::Error::custom("");
        let error: MetadataError = json_error.into();
        assert_eq!(error.to_string(), "JSON parsing error: ");
    }

    #[test]
    fn test_empty_toml_error_message() {
        let toml_error = toml::de::Error::custom("");
        let error: MetadataError = toml_error.into();
        assert_eq!(error.to_string(), "TOML parsing error: \n");
    }

    // A custom error for testing purposes
    #[derive(Debug)]
    struct CustomError;

    impl fmt::Display for CustomError {
        fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
            write!(f, "Custom error occurred")
        }
    }

    impl Error for CustomError {}

    #[test]
    fn test_context_error_fmt() {
        let custom_error = CustomError;
        let context_error = ContextError {
            context: "An error occurred while processing".to_string(),
            source: Box::new(custom_error),
        };

        let formatted = format!("{}", context_error);
        assert_eq!(
            formatted,
            "An error occurred while processing: Custom error occurred"
        );
    }

    #[test]
    fn test_context_error_source() {
        let custom_error = CustomError;
        let context_error = ContextError {
            context: "Error with context".to_string(),
            source: Box::new(custom_error),
        };

        // The source method should return a reference to the original error (custom_error in this case)
        let source = context_error.source().unwrap();
        assert_eq!(source.to_string(), "Custom error occurred");
    }

    #[test]
    fn test_context_error_debug() {
        let custom_error = CustomError;
        let context_error = ContextError {
            context: "Error during processing".to_string(),
            source: Box::new(custom_error),
        };

        let debug_output = format!("{:?}", context_error);

        // Ensure the debug output includes the "ContextError" struct and its fields
        assert!(debug_output.contains("ContextError"));
        assert!(debug_output.contains("Error during processing"));
        assert!(debug_output.contains("CustomError"));
    }
}