mit-lint 3.4.0

Lints for commits parsed with mit-commit.
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
use std::sync::LazyLock;

use mit_commit::CommitMessage;
use regex::Regex;

use crate::model::{Code, Problem, ProblemBuilder};

/// Canonical lint ID
pub const CONFIG: &str = "github-id-missing";

/// Advice on how to correct the problem
pub const HELP_MESSAGE: &str = "It's important to add the issue ID because it allows us to link code back to the motivations for doing it, and because we can help people exploring the repository link their issues to specific bits of code.

You can fix this by adding a ID like the following examples:

#642
GH-642
AnUser/git-mit#642
AnOrganisation/git-mit#642
fixes #642

Be careful just putting '#642' on a line by itself, as '#' is the default comment character" ;
/// Description of the problem
pub const ERROR: &str = "Your commit message is missing a GitHub ID";

static RE: LazyLock<Regex> = LazyLock::new(|| {
    Regex::new(r"(?m)(^| )([a-zA-Z0-9_-]{3,39}/[a-zA-Z0-9-]+#|GH-|#)[0-9]+( |$)").unwrap()
});

pub struct GitHubIdConfig {
    /// Regular expression for matching GitHub IDs
    pub pattern: Regex,
}

impl Default for GitHubIdConfig {
    fn default() -> Self {
        Self {
            pattern: RE.clone(),
        }
    }
}

/// Checks if the commit message contains a GitHub ID
///
/// # Arguments
///
/// * `commit_message` - The commit message to check
///
/// # Returns
///
/// * `Some(Problem)` - If the commit message does not contain a GitHub ID
/// * `None` - If the commit message contains a GitHub ID
///
/// # Examples
///
/// ```rust
/// use mit_commit::CommitMessage;
/// use mit_lint::{Lint, Lints, lint};
/// use mit_lint::Lint::GitHubIdMissing;
///
/// // This should pass
/// let passing = CommitMessage::from("Subject\n\nBody\n\nRelates-to: #123");
/// assert!(GitHubIdMissing.lint(&passing).is_none());
///
/// // This should fail
/// let failing = CommitMessage::from("Subject\n\nBody");
/// assert!(GitHubIdMissing.lint(&failing).is_some());
/// ```
///
/// # Errors
///
/// This function will never return an error, only an Option<Problem>
pub fn lint(commit_message: &CommitMessage<'_>) -> Option<Problem> {
    lint_with_config(commit_message, &GitHubIdConfig::default())
}

fn lint_with_config(
    commit_message: &CommitMessage<'_>,
    config: &GitHubIdConfig,
) -> Option<Problem> {
    Some(commit_message)
        .filter(|commit| has_problem(commit, &config.pattern))
        .map(create_problem)
}

fn has_problem(commit_message: &CommitMessage<'_>, pattern: &Regex) -> bool {
    !commit_message.matches_pattern(pattern)
}

fn create_problem(commit_message: &CommitMessage) -> Problem {
    ProblemBuilder::new(
        ERROR,
        HELP_MESSAGE,
        Code::GitHubIdMissing,
        commit_message,
    )
    .with_label_at_last_line("No GitHub ID")
    .with_url("https://docs.github.com/en/github/writing-on-github/working-with-advanced-formatting/autolinked-references-and-urls#issues-and-pull-requests")
    .build()
}

#[cfg(test)]
mod tests {

    use std::option::Option::None;

    use miette::{GraphicalReportHandler, GraphicalTheme, Report};
    use mit_commit::CommitMessage;
    use quickcheck::TestResult;

    use super::*;
    use crate::model::{Code, Problem};

    #[test]
    fn test_github_id_with_close_keyword_passes() {
        test_has_missing_github_id(
            "An example commit

This is an example commit

close #642
",
            None,
        );
        test_has_missing_github_id(
            "An example commit

This is an example commit

closes: #642
",
            None,
        );
        test_has_missing_github_id(
            "An example commit

This is an example commit

Closed GH-642
",
            None,
        );
    }

