doclog 0.3.0

A Rust log library based on Rust's compiler logs
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
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
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
use section::*;
mod section;

use crate::blocks::TextBlock;
use crate::constants::{
    BOTTOM_RIGHT_CORNER, HORIZONTAL_BAR, NEW_LINE_LEFT, TOP_RIGHT_CORNER, VERTICAL_BAR,
};
use crate::printer::{Printable, Printer, PrinterFormat};
use crate::utils::cursor::Cursor;
use crate::utils::whitespaces::{build_space_string, build_whitespace_string};
use crate::LogLevel;
use const_format::concatcp;
use std::borrow::Cow;
use std::fmt::Display;
use std::ops::Range;
use std::option::Option::Some;
use yansi::{Color, Style};

/// A block that prints a section of a document.
#[derive(Debug, Clone)]
pub struct CodeBlock<'a> {
    code: Cow<'a, str>,
    sections: Vec<CodeSection<'a>>,
    pub title: TextBlock<'a>,
    pub file_path: TextBlock<'a>,
    pub final_message: TextBlock<'a>,
    pub show_new_line_chars: bool,
    pub secondary_color: Color,
    pub previous_lines: usize,
    pub next_lines: usize,
    pub middle_lines: usize,
    pub align_messages: bool,
}

impl<'a> CodeBlock<'a> {
    // CONSTRUCTORS -----------------------------------------------------------

    /// Creates a new [CodeBlock] with the given code.
    pub fn new(code: impl Into<Cow<'a, str>>) -> Self {
        Self {
            code: code.into(),
            sections: Vec::new(),
            title: TextBlock::new(),
            file_path: TextBlock::new(),
            final_message: TextBlock::new(),
            show_new_line_chars: false,
            secondary_color: Color::Magenta,
            previous_lines: 0,
            next_lines: 0,
            middle_lines: 0,
            align_messages: false,
        }
    }

    // GETTERS ----------------------------------------------------------------

    /// Returns the maximum line to print.
    pub(crate) fn max_line(&self) -> usize {
        self.sections
            .last()
            .map(|v| v.end.line.saturating_add(self.next_lines))
            .unwrap_or(1)
    }

    /// Returns the actual code the block will use.
    #[inline(always)]
    pub fn get_code(&self) -> &str {
        &self.code
    }

    /// Returns the sections.
    #[inline(always)]
    pub fn get_sections(&self) -> &[CodeSection<'a>] {
        &self.sections
    }

    // BUILDERS ---------------------------------------------------------------

    /// Sets the title.
    #[inline(always)]
    pub fn title(mut self, title: impl Into<TextBlock<'a>>) -> Self {
        self.title = title.into();
        self
    }

    /// Sets the file path.
    #[inline(always)]
    pub fn file_path(mut self, file_path: impl Into<TextBlock<'a>>) -> Self {
        self.file_path = file_path.into();
        self
    }

    /// Sets the final message.
    #[inline(always)]
    pub fn final_message(mut self, final_message: impl Into<TextBlock<'a>>) -> Self {
        self.final_message = final_message.into();
        self
    }

    /// Sets whether to show new line chars '\n' as '↩' or not.
    #[inline(always)]
    pub fn show_new_line_chars(mut self, show_new_line_chars: bool) -> Self {
        self.show_new_line_chars = show_new_line_chars;
        self
    }

    /// Sets the secondary color to highlight blocks.
    #[inline(always)]
    pub fn secondary_color(mut self, secondary_color: Color) -> Self {
        self.secondary_color = secondary_color;
        self
    }

    /// Sets the number of lines to show before all sections.
    #[inline(always)]
    pub fn previous_lines(mut self, previous_lines: usize) -> Self {
        self.previous_lines = previous_lines;
        self
    }

    /// Sets the number of lines to show after all sections.
    #[inline(always)]
    pub fn next_lines(mut self, next_lines: usize) -> Self {
        self.next_lines = next_lines;
        self
    }

    /// Sets the number of lines to show in the middle of two sections.
    #[inline(always)]
    pub fn middle_lines(mut self, middle_lines: usize) -> Self {
        self.middle_lines = middle_lines;
        self
    }

    /// Sets whether to align messages or not.
    #[inline(always)]
    pub fn align_messages(mut self, align_messages: bool) -> Self {
        self.align_messages = align_messages;
        self
    }

    // METHODS ----------------------------------------------------------------

    /// Highlights a cursor adding a colored dot at its position.
    ///
    /// # Panics
    /// This method panics if the section collides with another section or if the indexes are out of bounds.
    #[inline(always)]
    pub fn highlight_cursor(self, position: usize, color: Option<Color>) -> Self {
        self.highlight_section_inner(position..position, None, color)
    }

    /// Highlights a cursor adding a colored dot at its position and including a message.
    ///
    /// # Panics
    /// This method panics if the section collides with another section or if the indexes are out of bounds.
    #[inline(always)]
    pub fn highlight_cursor_message(
        self,
        position: usize,
        color: Option<Color>,
        message: impl Into<TextBlock<'a>>,
    ) -> Self {
        self.highlight_section_inner(position..position, Some(message.into()), color)
    }

    /// Highlights a code section coloring the text.
    ///
    /// # Panics
    /// This method panics if the section collides with another section or if the indexes are out of bounds.
    pub fn highlight_section(self, range: Range<usize>, color: Option<Color>) -> Self {
        assert!(
            range.start <= range.end,
            "The start index must be less or equal than the end index"
        );

        self.highlight_section_inner(range, None, color)
    }

    /// Highlights a code section coloring the text and including a message.
    ///
    /// # Panics
    /// This method panics if the section collides with another section or if the indexes are out of bounds.
    pub fn highlight_section_message(
        self,
        range: Range<usize>,
        color: Option<Color>,
        message: impl Into<TextBlock<'a>>,
    ) -> Self {
        assert!(
            range.start <= range.end,
            "The start index must be less or equal than the end index"
        );

        self.highlight_section_inner(range, Some(message.into()), color)
    }

    /// Highlights a section.
    ///
    /// # Panics
    /// This method panics if the section collides with another section or if the indexes are out of bounds.
    fn highlight_section_inner(
        mut self,
        range: Range<usize>,
        message: Option<TextBlock<'a>>,
        color: Option<Color>,
    ) -> Self {
        assert!(
            range.end <= self.code.len(),
            "The end index must be less or equal than the code length"
        );

        let index = self
            .sections
            .binary_search_by(|section| {
                // Special case to detect the addition of two equal cursors.
                assert!(
                    range.start != section.start.byte_offset
                        || range.end != section.end.byte_offset,
                    "Sections cannot collide with others"
                );

                if range.end <= section.start.byte_offset {
                    std::cmp::Ordering::Greater
                } else if section.end.byte_offset <= range.start {
                    std::cmp::Ordering::Less
                } else {
                    std::cmp::Ordering::Equal
                }
            })
            .expect_err("Sections cannot collide with others");

        let start = if let Some(section) = self.sections.get(index) {
            Cursor::from_byte_offset_and_cursor(&self.code, range.start, &section.start)
        } else {
            Cursor::from_byte_offset(&self.code, range.start)
        };

        if range.is_empty() {
            // Cursor
            self.sections.insert(
                index,
                CodeSection {
                    start,
                    end: start,
                    message: message.unwrap_or_default(),
                    color,
                    is_multiline_start: false,
                    is_multiline_end: false,
                },
            );
        } else {
            let end = Cursor::from_byte_offset_and_cursor(&self.code, range.end, &start);
            let is_multiline = start.line != end.line;

            if is_multiline {
                // When the end cursor is at the start of a line, it means the section finishes at
                // a new line character, therefore we need to add only one section.
                if end.column == 1 {
                    self.sections.insert(
                        index,
                        CodeSection {
                            start,
                            end: start
                                .next_start_line_cursor(&self.code)
                                .unwrap_or_else(|| start.end_line_cursor(&self.code)),
                            message: message.unwrap_or_default(),
                            color,
                            is_multiline_start: false,
                            is_multiline_end: false,
                        },
                    );
                } else {
                    self.sections.splice(
                        index..index,
                        [
                            CodeSection {
                                start,
                                end: start
                                    .next_start_line_cursor(&self.code)
                                    .unwrap_or_else(|| start.end_line_cursor(&self.code)),
                                message: TextBlock::new(),
                                color,
                                is_multiline_start: true,
                                is_multiline_end: false,
                            },
                            CodeSection {
                                start: end.start_line_cursor(&self.code),
                                end,
                                message: message.unwrap_or_default(),
                                color,
                                is_multiline_start: false,
                                is_multiline_end: true,
                            },
                        ],
                    );
                }
            } else {
                self.sections.insert(
                    index,
                    CodeSection {
                        start,
                        end,
                        message: message.unwrap_or_default(),
                        color,
                        is_multiline_start: false,
                        is_multiline_end: false,
                    },
                );
            }
        };
        self
    }

