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
use crate::model::code::Code;
/// Information about the breaking of the lint
#[derive(Debug, Eq, PartialEq, Clone)]
pub struct Problem {
error: String,
tip: String,
code: Code,
}
impl Problem {
/// Create a new problem
///
/// # Examples
///
/// ```rust
/// use mit_lint::{Code, Problem};
/// let problem = Problem::new(
/// "Error title".to_string(),
/// "Some advice on how to fix it".to_string(),
/// Code::BodyWiderThan72Characters,
/// );
///
/// assert_eq!(problem.error(), "Error title".to_string())
/// ```
#[must_use]
pub fn new(error: String, tip: String, code: Code) -> Problem {
Problem { error, tip, code }
}
/// Get the code for this problem
///
/// # Examples
///
/// ```rust
/// use mit_lint::{Code, Problem};
/// let problem = Problem::new(
/// "Error title".to_string(),
/// "Some advice on how to fix it".to_string(),
/// Code::BodyWiderThan72Characters,
/// );
///
/// assert_eq!(problem.code(), &Code::BodyWiderThan72Characters)
/// ```
#[must_use]
pub fn code(&self) -> &Code {
&self.code
}
/// Get the descriptive title for this error
///
/// # Examples
///
/// ```rust
/// use mit_lint::{Code, Problem};
/// let problem = Problem::new(
/// "Error title".to_string(),
/// "Some advice on how to fix it".to_string(),
/// Code::BodyWiderThan72Characters,
/// );
///
/// assert_eq!(problem.error(), "Error title".to_string())
/// ```
#[must_use]
pub fn error(&self) -> &str {
&self.error
}
/// Get advice on how to fix the problem
///
/// This should be a description of why this is a problem, and how to fix it
///
/// # Examples
///
/// ```rust
/// use mit_lint::{Code, Problem};
/// let problem = Problem::new(
/// "Error title".to_string(),
/// "Some advice on how to fix it".to_string(),
/// Code::BodyWiderThan72Characters,
/// );
///
/// assert_eq!(problem.tip(), "Some advice on how to fix it".to_string())
/// ```
#[must_use]
pub fn tip(&self) -> &str {
&self.tip
}
}
#[cfg(test)]
mod tests {
use crate::model::{code::Code, Problem};
#[test]
fn test_has_error() {
let problem = Problem::new("Some error".into(), "".into(), Code::NotConventionalCommit);
assert_eq!(problem.error(), "Some error");
}
#[test]
fn test_has_has_tip() {
let problem = Problem::new("".into(), "Some tip".into(), Code::NotConventionalCommit);
assert_eq!(problem.tip(), "Some tip");
}
#[test]
fn test_has_has_code() {
let problem = Problem::new("".into(), "".into(), Code::NotConventionalCommit);
assert_eq!(problem.code(), &Code::NotConventionalCommit);
}
}