    #[test]
    fn test_github_id_with_fix_keyword_passes() {
        test_has_missing_github_id(
            "An example commit

This is an example commit

fix #642
",
            None,
        );
        test_has_missing_github_id(
            "An example commit

This is an example commit

This fixes #642
",
            None,
        );
        test_has_missing_github_id(
            "An example commit

This is an example commit

fixed #642
",
            None,
        );
    }

    #[test]
    fn test_github_id_with_resolve_keyword_passes() {
        test_has_missing_github_id(
            "An example commit

This is an example commit

fixed #642
",
            None,
        );
        test_has_missing_github_id(
            "An example commit

This is an example commit

resolve #642
",
            None,
        );
        test_has_missing_github_id(
            "An example commit

This is an example commit

resolves #642
",
            None,
        );
    }

    #[test]
    fn test_github_id_with_issue_keyword_passes() {
        test_has_missing_github_id(
            "An example commit

This is an example commit

resolved #642
",
            None,
        );
        test_has_missing_github_id(
            "An example commit

This is an example commit

Issue #642
",
            None,
        );
    }

    #[test]
    fn test_github_id_with_gh_prefix_passes() {
        test_has_missing_github_id(
            "An example commit

This is an example commit

GH-642
",
            None,
        );
    }

    #[test]
    fn test_github_id_with_hash_only_passes() {
        test_has_missing_github_id(
            "An example commit

This is an example commit

#642
; Comment character is set to something else like ';'
",
            None,
        );
    }

    #[test]
    fn test_github_id_with_org_repo_format_passes() {
        test_has_missing_github_id(
            "An example commit

This is an example commit

AnUser/git-mit#642
",
            None,
        );

        test_has_missing_github_id(
            "An example commit

This is an example commit

AnOrganisation/git-mit#642
",
            None,
        );
    }

    #[test]
    fn test_commit_without_github_id_fails() {
        let message = "An example commit

This is an example commit
";
        test_has_missing_github_id(
            message,
            Some(Problem::new(
                ERROR.into(),
                HELP_MESSAGE.into(),
                Code::GitHubIdMissing,
                &message.into(),
                Some(vec![(String::from("No GitHub ID"), 19, 25)]),
                Some(String::from("https://docs.github.com/en/github/writing-on-github/working-with-advanced-formatting/autolinked-references-and-urls#issues-and-pull-requests")),
            )).as_ref(),
        );
    }

    #[test]
    fn test_commit_with_malformed_github_id_fails() {
        let message_1 = "An example commit

This is an example commit

H-123
";
        test_has_missing_github_id(
            message_1,
            Some(Problem::new(
                ERROR.into(),
                HELP_MESSAGE.into(),
                Code::GitHubIdMissing,
                &message_1.into(),
                Some(vec![("No GitHub ID".to_string(), 46, 5)]),
                Some("https://docs.github.com/en/github/writing-on-github/working-with-advanced-formatting/autolinked-references-and-urls#issues-and-pull-requests".parse().unwrap()),
            )).as_ref(),
        );
        let message_2 = "An example commit

This is an example commit

git-mit#123
";
        test_has_missing_github_id(
            message_2,
            Some(Problem::new(
                ERROR.into(),
                HELP_MESSAGE.into(),
                Code::GitHubIdMissing,
                &message_2.into(),
                Some(vec![("No GitHub ID".to_string(), 46, 11)]),
                Some("https://docs.github.com/en/github/writing-on-github/working-with-advanced-formatting/autolinked-references-and-urls#issues-and-pull-requests".parse().unwrap()),
            )).as_ref(),
        );
    }

    #[test]
    fn test_error_report_formatting() {
        let message = "An example commit

This is an example commit
";
        let problem = lint(&CommitMessage::from(message.to_string()));
        let actual = fmt_report(&Report::new(problem.unwrap()));
        let expected = "GitHubIdMissing (https://docs.github.com/en/github/writing-on-github/working-with-advanced-formatting/autolinked-references-and-urls#issues-and-pull-requests)

  x Your commit message is missing a GitHub ID
   ,-[3:1]
 2 | 
 3 | This is an example commit
   : ^^^^^^^^^^^^|^^^^^^^^^^^^
   :             `-- No GitHub ID
   `----
  help: It's important to add the issue ID because it allows us to link code
        back to the motivations for doing it, and because we can help people
        exploring the repository link their issues to specific bits of code.
        
        You can fix this by adding a ID like the following examples:
        
        #642
        GH-642
        AnUser/git-mit#642
        AnOrganisation/git-mit#642
        fixes #642
        
        Be careful just putting '#642' on a line by itself, as '#' is the
        default comment character
".to_string();
        assert_eq!(
            actual, expected,
            "Message {message:?} should have returned {expected:?}, found {actual:?}"
        );
    }