    pub(crate) fn print_with_options(&self, printer: &mut Printer<'a>, max_line_digits: usize) {
        // Title
        let code_indent = TextBlock::new_plain(build_space_string(max_line_digits + 1));

        if !self.title.is_empty() {
            printer.push_styled_text(
                format!(
                    "{:>width$} ",
                    printer.level.symbol(),
                    width = max_line_digits
                ),
                Style::new().bold().fg(printer.level.color()),
            );

            let mut title_printer = printer.derive();

            self.title.print(&mut title_printer);
            title_printer.indent(&code_indent.sections, false);
            printer.append(title_printer);
        }

        // First line.
        {
            if self.title.is_empty() {
                printer.push_styled_text(
                    format!(
                        "{:>width$} ",
                        printer.level.symbol(),
                        width = max_line_digits
                    ),
                    Style::new().bold().fg(printer.level.color()),
                );
            } else {
                printer.push_plain_text("\n");
                code_indent.print(printer);
            }

            if self.file_path.is_empty() {
                printer.push_styled_text(
                    Cow::Borrowed(concatcp!(BOTTOM_RIGHT_CORNER, HORIZONTAL_BAR)),
                    Style::new().bold(),
                );
            } else {
                printer.push_styled_text(
                    Cow::Borrowed(concatcp!(BOTTOM_RIGHT_CORNER, HORIZONTAL_BAR, '[')),
                    Style::new().bold(),
                );
                self.file_path.single_lined().print(printer);
                printer.push_styled_text(Cow::Borrowed(concatcp!(']')), Style::new().bold());
            }
        }

        // Sections.
        if !self.sections.is_empty() {
            // Show previous lines.
            if self.previous_lines > 0 {
                let first_section_start_cursor = self.sections.first().unwrap().start;
                let start_line = first_section_start_cursor
                    .line
                    .saturating_sub(self.previous_lines)
                    .max(1);
                let mut next_line_start_cursor = first_section_start_cursor
                    .find_line_start(&self.code, start_line)
                    .unwrap();

                for line in start_line..first_section_start_cursor.line {
                    printer.push_styled_text(
                        format!("\n{:>width$} ", line, width = max_line_digits),
                        Style::new().bold().fg(Color::BrightBlack),
                    );
                    printer.push_styled_text(
                        Cow::Borrowed(concatcp!(VERTICAL_BAR, "    ")),
                        Style::new().bold(),
                    );
                    printer.push_plain_text({
                        if self.show_new_line_chars {
                            Cow::Owned(format!(
                                "{}{NEW_LINE_LEFT}",
                                next_line_start_cursor.slice_to_line_end(&self.code)
                            ))
                        } else {
                            match &self.code {
                                Cow::Borrowed(v) => {
                                    Cow::Borrowed(next_line_start_cursor.slice_to_line_end(v))
                                }
                                Cow::Owned(v) => Cow::Owned(
                                    next_line_start_cursor.slice_to_line_end(v).to_string(),
                                ),
                            }
                        }
                    });

                    next_line_start_cursor = next_line_start_cursor
                        .next_start_line_cursor(&self.code)
                        .unwrap();
                }
            }

            // Show highlighted sections.
            {
                let mut last_line = self.sections.first().unwrap().start.line;
                let mut sections: &[CodeSection] = &self.sections;
                let mut current_line_sections = Vec::new();

                while !sections.is_empty() {
                    group_sections_in_same_line(&mut sections, &mut current_line_sections);

                    let line_start_cursor = current_line_sections
                        .first()
                        .unwrap()
                        .start
                        .start_line_cursor(&self.code);

                    // Print middle lines.
                    let middle_lines = (line_start_cursor.line - last_line).saturating_sub(1);
                    if middle_lines >= 1 {
                        if self.middle_lines >= middle_lines {
                            // Print lines.
                            let mut next_line_start_cursor = line_start_cursor
                                .find_line_start(&self.code, last_line)
                                .unwrap();

                            for line in (last_line + 1)..line_start_cursor.line {
                                printer.push_styled_text(
                                    format!("\n{:>width$} ", line, width = max_line_digits),
                                    Style::new().bold().fg(Color::BrightBlack),
                                );
                                printer.push_styled_text(
                                    Cow::Borrowed(concatcp!(VERTICAL_BAR, "    ")),
                                    Style::new().bold(),
                                );
                                printer.push_plain_text({
                                    if self.show_new_line_chars {
                                        Cow::Owned(format!(
                                            "{}{NEW_LINE_LEFT}",
                                            next_line_start_cursor.slice_to_line_end(&self.code)
                                        ))
                                    } else {
                                        match &self.code {
                                            Cow::Borrowed(v) => Cow::Borrowed(
                                                next_line_start_cursor.slice_to_line_end(v),
                                            ),
                                            Cow::Owned(v) => Cow::Owned(
                                                next_line_start_cursor
                                                    .slice_to_line_end(v)
                                                    .to_string(),
                                            ),
                                        }
                                    }
                                });

                                next_line_start_cursor = next_line_start_cursor
                                    .next_start_line_cursor(&self.code)
                                    .unwrap();
                            }
                        } else {
                            // Skip lines.
                            printer.push_styled_text(
                                build_whitespace_string(1, max_line_digits),
                                Style::new(),
                            );
                            printer.push_styled_text(Cow::Borrowed("···    "), Style::new().bold());
                        }
                    }
                    last_line = line_start_cursor.line;

                    // Print code line.
                    printer.push_styled_text(
                        format!(
                            "\n{:>width$} ",
                            line_start_cursor.line,
                            width = max_line_digits
                        ),
                        Style::new().bold().fg(Color::BrightBlack),
                    );
                    printer.push_styled_text(
                        Cow::Borrowed(concatcp!(VERTICAL_BAR, "    ")),
                        Style::new().bold(),
                    );

                    let mut next_color = self.secondary_color;
                    let mut previous_cursor = line_start_cursor;

                    for section in &current_line_sections {
                        // Print previous content.
                        printer.push_plain_text(match &self.code {
                            Cow::Borrowed(v) => {
                                Cow::Borrowed(previous_cursor.slice(v, &section.start))
                            }
                            Cow::Owned(v) => {
                                Cow::Owned(previous_cursor.slice(v, &section.start).to_string())
                            }
                        });

                        next_color =
                            section
                                .color
                                .unwrap_or(if next_color == self.secondary_color {
                                    printer.level.color()
                                } else {
                                    self.secondary_color
                                });

                        section.print_content(printer, self, next_color);
                        previous_cursor = section.end;
                    }

                    if previous_cursor.line == line_start_cursor.line {
                        let line_end_cursor = previous_cursor.end_line_cursor(&self.code);
                        printer.push_plain_text(match &self.code {
                            Cow::Borrowed(v) => {
                                Cow::Borrowed(previous_cursor.slice(v, &line_end_cursor))
                            }
                            Cow::Owned(v) => {
                                Cow::Owned(previous_cursor.slice(v, &line_end_cursor).to_string())
                            }
                        });

                        if self.show_new_line_chars {
                            printer.push_plain_text(Cow::Borrowed(concatcp!(NEW_LINE_LEFT)));
                        }
                    }

                    // Print underline.
                    {
                        let mut prefix = TextBlock::new()
                            .add_plain_text(build_space_string(max_line_digits + 1))
                            .add_styled_text(
                                Cow::Borrowed(concatcp!(VERTICAL_BAR)),
                                Style::new().bold(),
                            );

                        printer.push_plain_text(build_whitespace_string(1, max_line_digits + 1));
                        printer.push_styled_text(
                            if current_line_sections.first().unwrap().is_multiline_end {
                                Cow::Borrowed(concatcp!(VERTICAL_BAR, "  "))
                            } else {
                                Cow::Borrowed(concatcp!(VERTICAL_BAR, "    "))
                            },
                            Style::new().bold(),
                        );

                        next_color = self.secondary_color;
                        previous_cursor = line_start_cursor;

                        let mut space_count = 4;

                        for (section_index, section) in current_line_sections.iter().enumerate() {
                            // Print previous content.
                            printer.push_plain_text(build_space_string(
                                section.start.char_offset - previous_cursor.char_offset,
                            ));
                            space_count += section.start.char_offset - previous_cursor.char_offset;

                            if !section.message.is_empty() {
                                prefix = prefix.add_plain_text(build_space_string(space_count));
                                space_count = 0;
                            }

                            next_color =
                                section
                                    .color
                                    .unwrap_or(if next_color == self.secondary_color {
                                        printer.level.color()
                                    } else {
                                        self.secondary_color
                                    });

                            if !section.message.is_empty()
                                && section_index == current_line_sections.len() - 1
                            {
                                section.print_underline_with_message(printer, next_color);
                                prefix = prefix
                                    .add_plain_text(build_space_string(section.char_len() + 3));

                                let mut message_printer = printer.derive();
                                section.message.print(&mut message_printer);
                                message_printer.indent(&prefix.sections, false);
                                printer.append(message_printer);
                            } else {
                                if section.message.is_empty() {
                                    space_count += section.char_len();
                                } else {
                                    prefix = prefix.add_styled_text(
                                        Cow::Borrowed(concatcp!(VERTICAL_BAR)),
                                        Style::new().bold().fg(next_color),
                                    );

                                    space_count += section.char_len() - 1;
                                }

                                section.print_underline(printer, next_color);
                            }
                            previous_cursor = section.end;
                        }
                    }

                    // Print message lines.
                    let alignment = if self.align_messages {
                        current_line_sections
                            .iter()
                            .rev()
                            .find(|v| !v.message.is_empty())
                            .map(|v| v.start.char_offset + 1)
                    } else {
                        None
                    };

                    let current_line_sections_until_last_message = if let Some((index, _)) =
                        current_line_sections
                            .iter()
                            .enumerate()
                            .rev()
                            .find(|(_, v)| !v.message.is_empty())
                    {
                        &current_line_sections[..index + 1]
                    } else {
                        &[]
                    };

                    let number_of_messages = current_line_sections
                        .iter()
                        .filter(|v| !v.message.is_empty())
                        .count()
                        .saturating_sub(
                            !current_line_sections.last().unwrap().message.is_empty() as usize
                        );

                    for row in 0..number_of_messages {
                        printer.push_plain_text(Cow::Borrowed("\n"));
                        let mut prefix = TextBlock::new()
                            .add_plain_text(build_space_string(max_line_digits + 1))
                            .add_styled_text(
                                Cow::Borrowed(concatcp!(VERTICAL_BAR)),
                                Style::new().bold(),
                            );

                        next_color = self.secondary_color;
                        previous_cursor = line_start_cursor;

                        let mut space_count = 4;
                        let mut current_message_index = number_of_messages;

                        for (section_index, section) in current_line_sections.iter().enumerate() {
                            // Add previous content to the space count.
                            space_count += section.start.char_offset - previous_cursor.char_offset;

                            if !section.message.is_empty() {
                                prefix = prefix.add_plain_text(build_space_string(space_count));
                                space_count = 0;
                            }

                            next_color =
                                section
                                    .color
                                    .unwrap_or(if next_color == self.secondary_color {
                                        printer.level.color()
                                    } else {
                                        self.secondary_color
                                    });

                            if section.message.is_empty() {
                                space_count += section.char_len();
                            } else {
                                if row + 1 == current_message_index {
                                    prefix.print(printer);

                                    if let Some(alignment) = alignment {
                                        let forward_cursors =
                                            current_line_sections_until_last_message
                                                .iter()
                                                .skip(section_index)
                                                .filter(|v| v.is_cursor())
                                                .count();

                                        printer.push_styled_text(
                                            Cow::Owned(format!(
                                                "{TOP_RIGHT_CORNER}{} ",
                                                concatcp!(HORIZONTAL_BAR).repeat(
                                                    (alignment - section.start.char_offset)
                                                        + forward_cursors
                                                        + 1
                                                )
                                            )),
                                            Style::new().bold().fg(next_color),
                                        );

                                        prefix = prefix.add_plain_text(build_space_string(
                                            (alignment - section.start.char_offset)
                                                + forward_cursors
                                                + 3,
                                        ));
                                    } else {
                                        printer.push_styled_text(
                                            Cow::Borrowed(concatcp!(
                                                TOP_RIGHT_CORNER,
                                                HORIZONTAL_BAR,
                                                HORIZONTAL_BAR,
                                                ' '
                                            )),
                                            Style::new().bold().fg(next_color),
                                        );

                                        prefix = prefix.add_plain_text("    ");
                                    }

                                    let mut message_printer = printer.derive();
                                    section.message.print(&mut message_printer);
                                    message_printer.indent(&prefix.sections, false);
                                    printer.append(message_printer);
                                    break;
                                }

                                prefix = prefix.add_styled_text(
                                    Cow::Borrowed(concatcp!(VERTICAL_BAR)),
                                    Style::new().bold().fg(next_color),
                                );

                                space_count += section.char_len() - 1;
                                current_message_index -= 1;
                            }

                            previous_cursor = section.end;
                        }
                    }
                }
            }

            // Show next lines.
            if self.next_lines > 0 {
                let mut last_section_start_cursor = self.sections.last().unwrap().start;
                let last_line = last_section_start_cursor
                    .line
                    .saturating_add(self.next_lines);

                for line in last_section_start_cursor.line..last_line {
                    let next_line_start_cursor =
                        match last_section_start_cursor.next_start_line_cursor(&self.code) {
                            Some(v) => v,
                            None => break,
                        };

                    printer.push_styled_text(
                        format!("\n{:>width$} ", line + 1, width = max_line_digits),
                        Style::new().bold().fg(Color::BrightBlack),
                    );
                    printer.push_styled_text(
                        Cow::Borrowed(concatcp!(VERTICAL_BAR, "    ")),
                        Style::new().bold(),
                    );
                    printer.push_plain_text({
                        match &self.code {
                            Cow::Borrowed(v) => {
                                if self.show_new_line_chars {
                                    let slice = next_line_start_cursor.slice_to_line_end(v);

                                    if slice.len() + next_line_start_cursor.byte_offset
                                        == self.code.len()
                                    {
                                        Cow::Borrowed(slice)
                                    } else {
                                        Cow::Owned(format!("{}{NEW_LINE_LEFT}", slice))
                                    }
                                } else {
                                    Cow::Borrowed(next_line_start_cursor.slice_to_line_end(v))
                                }
                            }
                            Cow::Owned(v) => {
                                if self.show_new_line_chars {
                                    let slice = next_line_start_cursor.slice_to_line_end(v);

                                    if slice.len() + next_line_start_cursor.byte_offset
                                        == self.code.len()
                                    {
                                        Cow::Owned(slice.to_string())
                                    } else {
                                        Cow::Owned(format!("{}{NEW_LINE_LEFT}", slice))
                                    }
                                } else {
                                    Cow::Owned(
                                        next_line_start_cursor.slice_to_line_end(v).to_string(),
                                    )
                                }
                            }
                        }
                    });

                    last_section_start_cursor = next_line_start_cursor;
                }
            }
        }

        // Final line + message.
        {
            let mut final_line_printer = printer.derive();
            if self.final_message.is_empty() {
                final_line_printer.push_styled_text(
                    Cow::Borrowed(concatcp!(TOP_RIGHT_CORNER, HORIZONTAL_BAR)),
                    Style::new().bold(),
                );
            } else {
                final_line_printer.push_styled_text(
                    Cow::Borrowed(concatcp!(TOP_RIGHT_CORNER, HORIZONTAL_BAR, ' ')),
                    Style::new().bold(),
                );

                let message_indent = TextBlock::new_plain(Cow::Borrowed("   "));
                let mut message_printer = final_line_printer.derive();

                self.final_message.print(&mut message_printer);
                message_printer.indent(&message_indent.sections, false);
                final_line_printer.append(message_printer);
            }

            final_line_printer.indent(&code_indent.sections, true);
            printer.append_lines(final_line_printer);
        }
    }

