rlsp-yaml-parser 0.6.1

Spec-faithful streaming YAML 1.2 parser
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
488
489
490
491
492
493
// SPDX-License-Identifier: MIT

use crate::node::Node;
use crate::pos::Span;

/// Replace the location of a node (used when stamping alias-site spans).
pub(super) fn reloc(node: Node<Span>, loc: Span) -> Node<Span> {
    match node {
        Node::Scalar {
            value,
            style,
            tag,
            meta,
            ..
        } => Node::Scalar {
            value,
            style,
            tag,
            loc,
            meta,
        },
        Node::Mapping {
            entries,
            style,
            tag,
            meta,
            ..
        } => Node::Mapping {
            entries,
            style,
            tag,
            loc,
            meta,
        },
        Node::Sequence {
            items,
            style,
            tag,
            meta,
            ..
        } => Node::Sequence {
            items,
            style,
            tag,
            loc,
            meta,
        },
        Node::Alias {
            name,
            leading_comments,
            trailing_comment,
            ..
        } => Node::Alias {
            name,
            loc,
            leading_comments,
            trailing_comment,
        },
    }
}

#[cfg(test)]
#[expect(
    clippy::indexing_slicing,
    clippy::panic,
    clippy::wildcard_enum_match_arm,
    clippy::expect_used,
    reason = "test code"
)]
mod tests {
    use std::borrow::Cow;

    use super::*;
    use crate::event::{CollectionStyle, ScalarStyle};
    use crate::node::NodeMeta;

    fn span() -> Span {
        Span { start: 0, end: 0 }
    }

    fn plain_scalar(loc: Span) -> Node<Span> {
        Node::Scalar {
            value: "v".to_owned(),
            style: ScalarStyle::Plain,
            tag: None,
            loc,
            meta: None,
        }
    }

    #[test]
    fn reloc_scalar_replaces_loc() {
        let node = Node::Scalar {
            value: "hello".to_owned(),
            style: ScalarStyle::Plain,
            tag: Some(Cow::Owned("!t".to_owned())),
            loc: span(),
            meta: NodeMeta {
                anchor: Some("a".to_owned()),
                anchor_loc: Some(span()),
                tag_loc: Some(span()),
                leading_comments: Some(vec!["# lc".to_owned()]),
                trailing_comment: Some("# tc".to_owned()),
            }
            .into_option(),
        };
        let result = reloc(node, span());
        match result {
            Node::Scalar {
                value,
                style,
                tag,
                loc,
                meta,
            } => {
                assert_eq!(loc, span());
                let m = meta.as_deref().expect("meta must be Some");
                assert_eq!(m.anchor_loc, Some(span()), "anchor_loc must be preserved");
                assert_eq!(m.tag_loc, Some(span()), "tag_loc must be preserved");
                assert_eq!(value, "hello");
                assert_eq!(style, ScalarStyle::Plain);
                assert_eq!(m.anchor, Some("a".to_owned()));
                assert_eq!(tag.as_deref(), Some("!t"));
                assert_eq!(m.leading_comments, Some(vec!["# lc".to_owned()]));
                assert_eq!(m.trailing_comment, Some("# tc".to_owned()));
            }
            _ => panic!("expected Scalar"),
        }
    }

    #[test]
    fn reloc_mapping_replaces_loc() {
        let node = Node::Mapping {
            entries: vec![],
            style: CollectionStyle::Block,
            tag: Some(Cow::Owned("!m".to_owned())),
            loc: span(),
            meta: NodeMeta {
                anchor: Some("m".to_owned()),
                anchor_loc: Some(span()),
                tag_loc: Some(span()),
                leading_comments: Some(vec!["# lc".to_owned()]),
                trailing_comment: Some("# tc".to_owned()),
            }
            .into_option(),
        };
        let result = reloc(node, span());
        match result {
            Node::Mapping {
                entries,
                tag,
                loc,
                meta,
                ..
            } => {
                assert_eq!(loc, span());
                let m = meta.as_deref().expect("meta must be Some");
                assert_eq!(m.anchor_loc, Some(span()), "anchor_loc must be preserved");
                assert!(entries.is_empty());
                assert_eq!(m.anchor, Some("m".to_owned()));
                assert_eq!(tag.as_deref(), Some("!m"));
                assert_eq!(m.leading_comments, Some(vec!["# lc".to_owned()]));
                assert_eq!(m.trailing_comment, Some("# tc".to_owned()));
            }
            _ => panic!("expected Mapping"),
        }
    }

