cc-hook 0.1.0

A cross-platform CLI that installs a git commit-msg hook to enforce Conventional Commits
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
/// Result of validating a commit message.
#[derive(Debug, PartialEq)]
pub enum ValidationResult {
    /// The commit message follows the Conventional Commits format.
    Valid,
    /// The commit message should be skipped (merge, revert, initial commit).
    Skip,
    /// The commit message is empty.
    EmptyMessage,
    /// The commit message does not follow the Conventional Commits format.
    Invalid,
}

/// The commit types accepted by the Conventional Commits specification.
pub const VALID_TYPES: &[&str] = &[
    "feat", "fix", "docs", "style", "refactor", "test", "chore", "build", "ci", "perf", "revert",
];

/// Validates a commit message against the Conventional Commits specification.
///
/// Format: `<type>(<optional scope>)(!)?:  <description>`
///
/// Merge commits, revert commits, and initial commits are automatically skipped.
pub fn validate_commit_message(message: &str) -> ValidationResult {
    // Extract first line and trim whitespace
    let first_line = message.lines().next().unwrap_or("").trim();

    if first_line.is_empty() {
        return ValidationResult::EmptyMessage;
    }

    // Auto-skip merge commits, reverts, and initial commits
    if first_line.starts_with("Merge branch")
        || first_line.starts_with("Revert")
        || first_line.starts_with("Initial commit")
    {
        return ValidationResult::Skip;
    }

    // Validate against Conventional Commits regex
    use regex::Regex;
    use std::sync::LazyLock;

    static RE: LazyLock<Regex> = LazyLock::new(|| {
        Regex::new(
            r"^(feat|fix|docs|style|refactor|test|chore|build|ci|perf|revert)(\([a-zA-Z0-9_.\-]+\))?(!)?:\s+.+$",
        )
        .expect("invalid regex")
    });

    if RE.is_match(first_line) {
        ValidationResult::Valid
    } else {
        ValidationResult::Invalid
    }
}

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

    // -------------------------------------------------------
    // Empty / whitespace-only messages
    // -------------------------------------------------------

    #[test]
    fn empty_message_is_rejected() {
        assert_eq!(validate_commit_message(""), ValidationResult::EmptyMessage);
    }

    #[test]
    fn whitespace_only_message_is_rejected() {
        assert_eq!(
            validate_commit_message("   "),
            ValidationResult::EmptyMessage
        );
    }

    #[test]
    fn newline_only_message_is_rejected() {
        assert_eq!(
            validate_commit_message("\n\n"),
            ValidationResult::EmptyMessage
        );
    }

    // -------------------------------------------------------
    // Auto-skip messages (merge, revert, initial commit)
    // -------------------------------------------------------

    #[test]
    fn merge_branch_is_skipped() {
        assert_eq!(
            validate_commit_message("Merge branch 'feature/x' into main"),
            ValidationResult::Skip
        );
    }

    #[test]
    fn merge_branch_simple_is_skipped() {
        assert_eq!(
            validate_commit_message("Merge branch 'develop'"),
            ValidationResult::Skip
        );
    }

    #[test]
    fn revert_commit_is_skipped() {
        assert_eq!(
            validate_commit_message("Revert \"feat: add authentication\""),
            ValidationResult::Skip
        );
    }

    #[test]
    fn revert_plain_is_skipped() {
        assert_eq!(
            validate_commit_message("Revert some change"),
            ValidationResult::Skip
        );
    }

    #[test]
    fn initial_commit_is_skipped() {
        assert_eq!(
            validate_commit_message("Initial commit"),
            ValidationResult::Skip
        );
    }

    // -------------------------------------------------------
    // Valid conventional commit messages — each type
    // -------------------------------------------------------

    #[test]
    fn valid_feat() {
        assert_eq!(
            validate_commit_message("feat: add user authentication"),
            ValidationResult::Valid
        );
    }

    #[test]
    fn valid_fix() {
        assert_eq!(
            validate_commit_message("fix: resolve null pointer in parser"),
            ValidationResult::Valid
        );
    }

    #[test]
    fn valid_docs() {
        assert_eq!(
            validate_commit_message("docs: update README"),
            ValidationResult::Valid
        );
    }

    #[test]
    fn valid_style() {
        assert_eq!(
            validate_commit_message("style: fix indentation"),
            ValidationResult::Valid
        );
    }

    #[test]
    fn valid_refactor() {
        assert_eq!(
            validate_commit_message("refactor: extract method"),
            ValidationResult::Valid
        );
    }

    #[test]
    fn valid_test() {
        assert_eq!(
            validate_commit_message("test: add unit tests for parser"),
            ValidationResult::Valid
        );
    }

    #[test]
    fn valid_chore() {
        assert_eq!(
            validate_commit_message("chore: update dependencies"),
            ValidationResult::Valid
        );
    }

    #[test]
    fn valid_build() {
        assert_eq!(
            validate_commit_message("build: configure webpack"),
            ValidationResult::Valid
        );
    }

    #[test]
    fn valid_ci() {
        assert_eq!(
            validate_commit_message("ci: add GitHub Actions workflow"),
            ValidationResult::Valid
        );
    }

    #[test]
    fn valid_perf() {
        assert_eq!(
            validate_commit_message("perf: optimize database query"),
            ValidationResult::Valid
        );
    }

    #[test]
    fn valid_revert_type() {
        assert_eq!(
            validate_commit_message("revert: undo feature flag"),
            ValidationResult::Valid
        );
    }

    // -------------------------------------------------------
    // Valid — with scope
    // -------------------------------------------------------

    #[test]
    fn valid_with_scope() {
        assert_eq!(
            validate_commit_message("feat(auth): add JWT support"),
            ValidationResult::Valid
        );
    }

    #[test]
    fn valid_scope_with_dot() {
        assert_eq!(
            validate_commit_message("fix(api.v2): handle timeout"),
            ValidationResult::Valid
        );
    }

    #[test]
    fn valid_scope_with_hyphen() {
        assert_eq!(
            validate_commit_message("docs(user-guide): add examples"),
            ValidationResult::Valid
        );
    }

    #[test]
    fn valid_scope_with_underscore() {
        assert_eq!(
            validate_commit_message("refactor(data_layer): simplify queries"),
            ValidationResult::Valid
        );
    }

    #[test]
    fn valid_scope_with_numbers() {
        assert_eq!(
            validate_commit_message("fix(issue123): patch security flaw"),
            ValidationResult::Valid
        );
    }

    // -------------------------------------------------------
    // Valid — with breaking change indicator
    // -------------------------------------------------------

    #[test]
    fn valid_breaking_change_no_scope() {
        assert_eq!(
            validate_commit_message("feat!: remove deprecated endpoint"),
            ValidationResult::Valid
        );
    }

    #[test]
    fn valid_breaking_change_with_scope() {
        assert_eq!(
            validate_commit_message("feat(api)!: change response format"),
            ValidationResult::Valid
        );
    }

    // -------------------------------------------------------
    // Invalid messages
    // -------------------------------------------------------

    #[test]
    fn invalid_no_type() {
        assert_eq!(
            validate_commit_message("add new feature"),
            ValidationResult::Invalid
        );
    }

    #[test]
    fn invalid_unknown_type() {
        assert_eq!(
            validate_commit_message("feature: add login"),
            ValidationResult::Invalid
        );
    }

    #[test]
    fn invalid_missing_colon() {
        assert_eq!(
            validate_commit_message("feat add login"),
            ValidationResult::Invalid
        );
    }

    #[test]
    fn invalid_missing_space_after_colon() {
        assert_eq!(
            validate_commit_message("feat:add login"),
            ValidationResult::Invalid
        );
    }

    #[test]
    fn invalid_empty_description() {
        assert_eq!(
            validate_commit_message("feat: "),
            ValidationResult::Invalid
        );
    }

    #[test]
    fn invalid_only_type_and_colon() {
        assert_eq!(
            validate_commit_message("feat:"),
            ValidationResult::Invalid
        );
    }

    #[test]
    fn invalid_uppercase_type() {
        assert_eq!(
            validate_commit_message("FEAT: add login"),
            ValidationResult::Invalid
        );
    }

    #[test]
    fn invalid_scope_with_spaces() {
        assert_eq!(
            validate_commit_message("feat(my scope): add login"),
            ValidationResult::Invalid
        );
    }

    #[test]
    fn invalid_empty_scope() {
        assert_eq!(
            validate_commit_message("feat(): add login"),
            ValidationResult::Invalid
        );
    }

    #[test]
    fn invalid_random_text() {
        assert_eq!(
            validate_commit_message("WIP"),
            ValidationResult::Invalid
        );
    }

    #[test]
    fn invalid_type_with_trailing_space_before_colon() {
        assert_eq!(
            validate_commit_message("feat : add login"),
            ValidationResult::Invalid
        );
    }

    // -------------------------------------------------------
    // Edge cases
    // -------------------------------------------------------

    #[test]
    fn valid_single_char_description() {
        assert_eq!(
            validate_commit_message("fix: x"),
            ValidationResult::Valid
        );
    }

    #[test]
    fn valid_message_with_body_after_newline() {
        // Only the first line matters for validation
        assert_eq!(
            validate_commit_message("feat: add login\n\nThis adds a new login page."),
            ValidationResult::Valid
        );
    }

    #[test]
    fn leading_whitespace_is_trimmed() {
        assert_eq!(
            validate_commit_message("  feat: add login"),
            ValidationResult::Valid
        );
    }

    #[test]
    fn trailing_whitespace_is_trimmed() {
        assert_eq!(
            validate_commit_message("feat: add login   "),
            ValidationResult::Valid
        );
    }
}