    fn fmt_report(diag: &Report) -> String {
        let mut out = String::new();
        GraphicalReportHandler::new_themed(GraphicalTheme::none())
            .with_width(80)
            .with_links(false)
            .render_report(&mut out, diag.as_ref())
            .unwrap();
        out
    }

    fn test_has_missing_github_id(message: &str, expected: Option<&Problem>) {
        let actual = &lint(&CommitMessage::from(message));
        assert_eq!(
            actual.as_ref(),
            expected,
            "Message {message:?} should have returned {expected:?}, found {actual:?}"
        );
    }

    #[allow(clippy::needless_pass_by_value)]
    #[quickcheck]
    fn test_quickcheck_commits_without_github_id_fail(commit: String) -> TestResult {
        if commit == "\u{0}: " {
            return TestResult::discard();
        }

        let message = CommitMessage::from(commit);
        let result = lint(&message);
        TestResult::from_bool(result.is_some())
    }

    #[allow(clippy::needless_pass_by_value)]
    #[quickcheck]
    fn test_quickcheck_commits_with_gh_prefix_pass(
        commit: Option<String>,
        commit_suffix: Option<String>,
        id: usize,
    ) -> TestResult {
        if commit
            .clone()
            .filter(|x| x.starts_with('#') || x.contains("\n#"))
            .is_some()
        {
            return TestResult::discard();
        }

        let message = CommitMessage::from(format!(
            "{}GH-{}{}\n# comment",
            commit.map(|x| format!("{x} ")).unwrap_or_default(),
            id,
            commit_suffix.map(|x| format!(" {x}")).unwrap_or_default()
        ));
        let result = lint(&message);
        TestResult::from_bool(result.is_none())
    }

    #[allow(clippy::needless_pass_by_value)]
    #[quickcheck]
    fn test_quickcheck_commits_with_hash_id_pass(
        commit: Option<String>,
        commit_suffix: Option<String>,
        id: usize,
    ) -> TestResult {
        if let Some(ref initial) = commit {
            if initial.starts_with('!') || initial.contains("\n!") {
                return TestResult::discard();
            }
        }

        let message = CommitMessage::from(format!(
            "{}#{}{}\n! comment",
            commit.map(|x| format!("{x} ")).unwrap_or_default(),
            id,
            commit_suffix.map(|x| format!(" {x}")).unwrap_or_default()
        ));
        let result = lint(&message);
        TestResult::from_bool(result.is_none())
    }

    #[allow(clippy::needless_pass_by_value)]
    #[quickcheck]
    fn test_quickcheck_commits_with_org_repo_format_pass(
        commit: Option<String>,
        commit_suffix: Option<String>,
        org: String,
        repo: String,
        id: usize,
    ) -> TestResult {
        if commit.clone().filter(|x| x.starts_with('#')).is_some() {
            return TestResult::discard();
        }

        if org.is_empty()
            || org.chars().count() < 3
            || org.chars().any(|x| !x.is_ascii_alphanumeric())
        {
            return TestResult::discard();
        }
        if repo.is_empty() || repo.chars().any(|x| !x.is_ascii_alphanumeric()) {
            return TestResult::discard();
        }

        let message = CommitMessage::from(format!(
            "{}{}/{}#{}{}",
            commit.map(|x| format!("{x} ")).unwrap_or_default(),
            org,
            repo,
            id,
            commit_suffix.map(|x| format!(" {x}")).unwrap_or_default()
        ));
        let result = lint(&message);
        TestResult::from_bool(result.is_none())
    }
}