    #[test]
    fn reloc_sequence_replaces_loc() {
        let node = Node::Sequence {
            items: vec![],
            style: CollectionStyle::Block,
            tag: None,
            loc: span(),
            meta: NodeMeta {
                anchor: Some("s".to_owned()),
                anchor_loc: Some(span()),
                tag_loc: None,
                leading_comments: None,
                trailing_comment: None,
            }
            .into_option(),
        };
        let result = reloc(node, span());
        match result {
            Node::Sequence {
                items, loc, meta, ..
            } => {
                assert_eq!(loc, span());
                let m = meta.as_deref().expect("meta must be Some");
                assert_eq!(m.anchor_loc, Some(span()), "anchor_loc must be preserved");
                assert!(items.is_empty());
            }
            _ => panic!("expected Sequence"),
        }
    }

    // reloc_anchor_loc_none_preserved: None anchor_loc stays None after reloc
    #[test]
    fn reloc_anchor_loc_none_preserved() {
        let node = plain_scalar(span());
        let result = reloc(node, span());
        match result {
            Node::Scalar { meta, loc, .. } => {
                assert_eq!(loc, span());
                assert!(
                    meta.is_none(),
                    "None anchor_loc must remain None (meta stays None)"
                );
            }
            _ => panic!("expected Scalar"),
        }
    }

    #[test]
    fn reloc_alias_replaces_loc() {
        let node = Node::Alias {
            name: "x".to_owned(),
            loc: span(),
            leading_comments: None,
            trailing_comment: None,
        };
        let result = reloc(node, span());
        match result {
            Node::Alias { name, loc, .. } => {
                assert_eq!(loc, span());
                assert_eq!(name, "x");
            }
            _ => panic!("expected Alias"),
        }
    }

    #[test]
    fn reloc_preserves_leading_comments() {
        let node = Node::Scalar {
            value: "v".to_owned(),
            style: ScalarStyle::Plain,
            tag: None,
            loc: span(),
            meta: NodeMeta {
                anchor: None,
                anchor_loc: None,
                tag_loc: None,
                leading_comments: Some(vec!["# hi".to_owned()]),
                trailing_comment: None,
            }
            .into_option(),
        };
        let result = reloc(node, span());
        assert_eq!(result.leading_comments(), &["# hi"]);
    }

    #[test]
    fn reloc_preserves_trailing_comment() {
        let node = Node::Scalar {
            value: "v".to_owned(),
            style: ScalarStyle::Plain,
            tag: None,
            loc: span(),
            meta: NodeMeta {
                anchor: None,
                anchor_loc: None,
                tag_loc: None,
                leading_comments: None,
                trailing_comment: Some("# tail".to_owned()),
            }
            .into_option(),
        };
        let result = reloc(node, span());
        assert_eq!(result.trailing_comment(), Some("# tail"));
    }

    // reloc is shallow: only the top-level loc is replaced; child locs are unchanged.
    #[test]
    fn reloc_mapping_with_entries_only_replaces_top_loc() {
        let node = Node::Mapping {
            entries: vec![(plain_scalar(span()), plain_scalar(span()))],
            style: CollectionStyle::Block,
            tag: None,
            loc: span(),
            meta: None,
        };
        let result = reloc(node, span());
        match result {
            Node::Mapping { entries, loc, .. } => {
                assert_eq!(loc, span());
                let (k, v) = &entries[0];
                match k {
                    Node::Scalar { loc: child_loc, .. } => assert_eq!(*child_loc, span()),
                    _ => panic!("expected Scalar key"),
                }
                match v {
                    Node::Scalar { loc: child_loc, .. } => assert_eq!(*child_loc, span()),
                    _ => panic!("expected Scalar value"),
                }
            }
            _ => panic!("expected Mapping"),
        }
    }

    // TL-RELOC: reloc_tag_loc_some_preserved
    #[test]
    fn reloc_tag_loc_some_preserved() {
        let node = Node::Scalar {
            value: "v".to_owned(),
            style: ScalarStyle::Plain,
            tag: Some(Cow::Owned("!t".to_owned())),
            loc: span(),
            meta: NodeMeta {
                anchor: None,
                anchor_loc: None,
                tag_loc: Some(span()),
                leading_comments: None,
                trailing_comment: None,
            }
            .into_option(),
        };
        let result = reloc(node, span());
        match result {
            Node::Scalar { meta, loc, .. } => {
                assert_eq!(loc, span());
                let m = meta.as_deref().expect("meta must be Some");
                assert_eq!(m.tag_loc, Some(span()), "tag_loc must be preserved");
            }
            _ => panic!("expected Scalar"),
        }
    }

    // TL-RELOC: reloc_tag_loc_none_preserved
    #[test]
    fn reloc_tag_loc_none_preserved() {
        let node = plain_scalar(span());
        let result = reloc(node, span());
        match result {
            Node::Scalar { meta, loc, .. } => {
                assert_eq!(loc, span());
                assert!(
                    meta.is_none(),
                    "None tag_loc must remain None (meta stays None)"
                );
            }
            _ => panic!("expected Scalar"),
        }
    }

