maybe_xml 0.11.0

XML processing library
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
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
//! Reader for `&str`.

use crate::token::Token;

pub(crate) mod parser;
mod scanner;

use scanner::scan;

/// Tokenizes XML input into a [`Token`].
///
/// It does not allocate.
///
/// # Examples
///
/// ## Using [`tokenize()`][Reader::tokenize()]
///
/// ```
/// use maybe_xml::{Reader, token::{Characters, EndTag, StartTag, Ty}};
///
/// let input = "<id>123</id>";
///
/// let reader = Reader::from_str(input);
/// let mut pos = 0;
///
/// let token = reader.tokenize(&mut pos);
/// if let Some(Ty::StartTag(tag)) = token.map(|t| t.ty()) {
///     assert_eq!("id", tag.name().local().as_str());
///     assert_eq!(None, tag.name().namespace_prefix());
/// } else {
///     panic!();
/// }
/// assert_eq!(4, pos);
///
/// let token = reader.tokenize(&mut pos);
/// if let Some(Ty::Characters(chars)) = token.map(|t| t.ty()) {
///     assert_eq!("123", chars.content().as_str());
/// } else {
///     panic!();
/// }
/// assert_eq!(7, pos);
///
/// let token = reader.tokenize(&mut pos);
/// if let Some(Ty::EndTag(tag)) = token.map(|t| t.ty()) {
///     assert_eq!("</id>", tag.as_str());
///     assert_eq!("id", tag.name().local().as_str());
/// } else {
///     panic!();
/// }
/// assert_eq!(12, pos);
///
/// let token = reader.tokenize(&mut pos);
/// assert_eq!(None, token);
///
/// // Verify that `pos` is equal to `input.len()` to ensure all data was
/// // processed.
/// ```
///
/// ## Using [`Iterator`] functionality
///
/// ```
/// use maybe_xml::{Reader, token::Ty};
///
/// let input = "<id>123</id><name>Jane Doe</name>";
///
/// let reader = Reader::from_str(input);
/// let mut iter = reader.into_iter().filter_map(|token| {
///     match token.ty() {
///         Ty::StartTag(tag) => Some(tag.name().as_str()),
///         _ => None,
///     }
/// });
///
/// let name = iter.next();
/// assert_eq!(Some("id"), name);
///
/// let name = iter.next();
/// assert_eq!(Some("name"), name);
///
/// assert_eq!(None, iter.next());
/// ```
///
/// Note that if the input is malformed or incomplete such as `<tag`, the
/// Iterator will return `None` and will not return the invalid input. If you
/// want to verify that all of the input was processed, then you should use the
/// [`Reader::tokenize()`][Reader::tokenize()] method.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct Reader<'a> {
    input: &'a str,
}

impl<'a> Reader<'a> {
    /// Creates a new instance with the given UTF-8 string input.
    #[inline]
    #[must_use]
    pub const fn from_str(input: &'a str) -> Self {
        Self { input }
    }

    /// Creates a new instance with the given UTF-8 string input.
    #[inline]
    #[must_use]
    pub const fn new(input: &'a str) -> Self {
        Self { input }
    }

    /// Tokenizes the input starting at the given position.
    ///
    /// If a token is found, the position argument is also updated to the byte
    /// index after the token.
    ///
    /// # Panics
    ///
    /// Panics if the `pos` is greater than the input length or if `pos` is
    /// not at a character boundary.
    ///
    /// # Examples
    ///
    /// ```
    /// use maybe_xml::{Reader, token::{StartTag, Ty}};
    ///
    /// let input = "<id>123</id>";
    ///
    /// let reader = Reader::from_str(input);
    /// let mut pos = 0;
    ///
    /// let token = reader.tokenize(&mut pos);
    /// if let Some(Ty::StartTag(tag)) = token.map(|t| t.ty()) {
    ///     assert_eq!("id", tag.name().local().as_str());
    ///     assert_eq!(None, tag.name().namespace_prefix());
    /// } else {
    ///     panic!();
    /// }
    ///
    /// // Position was assigned to the index after the end of the token
    /// assert_eq!(4, pos);
    /// ```
    ///
    /// If `tokenize()` returns `None`, but the position is not equal to the input's
    /// byte length, then there is unprocessed input such as malformed XML. For
    /// instance, if the input was `<tag` without the enclosing `>`, then
    /// `tokenize()` will return `None`.
    ///
    /// ```
    /// use maybe_xml::{Reader, token::{StartTag, Ty}};
    ///
    /// let input = "<tag";
    ///
    /// let reader = Reader::from_str(input);
    /// let mut pos = 0;
    ///
    /// let token = reader.tokenize(&mut pos);
    /// assert_eq!(None, token);
    ///
    /// assert_eq!(0, pos);
    /// assert_ne!(input.len(), pos);
    /// ```
    #[must_use]
    pub fn tokenize(&self, pos: &mut usize) -> Option<Token<'a>> {
        let input = self.input.as_bytes();
        if input.len() == *pos {
            return None;
        }

