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
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
//! Parse HTML documents into [HtmlDocuments](HtmlDocument).
//!
//! # Example: parse HTML text into a document
//! ```rust
//! use skyscraper::html::{self, parse::ParseError};
//! # fn main() -> Result<(), ParseError> {
//! let html_text = r##"
//! <html>
//!     <body>
//!         <div>Hello world</div>
//!     </body>
//! </html>"##;
//!
//! let document = html::parse(html_text)?;
//! # Ok(())
//! # }
//! ```

pub mod parse;
mod tokenizer;

use std::{
    collections::HashMap,
    fmt::{self, Write},
};

use enum_extract_macro::EnumExtract;
use indextree::{Arena, NodeId};
use once_cell::sync::Lazy;

pub use crate::html::parse::parse;

/// List of HTML tags that do not have end tags and cannot have any content.
static VOID_TAGS: Lazy<Vec<&'static str>> = Lazy::new(|| {
    vec![
        "meta", "link", "img", "input", "br", "hr", "col", "area", "base", "embed", "keygen",
        "param", "source", "track", "wbr",
    ]
});

type TagAttributes = HashMap<String, String>;

/// An HTML tag and its attributes.
#[derive(Debug, PartialEq, Clone)]
pub struct HtmlTag {
    /// Name of the tag.
    pub name: String,
    /// Map of the tag's attributes and their corresponding values.
    /// Example: Attributes of <div class="hello" id="world"/>
    pub attributes: TagAttributes,
}

impl HtmlTag {
    /// Creates a new tag with the given name and no attributes.
    pub fn new(name: String) -> HtmlTag {
        HtmlTag {
            name,
            attributes: HashMap::new(),
        }
    }

    /// Gets any direct HtmlNode::Text children and concatenates them into a single string
    /// separated by a space character if no whitespace already separates them.
    pub fn get_text(&self, doc_node: &DocumentNode, document: &HtmlDocument) -> Option<String> {
        self.internal_get_text(doc_node, document, false)
    }

    /// Gets all HtmlNode::Text children and concatenates them into a single string separated
    /// by a space character if no whitespace already separates them.
    pub fn get_all_text(&self, doc_node: &DocumentNode, document: &HtmlDocument) -> Option<String> {
        self.internal_get_text(doc_node, document, true)
    }

    fn internal_get_text(
        &self,
        doc_node: &DocumentNode,
        document: &HtmlDocument,
        recurse: bool,
    ) -> Option<String> {
        let mut o_text: Option<String> = None;
        let children = doc_node.children(document);

        // Iterate through this tag's children
        for child in children {
            let child_node = document.get_html_node(&child);
            if let Some(child_node) = child_node {
                match child_node {
                    HtmlNode::Text(text) => {
                        // If the child is a text, simply append its text.
                        o_text = Some(HtmlTag::append_text(o_text, text.value.to_string()));
                    }
                    HtmlNode::Tag(_) => {
                        // If the child is a tag, only append its text if recurse=true was passed,
                        // otherwise skip this node.
                        if recurse {
                            let o_child_text = child_node.internal_get_text(&child, document, true);
                            if let Some(child_text) = o_child_text {
                                o_text = Some(HtmlTag::append_text(o_text, child_text));
                            }
                        }
                    }
                }
            }
        }

        o_text
    }

    fn append_text(o_text: Option<String>, append_text: String) -> String {
        match o_text {
            Some(t) => {
                // If whitespace is already separating them, do not add another.
                if t.ends_with(|ch: char| ch.is_whitespace())
                    || append_text.starts_with(|ch: char| ch.is_whitespace())
                {
                    format!("{}{}", t, append_text)
                } else {
                    format!("{} {}", t, append_text)
                }
            }
            None => append_text,
        }
    }
}

/// Text content in an HTML document.
#[derive(PartialEq, Clone, Debug)]
pub struct HtmlText {
    /// The text content.
    ///
    /// If the text has non-whitespace characters, it is trimmed.
    /// Otherwise, if the text is solely whitespace, it is kept as-is.
    /// This emulates the behaviour of Chromium browsers.
    pub value: String,
    /// Whether the text content is solely whitespace.
    pub only_whitespace: bool,
}

