panache 2.58.0

An LSP, formatter, and linter for Markdown, Quarto, and R Markdown
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
use crate::linter::diagnostics::{Diagnostic, Location};
use crate::linter::rules::{DiagnosticCode, LintContext, Requirement, Rule, RuleMeta};
use crate::metadata::{
    bibliography_range_map, format_bibliography_load_error, inline_bib_conflicts,
    inline_reference_contains, inline_reference_duplicates,
};

pub struct CitationKeysRule;

impl Rule for CitationKeysRule {
    fn name(&self) -> &str {
        "citation-keys"
    }

    fn metadata(&self) -> RuleMeta {
        RuleMeta {
            name: "citation-keys",
            default_on: true,
            requires: Requirement::Citations,
            auto_fix: false,
            codes: const {
                &[
                    DiagnosticCode::error("bibliography-load-error"),
                    DiagnosticCode::error("bibliography-parse-error"),
                    DiagnosticCode::warning("missing-bibliography-key"),
                    DiagnosticCode::warning("duplicate-bibliography-key"),
                    DiagnosticCode::warning("duplicate-inline-reference-id"),
                ]
            },
        }
    }

    fn check(&self, cx: &LintContext) -> Vec<Diagnostic> {
        let (tree, input, config, metadata) = (cx.tree, cx.input, cx.config, cx.metadata);
        if !config.extensions.citations {
            return Vec::new();
        }

        let mut diagnostics = Vec::new();
        let db = crate::salsa::SalsaDb::default();
        let symbol_index =
            crate::salsa::symbol_usage_index_from_tree(&db, tree, &config.extensions);

        let Some(metadata) = metadata else {
            return diagnostics;
        };

        let parse = metadata.bibliography_parse.as_ref();
        if let Some(parse) = parse {
            let range_by_path = bibliography_range_map(metadata);
            for error in &parse.index.load_errors {
                let range = range_by_path
                    .get(&error.path)
                    .copied()
                    .unwrap_or_else(|| tree.text_range());
                let location = Location::from_range(range, input);
                diagnostics.push(Diagnostic::error(
                    location,
                    "bibliography-load-error",
                    format!(
                        "Failed to load bibliography {}: {}",
                        error.path.display(),
                        format_bibliography_load_error(&error.message)
                    ),
                ));
            }

            for message in &parse.parse_errors {
                let location = Location::from_range(tree.text_range(), input);
                diagnostics.push(Diagnostic::error(
                    location,
                    "bibliography-parse-error",
                    format!("Invalid bibliography entry: {}", message),
                ));
            }

            for duplicate in &parse.index.duplicates {
                let range = range_by_path
                    .get(&duplicate.first.file)
                    .or_else(|| range_by_path.get(&duplicate.duplicate.file))
                    .copied()
                    .unwrap_or_else(|| tree.text_range());
                let location = Location::from_range(range, input);
                diagnostics.push(Diagnostic::warning(
                    location,
                    "duplicate-bibliography-key",
                    format!(
                        "Duplicate bibliography key '{}' in {} and {}",
                        duplicate.key,
                        duplicate.first.file.display(),
                        duplicate.duplicate.file.display()
                    ),
                ));
            }
        }

        for duplicate in inline_reference_duplicates(&metadata.inline_references) {
            let location = Location::from_range(duplicate.duplicate.range, input);
            diagnostics.push(Diagnostic::warning(
                location,
                "duplicate-inline-reference-id",
                format!("Duplicate inline reference id '{}'", duplicate.key),
            ));
        }

        if let Some(parse) = parse {
            for conflict in inline_bib_conflicts(&metadata.inline_references, &parse.index) {
                let location = Location::from_range(conflict.inline.range, input);
                diagnostics.push(Diagnostic::warning(
                    location,
                    "duplicate-inline-reference-id",
                    format!(
                        "Duplicate inline reference id '{}' in {} and {}",
                        conflict.key,
                        conflict.inline.path.display(),
                        conflict.bib.source_file.display()
                    ),
                ));
            }
        }

        if parse.is_none() && metadata.inline_references.is_empty() {
            return diagnostics;
        }

        // `citations.keys` holds one entry per occurrence, so the same key can
        // appear multiple times. Skip duplicates: `citation_references` already
        // returns every occurrence's range, so reporting per unique key gives
        // exactly one diagnostic per occurrence.
        let mut seen_keys = std::collections::HashSet::new();
        for key_text in &metadata.citations.keys {
            if !seen_keys.insert(key_text.as_str()) {
                continue;
            }
            if symbol_index.crossref_usages(key_text).is_some() {
                continue;
            }
            if config.extensions.quarto_crossrefs
                && crate::parser::inlines::citations::is_quarto_crossref_key(key_text)
            {
                continue;
            }
            if parse.and_then(|parse| parse.index.get(key_text)).is_none()
                && !inline_reference_contains(&metadata.inline_references, key_text)
                && let Some(ranges) = symbol_index.citation_references(key_text)
            {
                for range in ranges {
                    let location = Location::from_range(*range, input);
                    diagnostics.push(Diagnostic::warning(
                        location,
                        "missing-bibliography-key",
                        format!("Citation key '{}' not found in bibliography", key_text),
                    ));
                }
            }
        }

        diagnostics
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::config::Config;
    use rowan::{TextRange, TextSize};

    fn parse_and_lint(
        input: &str,
        metadata: Option<crate::metadata::DocumentMetadata>,
    ) -> Vec<Diagnostic> {
        let config = Config::default();
        let tree = crate::parser::parse(input, Some(config.clone()));
        let rule = CitationKeysRule;
        if let Some(metadata) = metadata {
            return rule.check_tree(&tree, input, &config, Some(&metadata));
        }
        rule.check_tree(&tree, input, &config, None)
    }

    #[test]
    fn missing_key_emits_warning() {
        let input = "Text [@missing].";
        let metadata = crate::metadata::DocumentMetadata {
            source_path: std::path::PathBuf::from("test.qmd"),
            bibliography: None,
            metadata_files: Vec::new(),
            bibliography_parse: Some(crate::metadata::BibliographyParse {
                index: crate::bib::BibIndex {
                    entries: std::collections::HashMap::new(),
                    duplicates: Vec::new(),
                    errors: Vec::new(),
                    load_errors: Vec::new(),
                },
                parse_errors: Vec::new(),
            }),
            inline_references: Vec::new(),
            citations: crate::metadata::CitationInfo {
                keys: vec!["missing".to_string()],
            },
            title: None,
            raw_yaml: String::new(),
        };

        let diagnostics = parse_and_lint(input, Some(metadata));
        assert_eq!(diagnostics.len(), 1);
        assert_eq!(diagnostics[0].code, "missing-bibliography-key");
        assert!(diagnostics[0].message.contains("missing"));
    }

    #[test]
    fn missing_key_reports_correct_position() {
        let input = "Text [@missing].";
        let metadata = crate::metadata::DocumentMetadata {
            source_path: std::path::PathBuf::from("test.qmd"),
            bibliography: None,
            metadata_files: Vec::new(),
            bibliography_parse: Some(crate::metadata::BibliographyParse {
                index: crate::bib::BibIndex {
                    entries: std::collections::HashMap::new(),
                    duplicates: Vec::new(),
                    errors: Vec::new(),
                    load_errors: Vec::new(),
                },
                parse_errors: Vec::new(),
            }),
            inline_references: Vec::new(),
            citations: crate::metadata::CitationInfo {
                keys: vec!["missing".to_string()],
            },
            title: None,
            raw_yaml: String::new(),
        };

        let diagnostics = parse_and_lint(input, Some(metadata));
        assert_eq!(diagnostics.len(), 1);

        // The citation [@missing] starts at position 5 (after "Text ")
        // But we report it at the CITATION node level which includes brackets
        // Line 1, column 6 (1-indexed, pointing to '[')
        assert_eq!(diagnostics[0].location.line, 1);
        assert_eq!(diagnostics[0].location.column, 6);

        // The range should cover the entire citation including brackets
        let start: usize = diagnostics[0].location.range.start().into();
        let end: usize = diagnostics[0].location.range.end().into();
        assert_eq!(start, 5); // Position of '['
        assert_eq!(end, 15); // Position after ']'
    }

    #[test]
    fn bibliography_load_error_uses_yaml_range() {
        let input = "---\nbibliography: test.bib\n---\n\nText\n";
        let start = input.find("test.bib").unwrap();
        let end = start + "test.bib".len();
        let range = TextRange::new(TextSize::from(start as u32), TextSize::from(end as u32));
        let path = std::path::PathBuf::from("/tmp/test.bib");
        let metadata = crate::metadata::DocumentMetadata {
            source_path: std::path::PathBuf::from("test.qmd"),
            bibliography: Some(crate::metadata::BibliographyInfo {
                paths: vec![path.clone()],
                source_ranges: vec![range],
            }),
            metadata_files: Vec::new(),
            bibliography_parse: Some(crate::metadata::BibliographyParse {
                index: crate::bib::BibIndex {
                    entries: std::collections::HashMap::new(),
                    duplicates: Vec::new(),
                    errors: Vec::new(),
                    load_errors: vec![crate::bib::BibLoadError {
                        path,
                        message: "No such file or directory (os error 2)".to_string(),
                    }],
                },
                parse_errors: Vec::new(),
            }),
            inline_references: Vec::new(),
            citations: crate::metadata::CitationInfo { keys: Vec::new() },
            title: None,
            raw_yaml: String::new(),
        };

        let diagnostics = parse_and_lint(input, Some(metadata));
        assert_eq!(diagnostics.len(), 1);
        assert_eq!(diagnostics[0].code, "bibliography-load-error");
        assert_eq!(diagnostics[0].location.range.start(), range.start());
        assert_eq!(diagnostics[0].location.range.end(), range.end());
        assert!(diagnostics[0].message.ends_with("File not found"));
    }

    #[test]
    fn repeated_missing_key_reports_each_occurrence_once() {
        // A missing key cited twice should yield exactly one diagnostic per
        // occurrence (two total), not one per (occurrence x duplicate key).
        let input = "Text [@missing] and again [@missing].";
        let metadata = crate::metadata::DocumentMetadata {
            source_path: std::path::PathBuf::from("test.qmd"),
            bibliography: None,
            metadata_files: Vec::new(),
            bibliography_parse: Some(crate::metadata::BibliographyParse {
                index: crate::bib::BibIndex {
                    entries: std::collections::HashMap::new(),
                    duplicates: Vec::new(),
                    errors: Vec::new(),
                    load_errors: Vec::new(),
                },
                parse_errors: Vec::new(),
            }),
            inline_references: Vec::new(),
            citations: crate::metadata::CitationInfo {
                keys: vec!["missing".to_string(), "missing".to_string()],
            },
            title: None,
            raw_yaml: String::new(),
        };

        let diagnostics = parse_and_lint(input, Some(metadata));
        assert_eq!(diagnostics.len(), 2);
        assert!(
            diagnostics
                .iter()
                .all(|d| d.code == "missing-bibliography-key")
        );
    }

    #[test]
    fn crossref_keys_do_not_emit_warning() {
        let input = "See @eq-missing for details.";
        let mut config = Config::default();
        config.extensions.quarto_crossrefs = true;

        let tree = crate::parser::parse(input, Some(config.clone()));
        let rule = CitationKeysRule;
        let metadata = crate::metadata::DocumentMetadata {
            source_path: std::path::PathBuf::from("test.qmd"),
            bibliography: None,
            metadata_files: Vec::new(),
            bibliography_parse: Some(crate::metadata::BibliographyParse {
                index: crate::bib::BibIndex {
                    entries: std::collections::HashMap::new(),
                    duplicates: Vec::new(),
                    errors: Vec::new(),
                    load_errors: Vec::new(),
                },
                parse_errors: Vec::new(),
            }),
            inline_references: Vec::new(),
            citations: crate::metadata::CitationInfo {
                keys: vec!["eq-missing".to_string()],
            },
            title: None,
            raw_yaml: String::new(),
        };

        let diagnostics = rule.check_tree(&tree, input, &config, Some(&metadata));
        assert!(diagnostics.is_empty());
    }

    #[test]
    fn custom_crossref_prefix_does_not_emit_warning() {
        // A crossref-injecting extension (e.g. pseudocode's `@algo-`) declares
        // its prefix via the top-level `crossref-prefixes` config. The parser
        // then emits `@algo-cd` as a crossref, so the missing-bibliography-key
        // rule must not flag it as a citation.
        let input = "See @algo-cd for details.";
        let mut config = Config::default();
        config.extensions.quarto_crossrefs = true;
        config.crossref_prefixes = vec!["algo".to_string()];

        let tree = crate::parser::parse(input, Some(config.clone()));
        let rule = CitationKeysRule;
        let metadata = crate::metadata::DocumentMetadata {
            source_path: std::path::PathBuf::from("test.qmd"),
            bibliography: None,
            metadata_files: Vec::new(),
            bibliography_parse: Some(crate::metadata::BibliographyParse {
                index: crate::bib::BibIndex {
                    entries: std::collections::HashMap::new(),
                    duplicates: Vec::new(),
                    errors: Vec::new(),
                    load_errors: Vec::new(),
                },
                parse_errors: Vec::new(),
            }),
            inline_references: Vec::new(),
            citations: crate::metadata::CitationInfo {
                keys: vec!["algo-cd".to_string()],
            },
            title: None,
            raw_yaml: String::new(),
        };

        let diagnostics = rule.check_tree(&tree, input, &config, Some(&metadata));
        assert!(diagnostics.is_empty());
    }

    #[test]
    fn custom_crossref_prefix_unset_still_warns() {
        // Without the prefix configured, `@algo-cd` is an ordinary citation and
        // a missing key should still be reported (no silent suppression).
        let input = "See @algo-cd for details.";
        let mut config = Config::default();
        config.extensions.quarto_crossrefs = true;

        let tree = crate::parser::parse(input, Some(config.clone()));
        let rule = CitationKeysRule;
        let metadata = crate::metadata::DocumentMetadata {
            source_path: std::path::PathBuf::from("test.qmd"),
            bibliography: None,
            metadata_files: Vec::new(),
            bibliography_parse: Some(crate::metadata::BibliographyParse {
                index: crate::bib::BibIndex {
                    entries: std::collections::HashMap::new(),
                    duplicates: Vec::new(),
                    errors: Vec::new(),
                    load_errors: Vec::new(),
                },
                parse_errors: Vec::new(),
            }),
            inline_references: Vec::new(),
            citations: crate::metadata::CitationInfo {
                keys: vec!["algo-cd".to_string()],
            },
            title: None,
            raw_yaml: String::new(),
        };

        let diagnostics = rule.check_tree(&tree, input, &config, Some(&metadata));
        assert_eq!(diagnostics.len(), 1);
        assert_eq!(diagnostics[0].code, "missing-bibliography-key");
    }

    #[test]
    fn bracketed_crossref_keys_do_not_emit_warning() {
        let input = "See [@fig-missing].";
        let mut config = Config::default();
        config.extensions.quarto_crossrefs = true;

        let tree = crate::parser::parse(input, Some(config.clone()));
        let rule = CitationKeysRule;
        let metadata = crate::metadata::DocumentMetadata {
            source_path: std::path::PathBuf::from("test.qmd"),
            bibliography: None,
            metadata_files: Vec::new(),
            bibliography_parse: Some(crate::metadata::BibliographyParse {
                index: crate::bib::BibIndex {
                    entries: std::collections::HashMap::new(),
                    duplicates: Vec::new(),
                    errors: Vec::new(),
                    load_errors: Vec::new(),
                },
                parse_errors: Vec::new(),
            }),
            inline_references: Vec::new(),
            citations: crate::metadata::CitationInfo {
                keys: vec!["fig-missing".to_string()],
            },
            title: None,
            raw_yaml: String::new(),
        };

        let diagnostics = rule.check_tree(&tree, input, &config, Some(&metadata));
        assert!(diagnostics.is_empty());
    }
}