        assert!(crate::is_utf8_boundary(input[*pos]));

        let end = scan(input, *pos)?;
        let token = Token::from_str(unsafe { core::str::from_utf8_unchecked(&input[*pos..end]) });
        *pos = end;
        Some(token)
    }

    /// Constant function which tokenizes the input starting at the given position.
    ///
    /// # Important
    ///
    /// The `pos` is **not** updated and should be updated with the
    /// [`Token::len()`][Token::len()].
    ///
    /// # Panics
    ///
    /// Panics if the `pos` is greater than the input length or if `pos` is
    /// not at a character boundary.
    ///
    /// # Examples
    ///
    /// ```
    /// use maybe_xml::{Reader, token::{StartTag, Ty}};
    ///
    /// let input = "<id>123</id>";
    ///
    /// let reader = Reader::from_str(input);
    /// let mut pos = 0;
    ///
    /// let token = reader.parse(pos);
    /// if let Some(Ty::StartTag(tag)) = token.map(|t| t.ty()) {
    ///     assert_eq!("id", tag.name().local().as_str());
    ///     assert_eq!(None, tag.name().namespace_prefix());
    /// } else {
    ///     panic!();
    /// }
    ///
    /// pos += token.map(|t| t.len()).unwrap_or_default();
    /// assert_eq!(4, pos);
    /// ```
    ///
    /// If `parse()` returns `None`, but the position is not equal to the input's
    /// byte length, then there is unprocessed input such as malformed XML. For
    /// instance, if the input was `<tag` without the enclosing `>`, then
    /// `tokenize()` will return `None`.
    ///
    /// ```
    /// use maybe_xml::{Reader, token::{StartTag, Ty}};
    ///
    /// let input = "<tag";
    ///
    /// let reader = Reader::from_str(input);
    /// let mut pos = 0;
    ///
    /// let token = reader.parse(pos);
    /// assert_eq!(None, token);
    ///
    /// assert_eq!(0, pos);
    /// assert_ne!(input.len(), pos);
    /// ```
    #[must_use]
    pub const fn parse(&self, pos: usize) -> Option<Token<'a>> {
        let input = self.input.as_bytes();

        if input.len() == pos {
            return None;
        }

        assert!(
            crate::is_utf8_boundary(input[pos]),
            "pos is not at a character boundary"
        );

        if let Some(end) = scan(input, pos) {
            // This is a convoluted but *const* way of getting &self.input[*pos..end]
            let (bytes, _) = input.split_at(end);
            let (_, bytes) = bytes.split_at(pos);
            let token = Token::from_str(unsafe { core::str::from_utf8_unchecked(bytes) });
            Some(token)
        } else {
            None
        }
    }

    /// Returns an iterator for tokens starting at the given position.
    ///
    /// # Panics
    ///
    /// The iterator will panic if the initial `pos` is greater than the input
    /// length or if `pos` is not at a character boundary.
    ///
    /// # Examples
    ///
    /// ## Using other [`Iterator`] functionality
    ///
    /// ```
    /// use maybe_xml::{Reader, token::Ty};
    ///
    /// let input = "<id>123</id><name>Jane Doe</name>";
    ///
    /// let reader = Reader::from_str(input);
    /// let mut iter = reader.iter(0).filter_map(|token| {
    ///     match token.ty() {
    ///         Ty::StartTag(tag) => Some(tag.name().as_str()),
    ///         _ => None,
    ///     }
    /// });
    ///
    /// let name = iter.next();
    /// assert_eq!(Some("id"), name);
    ///
    /// let name = iter.next();
    /// assert_eq!(Some("name"), name);
    ///
    /// assert_eq!(None, iter.next());
    /// ```
    #[inline]
    #[must_use]
    pub const fn iter(&self, pos: usize) -> Iter<'a> {
        Iter::new(*self, pos)
    }

    /// Return the underlying bytes being tokenized.
    #[inline]
    #[must_use]
    pub const fn into_inner(self) -> &'a str {
        self.input
    }
}