impl HtmlText {
    /// Creates a new [HtmlText] from the given string.
    pub fn from_str(value: &str) -> HtmlText {
        let text = unescape_characters(value);
        HtmlText {
            value: text.to_string(),
            only_whitespace: text.trim().is_empty(),
        }
    }
}

/// Unescapes commonly escaped characters in HTML text.
///
/// - `&amp;` becomes `&`
/// - `&lt;` becomes `<`
/// - `&gt;` becomes `>`
/// - `&quot;` becomes `"`
/// - `&#39;` becomes `'`
pub fn unescape_characters(text: &str) -> String {
    text.replace("&amp;", "&")
        .replace("&lt;", "<")
        .replace("&gt;", ">")
        .replace("&quot;", r#"""#)
        .replace("&#39;", "'")
}

/// Escapes commonly escaped characters in HTML text.
///
/// - `&` becomes `&amp;`
/// - `<` becomes `&lt;`
/// - `>` becomes `&gt;`
/// - `"` becomes `&quot;`
/// - `'` becomes `&#39;`
pub fn escape_characters(text: &str) -> String {
    text.replace("&", "&amp;")
        .replace("<", "&lt;")
        .replace(">", "&gt;")
        .replace(r#"""#, "&quot;")
        .replace("'", "&#39;")
}

/// Trims internal whitespace from the given text such that only a single space separates words.
/// This is used to emulate the behaviour of Chromium browsers.
///
/// # Example
/// ```rust
/// use skyscraper::html::trim_internal_whitespace;
/// let text = "  hello  \n world  ";
/// let result = trim_internal_whitespace(text);
/// assert_eq!("hello world", result);
/// ```
pub fn trim_internal_whitespace(text: &str) -> String {
    let mut result = String::new();
    let mut last_char = ' ';
    for c in text.chars() {
        if c.is_whitespace() {
            if !last_char.is_whitespace() {
                result.push(' ');
            }
        } else {
            result.push(c);
        }
        last_char = c;
    }
    result.trim_end().to_string()
}

/// An HTML node can be either a tag or raw text.
#[derive(Clone, Debug, EnumExtract)]
pub enum HtmlNode {
    /// An HTML tag.
    Tag(HtmlTag),
    /// Text content contained within [HtmlNode::Tag].
    ///
    /// Kept as separate enum value rather than a field on [HtmlTag] so
    /// that order can be maintained in nodes containing a mix of text
    /// and tags.
    ///
    /// # Example: order of mixed text and tag contents is preserved
    /// ```html
    /// <div>
    ///     Hello <span style="bold">world</span>!
    /// </div>
    /// ```
    /// Where the inner contents of `div` would be: `Text("Hello ")`, `Tag(span)`, `Text("!")`.
    ///
    Text(HtmlText),
}

impl HtmlNode {
    /// Gets any direct HtmlNode::Text children and concatenates them into a single string
    /// separated by a space character if no whitespace already separates them.
    pub fn get_text(&self, doc_node: &DocumentNode, document: &HtmlDocument) -> Option<String> {
        self.internal_get_text(doc_node, document, false)
    }

    /// Gets all HtmlNode::Text children and concatenates them into a single string separated
    /// by a space character if no whitespace already separates them.
    pub fn get_all_text(&self, doc_node: &DocumentNode, document: &HtmlDocument) -> Option<String> {
        self.internal_get_text(doc_node, document, true)
    }

    /// Gets any direct HtmlNode::Text children and concatenates them into a single string
    /// separated by a space character if no whitespace already separates them.
    fn internal_get_text(
        &self,
        doc_node: &DocumentNode,
        document: &HtmlDocument,
        recurse: bool,
    ) -> Option<String> {
        match self {
            HtmlNode::Tag(tag) => {
                if recurse {
                    tag.get_all_text(doc_node, document)
                } else {
                    tag.get_text(doc_node, document)
                }
            }
            HtmlNode::Text(text) => Some(text.value.to_string()),
        }
    }

    /// Gets attributes.
    /// If Node is a `Text` return None
    pub fn get_attributes(&self) -> Option<&TagAttributes> {
        match self {
            HtmlNode::Tag(tag) => Some(&tag.attributes),
            &HtmlNode::Text(_) => None,
        }
    }
}

/// HTML document tree represented by an indextree arena and a root node.
///
/// Documents must have a single root node to be valid.
#[derive(Clone)]
pub struct HtmlDocument {
    pub(crate) arena: Arena<HtmlNode>,
    /// The root node of the document.
    pub root_node: DocumentNode,
}

impl HtmlDocument {
    /// Create a new [HtmlDocument] with the given `arena` contents and `root_node`.
    pub fn new(arena: Arena<HtmlNode>, root_node: DocumentNode) -> HtmlDocument {
        HtmlDocument { arena, root_node }
    }

    /// Get the [HtmlNode] associated with the given [DocumentNode].
    pub fn get_html_node(&self, node: &DocumentNode) -> Option<&HtmlNode> {
        self.arena.get(node.id).map(|x| x.get())
    }

    /// Get a flattened string representation of this document.
    ///
    /// This ignores all text nodes that are solely whitespace.
    /// It does not trim whitespace on nodes that contain both whitespace and non-whitespace.
    pub fn to_formatted_string(&self, format_type: DocumentFormatType) -> String {
        let text =
            display_node(0, self, &self.root_node, format_type).expect("failed to display node");
        format!("{}", text)
    }

    /// Get an iterator over all nodes in this document.
    pub fn iter(&self) -> impl Iterator<Item = DocumentNode> + '_ {
        self.arena.iter().map(|node| {
            let id = self.arena.get_node_id(node).unwrap();
            DocumentNode::new(id)
        })
    }
}

impl fmt::Display for HtmlDocument {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let text = display_node(0, self, &self.root_node, DocumentFormatType::Standard)?;
        write!(f, "{}", text)
    }
}