    // TL-RELOC: reloc_mapping_tag_loc_preserved
    #[test]
    fn reloc_mapping_tag_loc_preserved() {
        let node = Node::Mapping {
            entries: vec![],
            style: CollectionStyle::Block,
            tag: Some(Cow::Owned("!m".to_owned())),
            loc: span(),
            meta: NodeMeta {
                anchor: None,
                anchor_loc: None,
                tag_loc: Some(span()),
                leading_comments: None,
                trailing_comment: None,
            }
            .into_option(),
        };
        let result = reloc(node, span());
        match result {
            Node::Mapping { meta, loc, .. } => {
                assert_eq!(loc, span());
                let m = meta.as_deref().expect("meta must be Some");
                assert_eq!(m.tag_loc, Some(span()), "tag_loc must be preserved");
            }
            _ => panic!("expected Mapping"),
        }
    }

    // TL-RELOC: reloc_sequence_tag_loc_preserved
    #[test]
    fn reloc_sequence_tag_loc_preserved() {
        let node = Node::Sequence {
            items: vec![],
            style: CollectionStyle::Block,
            tag: Some(Cow::Owned("!s".to_owned())),
            loc: span(),
            meta: NodeMeta {
                anchor: None,
                anchor_loc: None,
                tag_loc: Some(span()),
                leading_comments: None,
                trailing_comment: None,
            }
            .into_option(),
        };
        let result = reloc(node, span());
        match result {
            Node::Sequence { meta, loc, .. } => {
                assert_eq!(loc, span());
                let m = meta.as_deref().expect("meta must be Some");
                assert_eq!(m.tag_loc, Some(span()), "tag_loc must be preserved");
            }
            _ => panic!("expected Sequence"),
        }
    }

    // -----------------------------------------------------------------------
    // COW-RELOC: reloc preserves Cow variant identity
    // -----------------------------------------------------------------------

    // COW-RELOC-1: reloc preserves Cow::Borrowed tag
    #[test]
    fn reloc_preserves_borrowed_tag() {
        let node = Node::Scalar {
            value: "v".to_owned(),
            style: ScalarStyle::Plain,
            tag: Some(Cow::Borrowed("tag:yaml.org,2002:str")),
            loc: span(),
            meta: None,
        };
        let result = reloc(node, span());
        match result {
            Node::Scalar { tag, .. } => {
                assert!(
                    matches!(tag, Some(Cow::Borrowed(_))),
                    "reloc must not reallocate a Borrowed tag"
                );
            }
            _ => panic!("expected Scalar"),
        }
    }

    // COW-RELOC-2: reloc preserves Cow::Owned tag
    #[test]
    fn reloc_preserves_owned_tag() {
        let node = Node::Scalar {
            value: "v".to_owned(),
            style: ScalarStyle::Plain,
            tag: Some(Cow::Owned("!custom".to_owned())),
            loc: span(),
            meta: None,
        };
        let result = reloc(node, span());
        match result {
            Node::Scalar { tag, .. } => {
                assert!(
                    matches!(tag, Some(Cow::Owned(_))),
                    "reloc must preserve an Owned tag as Owned"
                );
            }
            _ => panic!("expected Scalar"),
        }
    }

    // -----------------------------------------------------------------------
    // RELOC-META: NodeMeta boxing preserved by reloc
    // -----------------------------------------------------------------------

    // RELOC-META-1: reloc_scalar_meta_none_preserved
    #[test]
    fn reloc_scalar_meta_none_preserved() {
        let node = plain_scalar(span());
        let result = reloc(node, span());
        match result {
            Node::Scalar { meta, loc, .. } => {
                assert_eq!(loc, span());
                assert!(meta.is_none(), "meta must remain None after reloc");
            }
            _ => panic!("expected Scalar"),
        }
    }

    // RELOC-META-2: reloc_scalar_meta_some_preserved
    #[test]
    fn reloc_scalar_meta_some_preserved() {
        let node = Node::Scalar {
            value: "v".to_owned(),
            style: ScalarStyle::Plain,
            tag: None,
            loc: span(),
            meta: NodeMeta {
                anchor: Some("a".to_owned()),
                anchor_loc: None,
                tag_loc: None,
                leading_comments: None,
                trailing_comment: None,
            }
            .into_option(),
        };
        let result = reloc(node, span());
        assert_eq!(result.anchor(), Some("a"), "anchor must survive reloc");
        match result {
            Node::Scalar { loc, .. } => assert_eq!(loc, span()),
            _ => panic!("expected Scalar"),
        }
    }
}