impl<'a> IntoIterator for Reader<'a> {
    type Item = Token<'a>;

    type IntoIter = IntoIter<'a>;

    #[inline]
    fn into_iter(self) -> Self::IntoIter {
        IntoIter::new(self, 0)
    }
}

/// The returned iterator type for [`Reader::iter()`].
///
/// # Example
///
/// ```
/// use maybe_xml::{Reader, token::Ty};
///
/// let input = "<ID>Example</id><name>Jane Doe</name>";
/// let reader = Reader::new(input);
///
/// let mut iter = reader.iter(4)
///     .filter_map(|token| {
///         match token.ty() {
///             Ty::StartTag(start_tag) => {
///                 Some(start_tag.name().as_str())
///             }
///             Ty::EndTag(end_tag) => {
///                 Some(end_tag.name().as_str())
///             }
///             _ => None,
///         }
///     });
///
/// assert_eq!(Some("id"), iter.next());
/// assert_eq!(Some("name"), iter.next());
/// assert_eq!(Some("name"), iter.next());
/// assert_eq!(None, iter.next());
/// ```
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct Iter<'a> {
    inner: Reader<'a>,
    pos: usize,
}

impl<'a> Iter<'a> {
    #[inline]
    #[must_use]
    const fn new(inner: Reader<'a>, pos: usize) -> Self {
        Self { inner, pos }
    }
}

impl<'a> Iterator for Iter<'a> {
    type Item = Token<'a>;

    #[inline]
    fn next(&mut self) -> Option<Self::Item> {
        self.inner.tokenize(&mut self.pos)
    }
}

/// The returned iterator type when [`IntoIterator::into_iter()`] is called on [`Reader`].
///
/// # Example
///
/// ```
/// use maybe_xml::{Reader, token::Ty};
///
/// let input = "<ID>Example</id><name>Jane Doe</name>";
/// let reader = Reader::new(input);
///
/// let mut iter = reader.into_iter()
///     .filter_map(|token| {
///         match token.ty() {
///             Ty::StartTag(start_tag) => {
///                 Some(start_tag.name().as_str())
///             }
///             Ty::EndTag(end_tag) => {
///                 Some(end_tag.name().as_str())
///             }
///             _ => None,
///         }
///     });
///
/// assert_eq!(Some("ID"), iter.next());
/// assert_eq!(Some("id"), iter.next());
/// assert_eq!(Some("name"), iter.next());
/// assert_eq!(Some("name"), iter.next());
/// assert_eq!(None, iter.next());
/// ```
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct IntoIter<'a> {
    inner: Reader<'a>,
    pos: usize,
}

impl<'a> IntoIter<'a> {
    #[inline]
    #[must_use]
    const fn new(inner: Reader<'a>, pos: usize) -> Self {
        Self { inner, pos }
    }
}

impl<'a> Iterator for IntoIter<'a> {
    type Item = Token<'a>;

    #[inline]
    fn next(&mut self) -> Option<Self::Item> {
        self.inner.tokenize(&mut self.pos)
    }
}

#[cfg(test)]
mod tests {
    use crate::token::{
        Cdata, Characters, Comment, Declaration, EmptyElementTag, EndTag, ProcessingInstruction,
        StartTag, Ty,
    };

    use super::*;

    #[test]
    fn none_on_empty() {
        let reader = Reader::from_str("");
        let mut pos = 0;
        assert_eq!(None, reader.tokenize(&mut pos));
        assert_eq!(0, pos);
    }