/// Describes the formatting when converting an [HtmlDocument] to a string.
#[derive(PartialEq, Eq, PartialOrd, Ord, Copy, Clone, Debug, Hash)]
pub enum DocumentFormatType {
    /// Output the text as-is, without any formatting.
    Standard,
    /// Ignore all text nodes that are solely whitespace.
    IgnoreWhitespace,
    /// Indent all nodes regardless of existing whitespace.
    Indented,
}

fn display_node(
    indent: u8,
    doc: &HtmlDocument,
    doc_node: &DocumentNode,
    format_type: DocumentFormatType,
) -> Result<String, fmt::Error> {
    fn display_indent(indent: u8, str: &mut String) -> fmt::Result {
        for _ in 0..indent {
            write!(str, "    ")?;
        }
        Ok(())
    }

    let mut str = String::new();

    let html_node = doc.get_html_node(doc_node).unwrap();

    match html_node {
        HtmlNode::Tag(tag) => {
            // display begin tag

            if matches!(format_type, DocumentFormatType::Indented) {
                display_indent(indent, &mut str)?;
            }
            write!(&mut str, "<{}", tag.name)?;
            for attribute in &tag.attributes {
                write!(&mut str, r#" {}="{}""#, attribute.0, attribute.1)?;
            }
            write!(&mut str, ">")?;
            if matches!(format_type, DocumentFormatType::Indented) {
                write!(&mut str, "\n")?;
            }

            // self-closing tags cannot have content or an end tag
            if !VOID_TAGS.contains(&tag.name.as_str()) {
                // recursively display all children
                let children = doc_node.children(doc);
                for child in children {
                    write!(
                        &mut str,
                        "{}",
                        display_node(indent + 1, doc, &child, format_type)?
                    )?;
                }

                // display end tag
                if matches!(format_type, DocumentFormatType::Indented) {
                    display_indent(indent, &mut str)?;
                }
                write!(&mut str, "</{}>", tag.name)?;
                if matches!(format_type, DocumentFormatType::Indented) {
                    write!(&mut str, "\n")?;
                }
            }
        }
        HtmlNode::Text(text) => {
            let output_text = escape_characters(text.value.as_str());
            match format_type {
                DocumentFormatType::Standard => {
                    write!(&mut str, "{}", output_text)?;
                }
                DocumentFormatType::IgnoreWhitespace => {
                    // If ignoring whitespace texts, only display if this text is not solely whitespace.
                    if !text.only_whitespace {
                        write!(&mut str, "{}", output_text)?;
                    }
                }
                DocumentFormatType::Indented => {
                    // If indenting, only display if this text is not solely whitespace.
                    if !text.only_whitespace {
                        display_indent(indent, &mut str)?;

                        // Trim the text incase there's leading or trailing whitespace.
                        writeln!(&mut str, "{}", output_text.trim())?;
                    }
                }
            }
        }
    }

    Ok(str)
}

/// A key representing a single [HtmlNode] contained in a [HtmlDocument].
///
/// Contains tree information such as parents and children.
///
/// Implements [Copy] so that it can be easily passed around, unlike its associated [HtmlNode].
///
/// # Example: get associated [HtmlNode]
///
/// ```rust
/// # use skyscraper::html::{self, DocumentNode, HtmlNode, parse::ParseError};
/// # fn main() -> Result<(), ParseError> {
/// // Parse the HTML text into a document
/// let text = r#"<div/>"#;
/// let document = html::parse(text)?;
///
/// // Get the root document node's associated HTML node
/// let doc_node: DocumentNode = document.root_node;
/// let html_node = document.get_html_node(&doc_node).expect("root node must be in document");
///
/// // Check we got the right node
/// match html_node {
///     HtmlNode::Tag(tag) => assert_eq!(String::from("div"), tag.name),
///     HtmlNode::Text(_) => panic!("expected tag, got text instead")
/// }
/// # Ok(())
/// # }
/// ```
///
/// # Example: get children and parents
///
/// ```rust
/// # use skyscraper::html::{self, DocumentNode, HtmlNode, parse::ParseError};
/// # fn main() -> Result<(), ParseError> {
/// // Parse the HTML text into a document
/// let text = r#"<parent><child/><child/></parent>"#;
/// let document = html::parse(text)?;
///
/// // Get the children of the root node
/// let parent_node: DocumentNode = document.root_node;
/// let children: Vec<DocumentNode> = parent_node.children(&document).collect();
/// assert_eq!(2, children.len());
///
/// // Get the parent of both child nodes
/// let parent_of_child0: DocumentNode = children[0].parent(&document).expect("parent of child 0 missing");
/// let parent_of_child1: DocumentNode = children[1].parent(&document).expect("parent of child 1 missing");
///
/// assert_eq!(parent_node, parent_of_child0);
/// assert_eq!(parent_node, parent_of_child1);
/// # Ok(())
/// # }
/// ```
#[derive(PartialEq, Eq, PartialOrd, Ord, Copy, Clone, Debug, Hash)]
pub struct DocumentNode {
    id: NodeId,
}

impl DocumentNode {
    /// Create a new [DocumentNode] from the given arena key `id`.
    pub fn new(id: NodeId) -> DocumentNode {
        DocumentNode { id }
    }

    /// Get the concatenated text of this node and all of its children.
    ///
    /// Adds a space between elements for better readability.
    ///
    /// # Example: get the text of a node
    ///
    /// ```rust
    /// use skyscraper::html::{self, parse::ParseError};
    /// # fn main() -> Result<(), ParseError> {
    /// // Parse the text into a document.
    /// let text = r##"<parent>foo<child>bar</child>baz</parent>"##;
    /// let document = html::parse(text)?;
    ///
    /// // Get all text of the root node.
    /// let doc_node = document.root_node;
    /// let text = doc_node.get_all_text(&document).expect("text missing");
    ///
    /// assert_eq!("foo bar baz", text);
    /// # Ok(())
    /// # }
    pub fn get_all_text(&self, document: &HtmlDocument) -> Option<String> {
        match document.get_html_node(self) {
            Some(html_node) => html_node.get_all_text(self, document),
            None => None,
        }
    }

    /// Get the concatenated text of this node.
    ///
    /// Adds a space between elements for better readability.
    ///
    /// # Example: get the text of a node
    ///
    /// ```rust
    /// use skyscraper::html::{self, parse::ParseError};
    /// # fn main() -> Result<(), ParseError> {
    /// // Parse the text into a document.
    /// let html_text = r##"<parent>foo<child>bar</child>baz</parent>"##;
    /// let document = html::parse(html_text)?;
    ///
    /// // Get all text of the root node.
    /// let doc_node = document.root_node;
    /// let text = doc_node.get_text(&document).expect("text missing");
    ///
    /// assert_eq!("foo baz", text);
    /// # Ok(())
    /// # }
    pub fn get_text(&self, document: &HtmlDocument) -> Option<String> {
        match document.get_html_node(self) {
            Some(html_node) => html_node.get_text(self, document),
            None => None,
        }
    }

    /// Get attributes.
    ///
    /// If Node is a `Text` return None
    ///
    /// ```rust
    /// use skyscraper::html::{self, parse::ParseError};
    /// # fn main() -> Result<(), ParseError> {
    /// // Parse the text into a document.
    /// let html_text = r##"<div attr1="attr1_value"></div>"##;
    /// let document = html::parse(html_text)?;
    ///
    /// // Get root node.
    /// let doc_node = document.root_node;
    /// let attributes = doc_node.get_attributes(&document).expect("No attributes");
    ///
    /// assert_eq!("attr1_value", attributes["attr1"]);
    /// # Ok(())
    /// # }
    pub fn get_attributes<'a>(&'a self, document: &'a HtmlDocument) -> Option<&'a TagAttributes> {
        match document.get_html_node(self) {
            Some(html_node) => html_node.get_attributes(),
            None => None,
        }
    }

    /// Get the children of this node as an iterator.
    pub fn children<'a>(
        &self,
        document: &'a HtmlDocument,
    ) -> impl Iterator<Item = DocumentNode> + 'a {
        Box::new(self.id.children(&document.arena).map(DocumentNode::new))
    }

    /// Get the parent of this node if it exists.
    pub fn parent(&self, document: &HtmlDocument) -> Option<DocumentNode> {
        self.id
            .ancestors(&document.arena)
            .nth(1)
            .map(DocumentNode::new)
    }
}

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

    use super::*;

    #[test]
    fn html_node_get_text_should_work_on_text_node() {
        // arrange
        let mut arena = Arena::new();
        let text_node = HtmlNode::Text(HtmlText::from_str("hello world"));
        let text_doc_node = DocumentNode::new(arena.new_node(text_node));
        let document = HtmlDocument::new(arena, text_doc_node);

        // act
        let text_node = document.get_html_node(&text_doc_node).unwrap();
        let result = text_node.get_text(&text_doc_node, &document).unwrap();

        // assert
        assert_eq!("hello world", result);
    }

    #[test]
    fn html_node_get_text_should_work_on_tag_node_with_one_text_child() {
        // arrange
        let mut arena = Arena::new();
        let text_node = HtmlNode::Text(HtmlText::from_str("hello world"));
        let text_node_id = arena.new_node(text_node);

        let tag_node = HtmlNode::Tag(HtmlTag::new(String::from("tag")));
        let tag_node_id = arena.new_node(tag_node);
        let tag_doc_node = DocumentNode::new(tag_node_id);
        tag_node_id.append(text_node_id, &mut arena);

        let document = HtmlDocument::new(arena, tag_doc_node);

        // act
        let tag_node = document.get_html_node(&tag_doc_node).unwrap();
        let result = tag_node.get_text(&tag_doc_node, &document).unwrap();

        // assert
        assert_eq!("hello world", result);
    }

    #[test]
    fn html_node_get_text_should_work_on_tag_node_with_two_text_children() {
        // arrange
        let mut arena = Arena::new();
        let text_node = HtmlNode::Text(HtmlText::from_str("hello"));
        let text_node_id = arena.new_node(text_node);

        let text_node2 = HtmlNode::Text(HtmlText::from_str("world"));
        let text_node2_id = arena.new_node(text_node2);

        let tag_node = HtmlNode::Tag(HtmlTag::new(String::from("tag")));
        let tag_node_id = arena.new_node(tag_node);
        tag_node_id.append(text_node_id, &mut arena);
        tag_node_id.append(text_node2_id, &mut arena);
        let tag_doc_node = DocumentNode::new(tag_node_id);

        let document = HtmlDocument::new(arena, tag_doc_node);

        // act
        let tag_node = document.get_html_node(&tag_doc_node).unwrap();
        let result = tag_node.get_text(&tag_doc_node, &document).unwrap();

        // assert
        assert_eq!("hello world", result);
    }

    #[test]
    fn html_node_get_text_should_ignore_nested_text() {
        // arrange
        let mut arena = Arena::new();
        let text_node = HtmlNode::Text(HtmlText::from_str("hello"));
        let text_node_id = arena.new_node(text_node);

        let text_node2 = HtmlNode::Text(HtmlText::from_str("world"));
        let text_node2_id = arena.new_node(text_node2);

        let tag_node = HtmlNode::Tag(HtmlTag::new(String::from("tag")));
        let tag_node_id = arena.new_node(tag_node);
        tag_node_id.append(text_node_id, &mut arena);

        let tag_node2 = HtmlNode::Tag(HtmlTag::new(String::from("tag2")));
        let tag_node2_id = arena.new_node(tag_node2);
        tag_node2_id.append(text_node2_id, &mut arena);
        tag_node_id.append(tag_node2_id, &mut arena);
        let tag_doc_node = DocumentNode::new(tag_node_id);

        let document = HtmlDocument::new(arena, tag_doc_node);

        // act
        let tag_node = document.get_html_node(&tag_doc_node).unwrap();
        let result = tag_node.get_text(&tag_doc_node, &document).unwrap();

        // assert
        assert_eq!("hello", result);
    }

    #[test]
    fn html_node_get_all_text_should_include_nested_text() {
        // arrange
        let mut arena = Arena::new();
        let text_node = HtmlNode::Text(HtmlText::from_str("hello"));
        let text_node_id = arena.new_node(text_node);

        let text_node2 = HtmlNode::Text(HtmlText::from_str("world"));
        let text_node2_id = arena.new_node(text_node2);

        let tag_node = HtmlNode::Tag(HtmlTag::new(String::from("tag")));
        let tag_node_id = arena.new_node(tag_node);
        tag_node_id.append(text_node_id, &mut arena);

        let tag_node2 = HtmlNode::Tag(HtmlTag::new(String::from("tag2")));
        let tag_node2_id = arena.new_node(tag_node2);
        tag_node2_id.append(text_node2_id, &mut arena);
        tag_node_id.append(tag_node2_id, &mut arena);
        let tag_doc_node = DocumentNode::new(tag_node_id);

        let document = HtmlDocument::new(arena, tag_doc_node);

        // act
        let tag_node = document.get_html_node(&tag_doc_node).unwrap();
        let result = tag_node.get_all_text(&tag_doc_node, &document).unwrap();

        // assert
        assert_eq!("hello world", result);
    }

    #[test]
    fn html_node_get_attributes_for_tag() {
        // arrange
        let node = HtmlNode::Tag(HtmlTag {
            name: "div".to_string(),
            attributes: HashMap::from([("attr_name".to_string(), "attr_value".to_string())]),
        });

        // assert
        assert!(node.get_attributes().is_some());
        assert_eq!(node.get_attributes().unwrap()["attr_name"], "attr_value");
    }

    #[test]
    fn html_node_get_attributes_for_text() {
        // arrange
        let node = HtmlNode::Text(HtmlText::from_str("hello world"));

        // assert
        assert!(node.get_attributes().is_none())
    }

    #[test]
    fn document_node_get_attributes_for_tag() {
        // arrange
        let mut arena = Arena::new();
        let html_node = HtmlNode::Tag(HtmlTag {
            name: "div".to_string(),
            attributes: HashMap::from([("attr_name".to_string(), "attr_value".to_string())]),
        });
        let doc_node = DocumentNode::new(arena.new_node(html_node));
        let html_document = HtmlDocument::new(arena, doc_node);

        // act
        let node = html_document.get_html_node(&doc_node).unwrap();
        let attributes = node.get_attributes();

        // assert
        assert!(attributes.is_some());
        assert_eq!(attributes.unwrap()["attr_name"], "attr_value");
    }

    #[test]
    fn document_node_get_attributes_for_text() {
        // arrange
        let mut arena = Arena::new();
        let html_node = HtmlNode::Text(HtmlText::from_str("hello world"));
        let doc_node = DocumentNode::new(arena.new_node(html_node));
        let html_document = HtmlDocument::new(arena, doc_node);

        // act
        let node = html_document.get_html_node(&doc_node).unwrap();
        let attributes = node.get_attributes();

        // assert
        assert!(attributes.is_none());
    }

    #[test]
    fn html_document_display_should_output_same_text() {
        // arrange
        let text = indoc!(
            r#"
            <html>
                <a>
                    the
                </a>
                <b>
                    quick
                    <c>
                        brown
                    </c>
                    fox
                </b>
                jumps
                over
                <d>
                </d>
                the lazy
                <f>
                    dog
                </f>
            </html>
            "#,
        );

        let document = parse(&text).unwrap();

        // act
        let html_output = document.to_formatted_string(DocumentFormatType::Indented);

        // assert
        assert_eq!(html_output, text);
    }

    #[test]
    fn html_document_display_should_handle_attributes() {
        // arrange
        let text = indoc!(
            r#"
            <html @class="foo" @id="bar">
            </html>"#,
        );

        let document = parse(&text).unwrap();

        // act
        let html_output = document.to_string();

        // assert
        // the order of the attributes is undefined, so it must be deserialized and compared programatically
        let result_document = parse(&html_output).unwrap();

        let node = result_document
            .get_html_node(&result_document.root_node)
            .unwrap()
            .extract_as_tag();

        assert_eq!("html", node.name);
        assert_eq!("foo", node.attributes["@class"]);
        assert_eq!("bar", node.attributes["@id"]);
    }

    #[test]
    fn html_document_display_should_expand_self_closing_tags() {
        // arrange
        let text = indoc!(
            r#"
            <html>
                <a />
            </html>
            "#,
        );

        let document = parse(&text).unwrap();

        // act
        let html_output = document.to_formatted_string(DocumentFormatType::Indented);

        // assert
        let expected_text = indoc!(
            r#"
            <html>
                <a>
                </a>
            </html>
            "#,
        );
        assert_eq!(html_output, expected_text);
    }

    #[test]
    fn html_document_display_should_handle_void_tags() {
        // arrange
        let text = indoc!(
            r#"
            <html>
                <br>
            </html>
            "#,
        );

        let document = parse(&text).unwrap();

        // act
        let html_output = document.to_formatted_string(DocumentFormatType::Indented);

        // assert
        assert_eq!(html_output, text);
    }

    #[test]
    fn html_document_display_should_escape_text() {
        // arrange
        let text = indoc!(
            r#"
            <html>
                &lt;
            </html>
            "#,
        );

        let document = parse(&text).unwrap();

        // act
        let html_output = document.to_formatted_string(DocumentFormatType::Indented);

        // assert
        // assert that the text retrieved from the tag was unescaped
        let root_text = document.root_node.get_text(&document).unwrap();
        let trimmed = root_text.trim();
        assert_eq!("<", trimmed);

        // asser that the display output was escaped
        assert_eq!(html_output, text);
    }
}