    /// Makes this type owned, i.e. changing the lifetime to `'static`.
    pub fn make_owned(self) -> CodeBlock<'static> {
        CodeBlock {
            code: Cow::Owned(self.code.to_string()),
            sections: self.sections.into_iter().map(|v| v.make_owned()).collect(),
            title: self.title.make_owned(),
            file_path: self.file_path.make_owned(),
            final_message: self.final_message.make_owned(),
            show_new_line_chars: self.show_new_line_chars,
            secondary_color: self.secondary_color,
            previous_lines: self.previous_lines,
            next_lines: self.next_lines,
            middle_lines: self.middle_lines,
            align_messages: self.align_messages,
        }
    }
}

impl<'a> Printable<'a> for CodeBlock<'a> {
    fn print<'s>(&'s self, printer: &mut Printer<'a>)
    where
        'a: 's,
    {
        let max_line_digits = format!("{}", self.max_line()).len();

        self.print_with_options(printer, max_line_digits)
    }
}

impl<'a> Display for CodeBlock<'a> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut printer = Printer::new(LogLevel::trace(), PrinterFormat::Plain);
        self.print(&mut printer);
        printer.fmt(f, PrinterFormat::Plain)
    }
}

// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------

// This method will panic if sections is empty.
fn group_sections_in_same_line<'s, 'a>(
    sections: &mut &'s [CodeSection<'a>],
    sections_in_same_line: &mut Vec<&'s CodeSection<'a>>,
) {
    sections_in_same_line.clear();

    let line = sections.first().unwrap().start.line;
    sections_in_same_line.extend(sections.iter().take_while(|v| v.start.line == line));
    *sections = &sections[sections_in_same_line.len()..];
}

// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------

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

    #[test]
    fn test_plain() {
        let code =
            "Line 1\nLine 2\nLine 3\nLine 4\nLine 5\nLine 6\nLine 7\nLine 8\nLine 9\nLine 10";

        // Empty
        let log = CodeBlock::new(code);
        let text = log.print_to_string(LogLevel::trace(), PrinterFormat::Plain);

        assert_eq!(text, "• ╭─\n  ╰─");

        // Title
        let log = CodeBlock::new(code).title("This is\na title");
        let text = log.print_to_string(LogLevel::debug(), PrinterFormat::Plain);

        assert_eq!(text, "• This is\n  a title\n  ╭─\n  ╰─");

        // File path.
        let log = CodeBlock::new(code).file_path("This is\na file path");
        let text = log.print_to_string(LogLevel::info(), PrinterFormat::Plain);

        assert_eq!(text, "• ╭─[This is a file path]\n  ╰─");

        // Final message.
        let log = CodeBlock::new(code).final_message("This is\na message");
        let text = log.print_to_string(LogLevel::warn(), PrinterFormat::Plain);

        assert_eq!(text, "⚠ ╭─\n  ╰─ This is\n     a message");

        // Sections
        let log = CodeBlock::new(code)
            // Line 3
            .highlight_section(14..15, None)
            .highlight_cursor(15, None)
            .highlight_section(15..16, None)
            .highlight_cursor(16, None)
            .highlight_section(16..20, None)
            .highlight_cursor(20, None)
            .highlight_section(20..21, None)
            // Line 6
            .highlight_section(36..41, None)
            // Line 8
            .highlight_section(52..58, None)
            .highlight_cursor(58, None)
            .highlight_cursor(59, None);
        let text = log.print_to_string(LogLevel::error(), PrinterFormat::Plain);

        assert_eq!(text, "× ╭─\n3 │    L·i·ne 3·\n  │    ^^^^╰──╯^^\n ···    \n6 │    Line 6\n  │     ╰───╯\n ···    \n8 │    Line 8\n  │       ╰────▶\n9 │    Li·n·e 9\n  │  ▶──╯^ ^\n  ╰─");

        // Sections + show_new_line_chars
        let log = CodeBlock::new(code)
            // Line 3
            .highlight_section(14..15, None)
            .highlight_cursor(15, None)
            .highlight_section(15..16, None)
            .highlight_cursor(16, None)
            .highlight_section(16..20, None)
            .highlight_cursor(20, None)
            .highlight_section(20..21, None)
            // Line 6
            .highlight_section(36..41, None)
            // Line 8
            .highlight_section(52..58, None)
            .highlight_cursor(58, None)
            .highlight_cursor(59, None)
            .show_new_line_chars(true);
        let text = log.print_to_string(LogLevel::error(), PrinterFormat::Plain);

        assert_eq!(text, "× ╭─\n3 │    L·i·ne 3·↩\n  │    ^^^^╰──╯^^\n ···    \n6 │    Line 6↩\n  │     ╰───╯\n ···    \n8 │    Line 8↩\n  │       ╰────▶\n9 │    Li·n·e 9↩\n  │  ▶──╯^ ^\n  ╰─");

        // Sections + secondary_color
        let log = CodeBlock::new(code)
            // Line 3
            .highlight_section(14..15, None)
            .highlight_cursor(15, None)
            .highlight_section(15..16, None)
            .highlight_cursor(16, None)
            .highlight_section(16..20, None)
            .highlight_cursor(20, None)
            .highlight_section(20..21, None)
            // Line 6
            .highlight_section(36..41, None)
            // Line 8
            .highlight_section(52..58, None)
            .highlight_cursor(58, None)
            .highlight_cursor(59, None)
            .secondary_color(Color::BrightYellow);
        let text = log.print_to_string(LogLevel::error(), PrinterFormat::Plain);

        assert_eq!(text, "× ╭─\n3 │    L·i·ne 3·\n  │    ^^^^╰──╯^^\n ···    \n6 │    Line 6\n  │     ╰───╯\n ···    \n8 │    Line 8\n  │       ╰────▶\n9 │    Li·n·e 9\n  │  ▶──╯^ ^\n  ╰─");

        // Sections + previous_lines
        let log = CodeBlock::new(code)
            // Line 3
            .highlight_section(14..15, None)
            .highlight_cursor(15, None)
            .highlight_section(15..16, None)
            .highlight_cursor(16, None)
            .highlight_section(16..20, None)
            .highlight_cursor(20, None)
            .highlight_section(20..21, None)
            // Line 6
            .highlight_section(36..41, None)
            // Line 8
            .highlight_section(52..58, None)
            .highlight_cursor(58, None)
            .highlight_cursor(59, None)
            .previous_lines(1);
        let text = log.print_to_string(LogLevel::error(), PrinterFormat::Plain);

        assert_eq!(text, "× ╭─\n2 │    Line 2\n3 │    L·i·ne 3·\n  │    ^^^^╰──╯^^\n ···    \n6 │    Line 6\n  │     ╰───╯\n ···    \n8 │    Line 8\n  │       ╰────▶\n9 │    Li·n·e 9\n  │  ▶──╯^ ^\n  ╰─");

        // Sections + next_lines
        let log = CodeBlock::new(code)
            // Line 3
            .highlight_section(14..15, None)
            .highlight_cursor(15, None)
            .highlight_section(15..16, None)
            .highlight_cursor(16, None)
            .highlight_section(16..20, None)
            .highlight_cursor(20, None)
            .highlight_section(20..21, None)
            // Line 6
            .highlight_section(36..41, None)
            // Line 8
            .highlight_section(52..58, None)
            .highlight_cursor(58, None)
            .highlight_cursor(59, None)
            .next_lines(1);
        let text = log.print_to_string(LogLevel::error(), PrinterFormat::Plain);

        assert_eq!(text, " × ╭─\n 3 │    L·i·ne 3·\n   │    ^^^^╰──╯^^\n  ···    \n 6 │    Line 6\n   │     ╰───╯\n  ···    \n 8 │    Line 8\n   │       ╰────▶\n 9 │    Li·n·e 9\n   │  ▶──╯^ ^\n10 │    Line 10\n   ╰─");

        // Sections + middle_lines
        let log = CodeBlock::new(code)
            // Line 3
            .highlight_section(14..15, None)
            .highlight_cursor(15, None)
            .highlight_section(15..16, None)
            .highlight_cursor(16, None)
            .highlight_section(16..20, None)
            .highlight_cursor(20, None)
            .highlight_section(20..21, None)
            // Line 6
            .highlight_section(36..41, None)
            // Line 8
            .highlight_section(52..58, None)
            .highlight_cursor(58, None)
            .highlight_cursor(59, None)
            .middle_lines(1);
        let text = log.print_to_string(LogLevel::error(), PrinterFormat::Plain);

        assert_eq!(text, "× ╭─\n3 │    L·i·ne 3·\n  │    ^^^^╰──╯^^\n ···    \n6 │    Line 6\n  │     ╰───╯\n7 │    Line 6\n8 │    Line 8\n  │       ╰────▶\n9 │    Li·n·e 9\n  │  ▶──╯^ ^\n  ╰─");

        // Sections with messages.
        let log = CodeBlock::new(code)
            // Line 3
            .highlight_section_message(14..15, None, "This is\na message")
            .highlight_cursor_message(15, None, "This is\na message")
            .highlight_section_message(15..16, None, "This is\na message")
            .highlight_cursor_message(16, None, "This is\na message")
            .highlight_section_message(16..20, None, "This is\na message")
            .highlight_cursor_message(20, None, "This is\na message")
            .highlight_section_message(20..21, None, "This is\na message")
            // Line 6
            .highlight_section_message(36..41, None, "This is\na message")
            // Line 8
            .highlight_section_message(52..58, None, "This is\na message")
            .highlight_cursor(58, None)
            .highlight_cursor(59, None);
        let text = log.print_to_string(LogLevel::error(), PrinterFormat::Plain);

        assert_eq!(text, "× ╭─\n3 │    L·i·ne 3·\n  │    ││││├──╯│╰── This is\n  │    │││││   │    a message\n  │    │││││   ╰── This is\n  │    │││││       a message\n  │    ││││╰── This is\n  │    ││││    a message\n  │    │││╰── This is\n  │    │││    a message\n  │    ││╰── This is\n  │    ││    a message\n  │    │╰── This is\n  │    │    a message\n  │    ╰── This is\n  │        a message\n ···    \n6 │    Line 6\n  │     ╰───┴── This is\n  │             a message\n ···    \n8 │    Line 8\n  │       ╰────▶\n9 │    Li·n·e 9\n  │  ▶─┬╯^ ^\n  │    ╰── This is\n  │        a message\n  ╰─");

        // Sections with messages + align_messages.
        let log = CodeBlock::new(code)
            // Line 3
            .highlight_section_message(14..15, None, "This is\na message")
            .highlight_cursor_message(15, None, "This is\na message")
            .highlight_section_message(15..16, None, "This is\na message")
            .highlight_cursor_message(16, None, "This is\na message")
            .highlight_section_message(16..20, None, "This is\na message")
            .highlight_cursor_message(20, None, "This is\na message")
            .highlight_section_message(20..21, None, "This is\na message")
            // Line 6
            .highlight_section_message(36..41, None, "This is\na message")
            // Line 8
            .highlight_section_message(52..58, None, "This is\na message")
            .highlight_cursor(58, None)
            .highlight_cursor(59, None)
            .align_messages(true);
        let text = log.print_to_string(LogLevel::error(), PrinterFormat::Plain);

        assert_eq!(text, "× ╭─\n3 │    L·i·ne 3·\n  │    ││││├──╯│╰── This is\n  │    │││││   │    a message\n  │    │││││   ╰─── This is\n  │    │││││        a message\n  │    ││││╰─────── This is\n  │    ││││         a message\n  │    │││╰──────── This is\n  │    │││          a message\n  │    ││╰───────── This is\n  │    ││           a message\n  │    │╰────────── This is\n  │    │            a message\n  │    ╰─────────── This is\n  │                 a message\n ···    \n6 │    Line 6\n  │     ╰───┴── This is\n  │             a message\n ···    \n8 │    Line 8\n  │       ╰────▶\n9 │    Li·n·e 9\n  │  ▶─┬╯^ ^\n  │    ╰── This is\n  │        a message\n  ╰─");

        // All
        let log = CodeBlock::new(code)
            .title("This is\na title")
            .file_path("This is\na file path")
            .final_message("This is\na message")
            // Line 3
            .highlight_section_message(14..15, None, "This is\na message")
            .highlight_cursor_message(15, None, "This is\na message")
            .highlight_section_message(15..16, None, "This is\na message")
            .highlight_cursor_message(16, None, "This is\na message")
            .highlight_section_message(16..20, None, "This is\na message")
            .highlight_cursor_message(20, None, "This is\na message")
            .highlight_section_message(20..21, None, "This is\na message")
            // Line 6
            .highlight_section_message(36..41, None, "This is\na message")
            // Line 8
            .highlight_section_message(52..58, None, "This is\na message")
            .highlight_cursor(58, None)
            .highlight_cursor(59, None)
            .show_new_line_chars(true)
            .secondary_color(Color::BrightYellow)
            .previous_lines(1)
            .next_lines(1)
            .middle_lines(1)
            .align_messages(true);
        let text = log.print_to_string(LogLevel::error(), PrinterFormat::Plain);

        assert_eq!(text, " × This is\n   a title\n   ╭─[This is a file path]\n 2 │    Line 2↩\n 3 │    L·i·ne 3·↩\n   │    ││││├──╯│╰── This is\n   │    │││││   │    a message\n   │    │││││   ╰─── This is\n   │    │││││        a message\n   │    ││││╰─────── This is\n   │    ││││         a message\n   │    │││╰──────── This is\n   │    │││          a message\n   │    ││╰───────── This is\n   │    ││           a message\n   │    │╰────────── This is\n   │    │            a message\n   │    ╰─────────── This is\n   │                 a message\n  ···    \n 6 │    Line 6↩\n   │     ╰───┴── This is\n   │             a message\n 7 │    Line 6↩\n 8 │    Line 8↩\n   │       ╰────▶\n 9 │    Li·n·e 9↩\n   │  ▶─┬╯^ ^\n   │    ╰── This is\n   │        a message\n10 │    Line 10\n   ╰─ This is\n      a message");
    }

    #[test]
    fn test_styled() {
        let code =
            "Line 1\nLine 2\nLine 3\nLine 4\nLine 5\nLine 6\nLine 7\nLine 8\nLine 9\nLine 10";

        // Empty
        let log = CodeBlock::new(code);
        let text = log.print_to_string(LogLevel::trace(), PrinterFormat::Styled);

        println!("{}", text);
        assert_eq!(
            text,
            "\u{1b}[1;38;5;102m• \u{1b}[0m\u{1b}[1m╭─\n  ╰─\u{1b}[0m"
        );

        // Title
        let log = CodeBlock::new(code).title("This is\na title");
        let text = log.print_to_string(LogLevel::debug(), PrinterFormat::Styled);

        println!("{}", text);
        assert_eq!(
            text,
            "\u{1b}[1;32m• \u{1b}[0mThis is\n  a title\n  \u{1b}[1m╭─\n  ╰─\u{1b}[0m"
        );

        // File path.
        let log = CodeBlock::new(code).file_path("This is\na file path");
        let text = log.print_to_string(LogLevel::info(), PrinterFormat::Styled);

        println!("{}", text);
        assert_eq!(text, "\u{1b}[1;34m• \u{1b}[0m\u{1b}[1m╭─[\u{1b}[0mThis is a file path\u{1b}[1m]\n  ╰─\u{1b}[0m");

        // Final message.
        let log = CodeBlock::new(code).final_message("This is\na message");
        let text = log.print_to_string(LogLevel::warn(), PrinterFormat::Styled);

        println!("{}", text);
        assert_eq!(
            text,
            "\u{1b}[1;33m⚠ \u{1b}[0m\u{1b}[1m╭─\n  ╰─ \u{1b}[0mThis is\n     a message"
        );

        // Sections
        let log = CodeBlock::new(code)
            // Line 3
            .highlight_section(14..15, None)
            .highlight_cursor(15, None)
            .highlight_section(15..16, None)
            .highlight_cursor(16, None)
            .highlight_section(16..20, None)
            .highlight_cursor(20, None)
            .highlight_section(20..21, None)
            // Line 6
            .highlight_section(36..41, None)
            // Line 8
            .highlight_section(52..58, None)
            .highlight_cursor(58, None)
            .highlight_cursor(59, None);
        let text = log.print_to_string(LogLevel::error(), PrinterFormat::Styled);

        println!("{}", text);
        assert_eq!(text, "\u{1b}[1;31m× \u{1b}[0m\u{1b}[1m╭─\n\u{1b}[0m\u{1b}[1;90m3 \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31mL\u{1b}[0m\u{1b}[1;35m·\u{1b}[0m\u{1b}[1;31mi\u{1b}[0m\u{1b}[1;35m·\u{1b}[0m\u{1b}[1;31mne 3\u{1b}[0m\u{1b}[1;35m·\n  \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m^\u{1b}[0m\u{1b}[1;35m^\u{1b}[0m\u{1b}[1;31m^\u{1b}[0m\u{1b}[1;35m^\u{1b}[0m\u{1b}[1;31m╰──╯\u{1b}[0m\u{1b}[1;35m^\u{1b}[0m\u{1b}[1;31m^\n \u{1b}[0m\u{1b}[1m···    \n\u{1b}[0m\u{1b}[1;90m6 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mL\u{1b}[1;31mine 6\n  \u{1b}[0m\u{1b}[1m│     \u{1b}[0m\u{1b}[1;31m╰───╯\n \u{1b}[0m\u{1b}[1m···    \n\u{1b}[0m\u{1b}[1;90m8 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mLin\u{1b}[1;31me 8\n  \u{1b}[0m\u{1b}[1m│       \u{1b}[0m\u{1b}[1;31m╰────▶\n\u{1b}[0m\u{1b}[1;90m9 \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31mLi\u{1b}[0m\u{1b}[1;35m·\u{1b}[0mn\u{1b}[1;31m·\u{1b}[0me 9\n  \u{1b}[1m│  \u{1b}[0m\u{1b}[1;31m▶──╯\u{1b}[0m\u{1b}[1;35m^ \u{1b}[0m\u{1b}[1;31m^\n  \u{1b}[0m\u{1b}[1m╰─\u{1b}[0m");

        // Sections + show_new_line_chars
        let log = CodeBlock::new(code)
            // Line 3
            .highlight_section(14..15, None)
            .highlight_cursor(15, None)
            .highlight_section(15..16, None)
            .highlight_cursor(16, None)
            .highlight_section(16..20, None)
            .highlight_cursor(20, None)
            .highlight_section(20..21, None)
            // Line 6
            .highlight_section(36..41, None)
            // Line 8
            .highlight_section(52..58, None)
            .highlight_cursor(58, None)
            .highlight_cursor(59, None)
            .show_new_line_chars(true);
        let text = log.print_to_string(LogLevel::error(), PrinterFormat::Styled);

        println!("{}", text);
        assert_eq!(text, "\u{1b}[1;31m× \u{1b}[0m\u{1b}[1m╭─\n\u{1b}[0m\u{1b}[1;90m3 \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31mL\u{1b}[0m\u{1b}[1;35m·\u{1b}[0m\u{1b}[1;31mi\u{1b}[0m\u{1b}[1;35m·\u{1b}[0m\u{1b}[1;31mne 3\u{1b}[0m\u{1b}[1;35m·\u{1b}[0m\u{1b}[1;31m↩\n  \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m^\u{1b}[0m\u{1b}[1;35m^\u{1b}[0m\u{1b}[1;31m^\u{1b}[0m\u{1b}[1;35m^\u{1b}[0m\u{1b}[1;31m╰──╯\u{1b}[0m\u{1b}[1;35m^\u{1b}[0m\u{1b}[1;31m^\n \u{1b}[0m\u{1b}[1m···    \n\u{1b}[0m\u{1b}[1;90m6 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mL\u{1b}[1;31mine 6\u{1b}[0m↩\n  \u{1b}[1m│     \u{1b}[0m\u{1b}[1;31m╰───╯\n \u{1b}[0m\u{1b}[1m···    \n\u{1b}[0m\u{1b}[1;90m8 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mLin\u{1b}[1;31me 8↩\n  \u{1b}[0m\u{1b}[1m│       \u{1b}[0m\u{1b}[1;31m╰────▶\n\u{1b}[0m\u{1b}[1;90m9 \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31mLi\u{1b}[0m\u{1b}[1;35m·\u{1b}[0mn\u{1b}[1;31m·\u{1b}[0me 9↩\n  \u{1b}[1m│  \u{1b}[0m\u{1b}[1;31m▶──╯\u{1b}[0m\u{1b}[1;35m^ \u{1b}[0m\u{1b}[1;31m^\n  \u{1b}[0m\u{1b}[1m╰─\u{1b}[0m");

        // Sections + secondary_color
        let log = CodeBlock::new(code)
            // Line 3
            .highlight_section(14..15, None)
            .highlight_cursor(15, None)
            .highlight_section(15..16, None)
            .highlight_cursor(16, None)
            .highlight_section(16..20, None)
            .highlight_cursor(20, None)
            .highlight_section(20..21, None)
            // Line 6
            .highlight_section(36..41, None)
            // Line 8
            .highlight_section(52..58, None)
            .highlight_cursor(58, None)
            .highlight_cursor(59, None)
            .secondary_color(Color::BrightYellow);
        let text = log.print_to_string(LogLevel::error(), PrinterFormat::Styled);

        println!("{}", text);
        assert_eq!(text, "\u{1b}[1;31m× \u{1b}[0m\u{1b}[1m╭─\n\u{1b}[0m\u{1b}[1;90m3 \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31mL\u{1b}[0m\u{1b}[1;93m·\u{1b}[0m\u{1b}[1;31mi\u{1b}[0m\u{1b}[1;93m·\u{1b}[0m\u{1b}[1;31mne 3\u{1b}[0m\u{1b}[1;93m·\n  \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m^\u{1b}[0m\u{1b}[1;93m^\u{1b}[0m\u{1b}[1;31m^\u{1b}[0m\u{1b}[1;93m^\u{1b}[0m\u{1b}[1;31m╰──╯\u{1b}[0m\u{1b}[1;93m^\u{1b}[0m\u{1b}[1;31m^\n \u{1b}[0m\u{1b}[1m···    \n\u{1b}[0m\u{1b}[1;90m6 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mL\u{1b}[1;31mine 6\n  \u{1b}[0m\u{1b}[1m│     \u{1b}[0m\u{1b}[1;31m╰───╯\n \u{1b}[0m\u{1b}[1m···    \n\u{1b}[0m\u{1b}[1;90m8 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mLin\u{1b}[1;31me 8\n  \u{1b}[0m\u{1b}[1m│       \u{1b}[0m\u{1b}[1;31m╰────▶\n\u{1b}[0m\u{1b}[1;90m9 \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31mLi\u{1b}[0m\u{1b}[1;93m·\u{1b}[0mn\u{1b}[1;31m·\u{1b}[0me 9\n  \u{1b}[1m│  \u{1b}[0m\u{1b}[1;31m▶──╯\u{1b}[0m\u{1b}[1;93m^ \u{1b}[0m\u{1b}[1;31m^\n  \u{1b}[0m\u{1b}[1m╰─\u{1b}[0m");

        // Sections + previous_lines
        let log = CodeBlock::new(code)
            // Line 3
            .highlight_section(14..15, None)
            .highlight_cursor(15, None)
            .highlight_section(15..16, None)
            .highlight_cursor(16, None)
            .highlight_section(16..20, None)
            .highlight_cursor(20, None)
            .highlight_section(20..21, None)
            // Line 6
            .highlight_section(36..41, None)
            // Line 8
            .highlight_section(52..58, None)
            .highlight_cursor(58, None)
            .highlight_cursor(59, None)
            .previous_lines(1);
        let text = log.print_to_string(LogLevel::error(), PrinterFormat::Styled);

        println!("{}", text);
        assert_eq!(text, "\u{1b}[1;31m× \u{1b}[0m\u{1b}[1m╭─\n\u{1b}[0m\u{1b}[1;90m2 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mLine 2\n\u{1b}[1;90m3 \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31mL\u{1b}[0m\u{1b}[1;35m·\u{1b}[0m\u{1b}[1;31mi\u{1b}[0m\u{1b}[1;35m·\u{1b}[0m\u{1b}[1;31mne 3\u{1b}[0m\u{1b}[1;35m·\n  \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m^\u{1b}[0m\u{1b}[1;35m^\u{1b}[0m\u{1b}[1;31m^\u{1b}[0m\u{1b}[1;35m^\u{1b}[0m\u{1b}[1;31m╰──╯\u{1b}[0m\u{1b}[1;35m^\u{1b}[0m\u{1b}[1;31m^\n \u{1b}[0m\u{1b}[1m···    \n\u{1b}[0m\u{1b}[1;90m6 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mL\u{1b}[1;31mine 6\n  \u{1b}[0m\u{1b}[1m│     \u{1b}[0m\u{1b}[1;31m╰───╯\n \u{1b}[0m\u{1b}[1m···    \n\u{1b}[0m\u{1b}[1;90m8 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mLin\u{1b}[1;31me 8\n  \u{1b}[0m\u{1b}[1m│       \u{1b}[0m\u{1b}[1;31m╰────▶\n\u{1b}[0m\u{1b}[1;90m9 \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31mLi\u{1b}[0m\u{1b}[1;35m·\u{1b}[0mn\u{1b}[1;31m·\u{1b}[0me 9\n  \u{1b}[1m│  \u{1b}[0m\u{1b}[1;31m▶──╯\u{1b}[0m\u{1b}[1;35m^ \u{1b}[0m\u{1b}[1;31m^\n  \u{1b}[0m\u{1b}[1m╰─\u{1b}[0m");

        // Sections + next_lines
        let log = CodeBlock::new(code)
            // Line 3
            .highlight_section(14..15, None)
            .highlight_cursor(15, None)
            .highlight_section(15..16, None)
            .highlight_cursor(16, None)
            .highlight_section(16..20, None)
            .highlight_cursor(20, None)
            .highlight_section(20..21, None)
            // Line 6
            .highlight_section(36..41, None)
            // Line 8
            .highlight_section(52..58, None)
            .highlight_cursor(58, None)
            .highlight_cursor(59, None)
            .next_lines(1);
        let text = log.print_to_string(LogLevel::error(), PrinterFormat::Styled);

        println!("{}", text);
        assert_eq!(text, "\u{1b}[1;31m × \u{1b}[0m\u{1b}[1m╭─\n\u{1b}[0m\u{1b}[1;90m 3 \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31mL\u{1b}[0m\u{1b}[1;35m·\u{1b}[0m\u{1b}[1;31mi\u{1b}[0m\u{1b}[1;35m·\u{1b}[0m\u{1b}[1;31mne 3\u{1b}[0m\u{1b}[1;35m·\n   \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m^\u{1b}[0m\u{1b}[1;35m^\u{1b}[0m\u{1b}[1;31m^\u{1b}[0m\u{1b}[1;35m^\u{1b}[0m\u{1b}[1;31m╰──╯\u{1b}[0m\u{1b}[1;35m^\u{1b}[0m\u{1b}[1;31m^\n  \u{1b}[0m\u{1b}[1m···    \n\u{1b}[0m\u{1b}[1;90m 6 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mL\u{1b}[1;31mine 6\n   \u{1b}[0m\u{1b}[1m│     \u{1b}[0m\u{1b}[1;31m╰───╯\n  \u{1b}[0m\u{1b}[1m···    \n\u{1b}[0m\u{1b}[1;90m 8 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mLin\u{1b}[1;31me 8\n   \u{1b}[0m\u{1b}[1m│       \u{1b}[0m\u{1b}[1;31m╰────▶\n\u{1b}[0m\u{1b}[1;90m 9 \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31mLi\u{1b}[0m\u{1b}[1;35m·\u{1b}[0mn\u{1b}[1;31m·\u{1b}[0me 9\n   \u{1b}[1m│  \u{1b}[0m\u{1b}[1;31m▶──╯\u{1b}[0m\u{1b}[1;35m^ \u{1b}[0m\u{1b}[1;31m^\n\u{1b}[0m\u{1b}[1;90m10 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mLine 10\n   \u{1b}[1m╰─\u{1b}[0m");

        // Sections + middle_lines
        let log = CodeBlock::new(code)
            // Line 3
            .highlight_section(14..15, None)
            .highlight_cursor(15, None)
            .highlight_section(15..16, None)
            .highlight_cursor(16, None)
            .highlight_section(16..20, None)
            .highlight_cursor(20, None)
            .highlight_section(20..21, None)
            // Line 6
            .highlight_section(36..41, None)
            // Line 8
            .highlight_section(52..58, None)
            .highlight_cursor(58, None)
            .highlight_cursor(59, None)
            .middle_lines(1);
        let text = log.print_to_string(LogLevel::error(), PrinterFormat::Styled);

        println!("{}", text);
        assert_eq!(text, "\u{1b}[1;31m× \u{1b}[0m\u{1b}[1m╭─\n\u{1b}[0m\u{1b}[1;90m3 \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31mL\u{1b}[0m\u{1b}[1;35m·\u{1b}[0m\u{1b}[1;31mi\u{1b}[0m\u{1b}[1;35m·\u{1b}[0m\u{1b}[1;31mne 3\u{1b}[0m\u{1b}[1;35m·\n  \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m^\u{1b}[0m\u{1b}[1;35m^\u{1b}[0m\u{1b}[1;31m^\u{1b}[0m\u{1b}[1;35m^\u{1b}[0m\u{1b}[1;31m╰──╯\u{1b}[0m\u{1b}[1;35m^\u{1b}[0m\u{1b}[1;31m^\n \u{1b}[0m\u{1b}[1m···    \n\u{1b}[0m\u{1b}[1;90m6 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mL\u{1b}[1;31mine 6\n  \u{1b}[0m\u{1b}[1m│     \u{1b}[0m\u{1b}[1;31m╰───╯\n\u{1b}[0m\u{1b}[1;90m7 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mLine 6\n\u{1b}[1;90m8 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mLin\u{1b}[1;31me 8\n  \u{1b}[0m\u{1b}[1m│       \u{1b}[0m\u{1b}[1;31m╰────▶\n\u{1b}[0m\u{1b}[1;90m9 \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31mLi\u{1b}[0m\u{1b}[1;35m·\u{1b}[0mn\u{1b}[1;31m·\u{1b}[0me 9\n  \u{1b}[1m│  \u{1b}[0m\u{1b}[1;31m▶──╯\u{1b}[0m\u{1b}[1;35m^ \u{1b}[0m\u{1b}[1;31m^\n  \u{1b}[0m\u{1b}[1m╰─\u{1b}[0m");

        // Sections with messages.
        let log = CodeBlock::new(code)
            // Line 3
            .highlight_section_message(14..15, None, "This is\na message")
            .highlight_cursor_message(15, None, "This is\na message")
            .highlight_section_message(15..16, None, "This is\na message")
            .highlight_cursor_message(16, None, "This is\na message")
            .highlight_section_message(16..20, None, "This is\na message")
            .highlight_cursor_message(20, None, "This is\na message")
            .highlight_section_message(20..21, None, "This is\na message")
            // Line 6
            .highlight_section_message(36..41, None, "This is\na message")
            // Line 8
            .highlight_section_message(52..58, None, "This is\na message")
            .highlight_cursor(58, None)
            .highlight_cursor(59, None);
        let text = log.print_to_string(LogLevel::error(), PrinterFormat::Styled);

        println!("{}", text);
        assert_eq!(text, "\u{1b}[1;31m× \u{1b}[0m\u{1b}[1m╭─\n\u{1b}[0m\u{1b}[1;90m3 \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31mL\u{1b}[0m\u{1b}[1;35m·\u{1b}[0m\u{1b}[1;31mi\u{1b}[0m\u{1b}[1;35m·\u{1b}[0m\u{1b}[1;31mne 3\u{1b}[0m\u{1b}[1;35m·\n  \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m├──╯\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m╰── \u{1b}[0mThis is\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m│   \u{1b}[0m\u{1b}[1;35m│    \u{1b}[0ma message\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m│   \u{1b}[0m\u{1b}[1;35m╰── \u{1b}[0mThis is\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m│       \u{1b}[0ma message\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m╰── \u{1b}[0mThis is\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│    \u{1b}[0ma message\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m╰── \u{1b}[0mThis is\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m│    \u{1b}[0ma message\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m╰── \u{1b}[0mThis is\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│    \u{1b}[0ma message\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m╰── \u{1b}[0mThis is\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│    \u{1b}[0ma message\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m╰── \u{1b}[0mThis is\n  \u{1b}[1m│        \u{1b}[0ma message\n \u{1b}[1m···    \n\u{1b}[0m\u{1b}[1;90m6 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mL\u{1b}[1;31mine 6\n  \u{1b}[0m\u{1b}[1m│     \u{1b}[0m\u{1b}[1;31m╰───┴── \u{1b}[0mThis is\n  \u{1b}[1m│             \u{1b}[0ma message\n \u{1b}[1m···    \n\u{1b}[0m\u{1b}[1;90m8 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mLin\u{1b}[1;31me 8\n  \u{1b}[0m\u{1b}[1m│       \u{1b}[0m\u{1b}[1;31m╰────▶\n\u{1b}[0m\u{1b}[1;90m9 \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31mLi\u{1b}[0m\u{1b}[1;35m·\u{1b}[0mn\u{1b}[1;31m·\u{1b}[0me 9\n  \u{1b}[1m│  \u{1b}[0m\u{1b}[1;31m▶─┬╯\u{1b}[0m\u{1b}[1;35m^ \u{1b}[0m\u{1b}[1;31m^\n  \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m╰── \u{1b}[0mThis is\n  \u{1b}[1m│        \u{1b}[0ma message\n  \u{1b}[1m╰─\u{1b}[0m");

        // Sections with messages + align_messages.
        let log = CodeBlock::new(code)
            // Line 3
            .highlight_section_message(14..15, None, "This is\na message")
            .highlight_cursor_message(15, None, "This is\na message")
            .highlight_section_message(15..16, None, "This is\na message")
            .highlight_cursor_message(16, None, "This is\na message")
            .highlight_section_message(16..20, None, "This is\na message")
            .highlight_cursor_message(20, None, "This is\na message")
            .highlight_section_message(20..21, None, "This is\na message")
            // Line 6
            .highlight_section_message(36..41, None, "This is\na message")
            // Line 8
            .highlight_section_message(52..58, None, "This is\na message")
            .highlight_cursor(58, None)
            .highlight_cursor(59, None)
            .align_messages(true);
        let text = log.print_to_string(LogLevel::error(), PrinterFormat::Styled);

        println!("{}", text);
        assert_eq!(text, "\u{1b}[1;31m× \u{1b}[0m\u{1b}[1m╭─\n\u{1b}[0m\u{1b}[1;90m3 \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31mL\u{1b}[0m\u{1b}[1;35m·\u{1b}[0m\u{1b}[1;31mi\u{1b}[0m\u{1b}[1;35m·\u{1b}[0m\u{1b}[1;31mne 3\u{1b}[0m\u{1b}[1;35m·\n  \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m├──╯\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m╰── \u{1b}[0mThis is\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m│   \u{1b}[0m\u{1b}[1;35m│    \u{1b}[0ma message\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m│   \u{1b}[0m\u{1b}[1;35m╰─── \u{1b}[0mThis is\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m│        \u{1b}[0ma message\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m╰─────── \u{1b}[0mThis is\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│         \u{1b}[0ma message\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m╰──────── \u{1b}[0mThis is\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m│          \u{1b}[0ma message\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│\u{1b}[0m\u{1b}[1;31m╰───────── \u{1b}[0mThis is\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m│           \u{1b}[0ma message\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;35m╰────────── \u{1b}[0mThis is\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│            \u{1b}[0ma message\n  \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m╰─────────── \u{1b}[0mThis is\n  \u{1b}[1m│                 \u{1b}[0ma message\n \u{1b}[1m···    \n\u{1b}[0m\u{1b}[1;90m6 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mL\u{1b}[1;31mine 6\n  \u{1b}[0m\u{1b}[1m│     \u{1b}[0m\u{1b}[1;31m╰───┴── \u{1b}[0mThis is\n  \u{1b}[1m│             \u{1b}[0ma message\n \u{1b}[1m···    \n\u{1b}[0m\u{1b}[1;90m8 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mLin\u{1b}[1;31me 8\n  \u{1b}[0m\u{1b}[1m│       \u{1b}[0m\u{1b}[1;31m╰────▶\n\u{1b}[0m\u{1b}[1;90m9 \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31mLi\u{1b}[0m\u{1b}[1;35m·\u{1b}[0mn\u{1b}[1;31m·\u{1b}[0me 9\n  \u{1b}[1m│  \u{1b}[0m\u{1b}[1;31m▶─┬╯\u{1b}[0m\u{1b}[1;35m^ \u{1b}[0m\u{1b}[1;31m^\n  \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m╰── \u{1b}[0mThis is\n  \u{1b}[1m│        \u{1b}[0ma message\n  \u{1b}[1m╰─\u{1b}[0m");

        // All
        let log = CodeBlock::new(code)
            .title("This is\na title")
            .file_path("This is\na file path")
            .final_message("This is\na message")
            // Line 3
            .highlight_section_message(14..15, None, "This is\na message")
            .highlight_cursor_message(15, None, "This is\na message")
            .highlight_section_message(15..16, None, "This is\na message")
            .highlight_cursor_message(16, None, "This is\na message")
            .highlight_section_message(16..20, None, "This is\na message")
            .highlight_cursor_message(20, None, "This is\na message")
            .highlight_section_message(20..21, None, "This is\na message")
            // Line 6
            .highlight_section_message(36..41, None, "This is\na message")
            // Line 8
            .highlight_section_message(52..58, None, "This is\na message")
            .highlight_cursor(58, None)
            .highlight_cursor(59, None)
            .show_new_line_chars(true)
            .secondary_color(Color::BrightYellow)
            .previous_lines(1)
            .next_lines(1)
            .middle_lines(1)
            .align_messages(true);
        let text = log.print_to_string(LogLevel::error(), PrinterFormat::Styled);

        println!("{}", text);
        assert_eq!(text, "\u{1b}[1;31m × \u{1b}[0mThis is\n   a title\n   \u{1b}[1m╭─[\u{1b}[0mThis is a file path\u{1b}[1m]\n\u{1b}[0m\u{1b}[1;90m 2 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mLine 2↩\n\u{1b}[1;90m 3 \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31mL\u{1b}[0m\u{1b}[1;93m·\u{1b}[0m\u{1b}[1;31mi\u{1b}[0m\u{1b}[1;93m·\u{1b}[0m\u{1b}[1;31mne 3\u{1b}[0m\u{1b}[1;93m·\u{1b}[0m\u{1b}[1;31m↩\n   \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;93m│\u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;93m│\u{1b}[0m\u{1b}[1;31m├──╯\u{1b}[0m\u{1b}[1;93m│\u{1b}[0m\u{1b}[1;31m╰── \u{1b}[0mThis is\n   \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;93m│\u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;93m│\u{1b}[0m\u{1b}[1;31m│   \u{1b}[0m\u{1b}[1;93m│    \u{1b}[0ma message\n   \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;93m│\u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;93m│\u{1b}[0m\u{1b}[1;31m│   \u{1b}[0m\u{1b}[1;93m╰─── \u{1b}[0mThis is\n   \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;93m│\u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;93m│\u{1b}[0m\u{1b}[1;31m│        \u{1b}[0ma message\n   \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;93m│\u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;93m│\u{1b}[0m\u{1b}[1;31m╰─────── \u{1b}[0mThis is\n   \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;93m│\u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;93m│         \u{1b}[0ma message\n   \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;93m│\u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;93m╰──────── \u{1b}[0mThis is\n   \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;93m│\u{1b}[0m\u{1b}[1;31m│          \u{1b}[0ma message\n   \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;93m│\u{1b}[0m\u{1b}[1;31m╰───────── \u{1b}[0mThis is\n   \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;93m│           \u{1b}[0ma message\n   \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│\u{1b}[0m\u{1b}[1;93m╰────────── \u{1b}[0mThis is\n   \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m│            \u{1b}[0ma message\n   \u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m╰─────────── \u{1b}[0mThis is\n   \u{1b}[1m│                 \u{1b}[0ma message\n  \u{1b}[1m···    \n\u{1b}[0m\u{1b}[1;90m 6 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mL\u{1b}[1;31mine 6\u{1b}[0m↩\n   \u{1b}[1m│     \u{1b}[0m\u{1b}[1;31m╰───┴── \u{1b}[0mThis is\n   \u{1b}[1m│             \u{1b}[0ma message\n\u{1b}[1;90m 7 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mLine 6↩\n\u{1b}[1;90m 8 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mLin\u{1b}[1;31me 8↩\n   \u{1b}[0m\u{1b}[1m│       \u{1b}[0m\u{1b}[1;31m╰────▶\n\u{1b}[0m\u{1b}[1;90m 9 \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31mLi\u{1b}[0m\u{1b}[1;93m·\u{1b}[0mn\u{1b}[1;31m·\u{1b}[0me 9↩\n   \u{1b}[1m│  \u{1b}[0m\u{1b}[1;31m▶─┬╯\u{1b}[0m\u{1b}[1;93m^ \u{1b}[0m\u{1b}[1;31m^\n   \u{1b}[0m\u{1b}[1m│    \u{1b}[0m\u{1b}[1;31m╰── \u{1b}[0mThis is\n   \u{1b}[1m│        \u{1b}[0ma message\n\u{1b}[1;90m10 \u{1b}[0m\u{1b}[1m│    \u{1b}[0mLine 10\n   \u{1b}[1m╰─ \u{1b}[0mThis is\n      a message");
    }
}