    #[test]
    #[should_panic(expected = "out of bounds")]
    fn panic_on_pos_greater_than_slice_len() {
        let reader = Reader::from_str("");
        let mut pos = 1;
        let _ = reader.tokenize(&mut pos);
    }

    #[test]
    #[should_panic(expected = "out of bounds")]
    fn panic_on_pos_greater_than_slice_len_2() {
        let reader = Reader::from_str("hello");
        let mut pos = "hello".len() + 1;
        let _ = reader.tokenize(&mut pos);
    }

    #[test]
    #[should_panic(expected = "pos")]
    fn test_utf8() {
        let input = "你好";

        let reader = Reader::from_str(input);
        let mut pos = 1;
        let _ = reader.tokenize(&mut pos);
    }

    fn verify_tokenize_all(input: &str, expected: &[Ty<'_>]) {
        verify_tokenize(input, 0, expected, input.len());
    }

    fn verify_tokenize(input: &str, mut pos: usize, expected: &[Ty<'_>], end: usize) {
        let reader = Reader::from_str(input);

        for e in expected.iter().copied() {
            assert_eq!(Some(e), reader.tokenize(&mut pos).map(|token| token.ty()));
        }

        assert_eq!(None, reader.tokenize(&mut pos));
        assert_eq!(pos, end);
    }

    #[test]
    fn characters() {
        verify_tokenize_all("Hello", &[Ty::Characters(Characters::from_str("Hello"))]);
        verify_tokenize_all(" wo", &[Ty::Characters(Characters::from_str(" wo"))]);
        verify_tokenize(
            "rld!<",
            0,
            &[Ty::Characters(Characters::from_str("rld!"))],
            4,
        );
    }

    #[test]
    fn incomplete_start_of_markup() {
        verify_tokenize("<", 0, &[], 0);
    }

    #[test]
    fn start_tag() {
        let input = "<hello>";
        verify_tokenize_all(input, &[Ty::StartTag(StartTag::from_str(input))]);
    }

    #[test]
    fn start_tag_with_more_at_end() {
        let input = "<hello>Content";
        verify_tokenize_all(
            input,
            &[
                Ty::StartTag(StartTag::from_str("<hello>")),
                Ty::Characters(Characters::from_str("Content")),
            ],
        );
    }

    #[test]
    fn start_tag_with_single_quotes_attribute() {
        let input = "<hello a='val>'>Content";
        verify_tokenize_all(
            input,
            &[
                Ty::StartTag(StartTag::from_str("<hello a='val>'>")),
                Ty::Characters(Characters::from_str("Content")),
            ],
        );
    }

    #[test]
    fn start_tag_with_double_quotes_attribute() {
        let input = r#"<hello a="val>">"#;
        verify_tokenize_all(input, &[Ty::StartTag(StartTag::from_str(input))]);
    }

    #[test]
    fn empty_element_tag() {
        let input = "<hello/>";
        verify_tokenize_all(
            input,
            &[Ty::EmptyElementTag(EmptyElementTag::from_str(input))],
        );
    }

    #[test]
    fn empty_element_tag_space_after_slash_means_start_tag() {
        let input = "<hello / >";
        verify_tokenize(input, 0, &[], 0);
    }

    #[test]
    fn empty_element_tag_with_double_quotes_attribute() {
        let input = r#"<hello a="val/>"/>"#;
        verify_tokenize_all(
            input,
            &[Ty::EmptyElementTag(EmptyElementTag::from_str(input))],
        );
    }

    #[test]
    fn empty_element_tag_with_last_slash_means_start_tag() {
        let input = "<hello/ invalid>";
        verify_tokenize(input, 0, &[], 0);
    }

    #[test]
    fn end_tag() {
        let input = "</goodbye>";
        verify_tokenize_all(input, &[Ty::EndTag(EndTag::from_str(input))]);

        let input = "</goodbye >";
        verify_tokenize_all(input, &[Ty::EndTag(EndTag::from_str(input))]);
    }

    #[test]
    fn processing_instruction() {
        let input = r#"<?test a="b" ?>"#;
        verify_tokenize_all(
            input,
            &[Ty::ProcessingInstruction(ProcessingInstruction::from_str(
                input,
            ))],
        );
    }

    #[test]
    fn pi_with_single_quotes_attribute() {
        let input = "<?goodbye a='val>'?>Content";
        verify_tokenize_all(
            input,
            &[
                Ty::ProcessingInstruction(ProcessingInstruction::from_str("<?goodbye a='val>'?>")),
                Ty::Characters(Characters::from_str("Content")),
            ],
        );

        let input = "<?goodbye a='val>?>'Content";
        verify_tokenize_all(
            input,
            &[
                Ty::ProcessingInstruction(ProcessingInstruction::from_str("<?goodbye a='val>?>")),
                Ty::Characters(Characters::from_str("'Content")),
            ],
        );
    }

    #[test]
    fn pi_with_double_quotes_attribute() {
        let input = r#"<?goodbye a="val>"?>Content"#;
        verify_tokenize_all(
            input,
            &[
                Ty::ProcessingInstruction(ProcessingInstruction::from_str(
                    "<?goodbye a=\"val>\"?>",
                )),
                Ty::Characters(Characters::from_str("Content")),
            ],
        );

        let input = r#"<?goodbye a="val>?>"Content"#;
        verify_tokenize_all(
            input,
            &[
                Ty::ProcessingInstruction(ProcessingInstruction::from_str("<?goodbye a=\"val>?>")),
                Ty::Characters(Characters::from_str("\"Content")),
            ],
        );
    }

    #[test]
    fn pi_not_reuse_question_mark() {
        // The '>' byte here is treated as part of the tag's content because a "?>" is expected
        let input = "<?>";
        verify_tokenize(input, 0, &[], 0);
    }

    #[test]
    fn declaration_in_one_pass() {
        let input = "<!DOCTYPE test [<!ELEMENT test (#PCDATA)>]>";
        verify_tokenize_all(
            input,
            &[Ty::Declaration(Declaration::from_str(
                "<!DOCTYPE test [<!ELEMENT test (#PCDATA)>]>",
            ))],
        );
    }

    #[test]
    fn declaration_with_single_quotes_attribute() {
        let input = "<!goodbye a='val>'>Content";
        verify_tokenize(input, 0, &[], 0);
    }

    #[test]
    fn declaration_with_double_quotes_attribute() {
        let input = r#"<!goodbye a="val>">Content"#;
        verify_tokenize(input, 0, &[], 0);
    }

    #[test]
    fn declaration_with_closed_brackets() {
        let input = "<![%test;[<!ELEMENT test (something*)>]]>";
        verify_tokenize(input, 0, &[], 0);
    }

    #[test]
    fn declaration_with_unclosed_single_bracket() {
        let input = "<![test>>] >Content";
        verify_tokenize(input, 0, &[], 0);
    }

    #[test]
    fn declaration_with_unclosed_double_bracket() {
        let input = "<![test>[more>>] >Content>>] >Content";
        verify_tokenize(input, 0, &[], 0);
    }

    #[test]
    fn comment_in_one_pass() {
        let input = "<!-- Comment -->";
        verify_tokenize_all(input, &[Ty::Comment(Comment::from_str("<!-- Comment -->"))]);
    }

    #[test]
    fn comment_with_trailing_data() {
        let input = "<!-- Comment -->Content";
        verify_tokenize_all(
            input,
            &[
                Ty::Comment(Comment::from_str("<!-- Comment -->")),
                Ty::Characters(Characters::from_str("Content")),
            ],
        );
    }

    #[test]
    fn comment_with_single_quotes_attribute() {
        let input = "<!-- goodbye a='val-->Content";
        verify_tokenize_all(
            input,
            &[
                Ty::Comment(Comment::from_str("<!-- goodbye a='val-->")),
                Ty::Characters(Characters::from_str("Content")),
            ],
        );
    }

    #[test]
    fn comment_with_double_quotes_attribute() {
        let input = r#"<!-- goodbye a="val-->Content"#;
        verify_tokenize_all(
            input,
            &[
                Ty::Comment(Comment::from_str("<!-- goodbye a=\"val-->")),
                Ty::Characters(Characters::from_str("Content")),
            ],
        );
    }

    #[test]
    fn comment_with_invalid_start_means_declaration() {
        let input = r#"<!-goodbye a="-->val-->">Content"#;
        verify_tokenize(input, 0, &[], 0);
    }

    #[test]
    fn comment_not_reused_dashes() {
        let input = "<!-->-->";
        verify_tokenize_all(input, &[Ty::Comment(Comment::from_str(input))]);
    }

    #[test]
    fn comment_not_reused_dashes_missing_close() {
        let input = "<!-->";
        verify_tokenize(input, 0, &[], 0);
    }

    #[test]
    fn cdata() {
        let input = "<![CDATA[ Content ]]>";
        verify_tokenize_all(input, &[Ty::Cdata(Cdata::from_str(input))]);
    }

    #[test]
    fn declaration_with_uneven_brackets() {
        let input = "<![&random[ Declaration ]]]>";
        verify_tokenize(input, 0, &[], 0);
    }

    #[test]
    fn cdata_with_trailing_data() {
        let input = "<![CDATA[ Content ]]> Unused Content";
        verify_tokenize_all(
            input,
            &[
                Ty::Cdata(Cdata::from_str("<![CDATA[ Content ]]>")),
                Ty::Characters(Characters::from_str(" Unused Content")),
            ],
        );
    }

    #[test]
    fn cdata_with_no_space_trailing_data() {
        let input = "<![CDATA[ Content ]]>Content";
        verify_tokenize_all(
            input,
            &[
                Ty::Cdata(Cdata::from_str("<![CDATA[ Content ]]>")),
                Ty::Characters(Characters::from_str("Content")),
            ],
        );
    }

    #[test]
    fn cdata_with_invalid_start_means_declaration() {
        // missing "["
        let input = r#"<![CDATA Content a="]]>"#;
        verify_tokenize(input, 0, &[], 0);

        let input = r#"<![CDATA Content a="]]>]]>"]]>Content"#;
        verify_tokenize(input, 0, &[], 0);
    }

    #[test]
    fn cdata_with_double_right_bracket_inside() {
        let input = r#"<![CDATA[ Content a="]>"#;
        verify_tokenize(input, 0, &[], 0);

        let input = r#"<![CDATA[ Content a="]>other ]]"]] test ]]>Content"#;
        verify_tokenize_all(
            input,
            &[
                Ty::Cdata(Cdata::from_str(
                    r#"<![CDATA[ Content a="]>other ]]"]] test ]]>"#,
                )),
                Ty::Characters(Characters::from_str("Content")),
            ],
        );
    }

    #[test]
    fn cdata_with_single_closing_bracket() {
        let input = r#"<![CDATA[ Content a="]>]>" test ]>Content"#;
        verify_tokenize(input, 0, &[], 0);

        let input = r#"<![CDATA[ Content a="]>]>" test ]>ContentMore ]]>Real Content"#;
        verify_tokenize_all(
            input,
            &[
                Ty::Cdata(Cdata::from_str(
                    r#"<![CDATA[ Content a="]>]>" test ]>ContentMore ]]>"#,
                )),
                Ty::Characters(Characters::from_str("Real Content")),
            ],
        );
    }

    #[test]
    fn doctype_with_bracket_in_comments() {
        let input = r#"<?xml version="1.1" encoding="UTF-8"?>
<!DOCTYPE root [
<!-- A ] -->
]>
<root/>
"#;
        verify_tokenize_all(
            input,
            &[
                Ty::ProcessingInstruction(ProcessingInstruction::from_str(
                    r#"<?xml version="1.1" encoding="UTF-8"?>"#,
                )),
                Ty::Characters(Characters::from_str("\n")),
                Ty::Declaration(Declaration::from_str(
                    r"<!DOCTYPE root [
<!-- A ] -->
]>",
                )),
                Ty::Characters(Characters::from_str("\n")),
                Ty::EmptyElementTag(EmptyElementTag::from_str("<root/>")),
                Ty::Characters(Characters::from_str("\n")),
            ],
        );
    }
}