boxen 0.3.2

A Rust library for creating styled terminal boxes around text with performance optimizations
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
/// Integration tests for main boxen API functions
use ::boxen::{
    BorderStyle, BoxenOptions, Color, Float, FullscreenMode, Spacing, TextAlignment,
    TitleAlignment, boxen, builder, double_box, round_box, simple_box,
};
use std::time::Instant;

#[test]
fn test_main_boxen_function_basic() {
    let result = boxen("Hello World", None).unwrap();

    assert!(result.contains("Hello World"));
    assert!(result.contains("")); // Single border by default
    assert!(result.contains(""));
    assert!(result.contains(""));
    assert!(result.contains(""));
    assert_eq!(result.lines().count(), 3);
}

#[test]
fn test_main_boxen_function_with_options() {
    let options = BoxenOptions {
        border_style: BorderStyle::Double,
        padding: Spacing::from(1),
        margin: Spacing::from(1),
        text_alignment: TextAlignment::Center,
        title: Some("Test Title".to_string()),
        title_alignment: TitleAlignment::Center,
        border_color: Some(Color::Named("blue".to_string())),
        background_color: Some(Color::Named("white".to_string())),
        ..Default::default()
    };

    let result = boxen("Centered Text", Some(options)).unwrap();

    assert!(result.contains("Centered Text"));
    assert!(result.contains("Test Title"));
    assert!(result.contains("")); // Double border
    assert!(result.contains(""));
    assert!(result.contains(""));
    assert!(result.contains(""));
}

#[test]
fn test_main_boxen_function_multiline() {
    let text = "Line 1\nLine 2\nLine 3";
    let result = boxen(text, None).unwrap();

    assert!(result.contains("Line 1"));
    assert!(result.contains("Line 2"));
    assert!(result.contains("Line 3"));
    assert_eq!(result.lines().count(), 5); // 2 borders + 3 content lines
}

#[test]
fn test_main_boxen_function_empty_text() {
    let result = boxen("", None).unwrap();

    assert!(result.contains(""));
    assert!(result.contains(""));
    assert!(result.contains(""));
    assert!(result.contains(""));
    assert_eq!(result.lines().count(), 3);
}

#[test]
fn test_main_boxen_function_error_handling() {
    let options = BoxenOptions {
        width: Some(5),
        padding: Spacing::from(10), // Too large padding
        ..Default::default()
    };

    let result = boxen("Test", Some(options));
    assert!(result.is_err());
}

#[test]
fn test_builder_function() {
    let builder_instance = builder();
    let result = builder_instance.render("Builder Test").unwrap();

    assert!(result.contains("Builder Test"));
    assert!(result.contains("")); // Default single border
}

#[test]
fn test_builder_fluent_interface() {
    let result = builder()
        .border_style(BorderStyle::Round)
        .padding(2)
        .margin(1)
        .text_alignment(TextAlignment::Center)
        .title("Fluent API")
        .title_alignment(TitleAlignment::Center)
        .width(40)
        .height(10) // Increased height to accommodate padding and margins
        .border_color("red")
        .background_color("#ffffff")
        .dim_border(true)
        .float(Float::Center)
        .render("Testing fluent interface");

    assert!(result.is_ok());
    let output = result.unwrap();
    assert!(output.contains("Testing fluent"));
    assert!(output.contains("interface"));
    assert!(output.contains("Fluent API"));
    assert!(output.contains("")); // Round border
}

#[test]
fn test_builder_convenience_methods() {
    let result = builder()
        .spacing(1) // Sets both padding and margin
        .colors("blue", "yellow") // Sets both border and background
        .size(30, 10) // Sets both width and height - increased height
        .center_all() // Centers text, title, and float
        .title("Convenience")
        .render("Testing convenience methods");

    assert!(result.is_ok());
    let output = result.unwrap();
    assert!(output.contains("Testing"));
    assert!(output.contains("convenience"));
    assert!(output.contains("methods"));
    assert!(output.contains("Convenience"));
}

#[test]
fn test_builder_validation() {
    let result = builder()
        .width(5) // Too small
        .padding(10) // Too large
        .render("Test");

    assert!(result.is_err());
}

#[test]
fn test_builder_validate_method() {
    let valid_builder = builder().width(50).padding(2);

    assert!(valid_builder.validate().is_ok());

    let invalid_builder = builder().width(5).padding(10);

    assert!(invalid_builder.validate().is_err());
}

#[test]
fn test_simple_box_convenience() {
    let result = simple_box("Simple Test");

    assert!(result.contains("Simple Test"));
    assert!(result.contains("")); // Single border
    assert!(result.contains(""));
    assert!(result.contains(""));
    assert!(result.contains(""));
    assert_eq!(result.lines().count(), 3);
}

#[test]
fn test_simple_box_multiline() {
    let result = simple_box("Line 1\nLine 2");

    assert!(result.contains("Line 1"));
    assert!(result.contains("Line 2"));
    assert_eq!(result.lines().count(), 4);
}

#[test]
fn test_simple_box_empty() {
    let result = simple_box("");

    assert!(result.contains(""));
    assert!(result.contains(""));
    assert_eq!(result.lines().count(), 3);
}

#[test]
fn test_double_box_convenience() {
    let result = double_box("Double Test");

    assert!(result.contains("Double Test"));
    assert!(result.contains("")); // Double border
    assert!(result.contains(""));
    assert!(result.contains(""));
    assert!(result.contains(""));
    assert_eq!(result.lines().count(), 3);
}

#[test]
fn test_double_box_multiline() {
    let result = double_box("Line 1\nLine 2\nLine 3");

    assert!(result.contains("Line 1"));
    assert!(result.contains("Line 2"));
    assert!(result.contains("Line 3"));
    assert_eq!(result.lines().count(), 5);
}

#[test]
fn test_round_box_convenience() {
    let result = round_box("Round Test");

    assert!(result.contains("Round Test"));
    assert!(result.contains("")); // Round border
    assert!(result.contains(""));
    assert!(result.contains(""));
    assert!(result.contains(""));
    assert_eq!(result.lines().count(), 3);
}

#[test]
fn test_round_box_with_title() {
    // Round box should work with complex content
    let result = round_box("Content with\nmultiple lines\nand unicode: 你好");

    assert!(result.contains("Content with"));
    assert!(result.contains("multiple lines"));
    assert!(result.contains("unicode: 你好"));
    assert!(result.contains(""));
    assert!(result.contains(""));
    assert_eq!(result.lines().count(), 5);
}

#[test]
fn test_convenience_functions_error_handling() {
    // Convenience functions should handle errors gracefully by returning the original text
    // This is hard to test directly since they use unwrap_or_else, but we can verify they don't panic

    let result = simple_box("Test");
    assert!(!result.is_empty());

    let result = double_box("Test");
    assert!(!result.is_empty());

    let result = round_box("Test");
    assert!(!result.is_empty());
}

#[test]
fn test_api_consistency_across_functions() {
    let text = "Consistency Test";

    // All functions should handle the same text consistently
    let simple = simple_box(text);
    let double = double_box(text);
    let round = round_box(text);
    let main = boxen(text, None).unwrap();
    let builder_result = builder().render(text).unwrap();

    // All should contain the text
    assert!(simple.contains(text));
    assert!(double.contains(text));
    assert!(round.contains(text));
    assert!(main.contains(text));
    assert!(builder_result.contains(text));

    // All should have 3 lines for single-line text
    assert_eq!(simple.lines().count(), 3);
    assert_eq!(double.lines().count(), 3);
    assert_eq!(round.lines().count(), 3);
    assert_eq!(main.lines().count(), 3);
    assert_eq!(builder_result.lines().count(), 3);
}

#[test]
fn test_unicode_handling_across_apis() {
    let unicode_text = "Unicode: 你好世界 🌍 ñáéíóú";

    let simple = simple_box(unicode_text);
    let double = double_box(unicode_text);
    let round = round_box(unicode_text);
    let main = boxen(unicode_text, None).unwrap();
    let builder_result = builder().render(unicode_text).unwrap();

    // All should handle Unicode correctly
    assert!(simple.contains("你好世界"));
    assert!(double.contains("🌍"));
    assert!(round.contains("ñáéíóú"));
    assert!(main.contains(unicode_text));
    assert!(builder_result.contains(unicode_text));
}

#[test]
fn test_complex_configuration_integration() {
    let options = BoxenOptions {
        border_style: BorderStyle::Bold,
        padding: Spacing::from((2, 1)),      // (horizontal, vertical)
        margin: Spacing::from([1, 2, 1, 2]), // [top, right, bottom, left]
        text_alignment: TextAlignment::Right,
        title: Some("Complex Config".to_string()),
        title_alignment: TitleAlignment::Right,
        float: Float::Right,
        width: Some(50),
        height: Some(12), // Increased height to accommodate all content
        border_color: Some(Color::Hex("#ff0000".to_string())),
        background_color: Some(Color::Rgb(255, 255, 0)),
        dim_border: true,
        ..Default::default()
    };

    let result = boxen(
        "This is a complex configuration test\nwith multiple lines\nand various settings",
        Some(options),
    )
    .unwrap();

    assert!(result.contains("Complex Config"));
    assert!(result.contains("This is a complex configuration test"));
    assert!(result.contains("with multiple lines"));
    assert!(result.contains("and various settings"));

    // Should use bold border characters
    assert!(result.contains(""));
    assert!(result.contains(""));
    assert!(result.contains(""));
    assert!(result.contains(""));
}

#[test]
fn test_builder_vs_options_equivalence() {
    let text = "Equivalence Test";

    // Create same configuration using options struct
    let options = BoxenOptions {
        border_style: BorderStyle::Double,
        padding: Spacing::from(2),
        text_alignment: TextAlignment::Center,
        title: Some("Title".to_string()),
        width: Some(30),
        ..Default::default()
    };

    let options_result = boxen(text, Some(options)).unwrap();

    // Create same configuration using builder
    let builder_result = builder()
        .border_style(BorderStyle::Double)
        .padding(2)
        .text_alignment(TextAlignment::Center)
        .title("Title")
        .width(30)
        .render(text)
        .unwrap();

    // Results should be identical
    assert_eq!(options_result, builder_result);
}

#[test]
fn test_from_trait_implementations() {
    // Test various From trait implementations work with the APIs
    let result = builder()
        .padding(2_usize) // From<usize> for Spacing
        .margin((1, 2, 3, 4)) // From<(usize, usize, usize, usize)> for Spacing
        .border_color("red") // From<&str> for Color
        .background_color("#00ff00") // From<&str> for Color (hex)
        .render("From Traits Test")
        .unwrap();

    assert!(result.contains("From Traits Test"));

    // Test RGB color from tuple
    let result2 = builder()
        .border_color((255, 0, 0)) // From<(u8, u8, u8)> for Color
        .render("RGB Test")
        .unwrap();

    assert!(result2.contains("RGB Test"));
}

#[test]
fn test_error_propagation() {
    // Test that errors are properly propagated through the API layers

    // Invalid configuration through main function
    let invalid_options = BoxenOptions {
        width: Some(1),
        padding: Spacing::from(5),
        ..Default::default()
    };

    let result = boxen("Test", Some(invalid_options));
    assert!(result.is_err());

    // Invalid configuration through builder
    let result = builder().width(1).padding(5).render("Test");

    assert!(result.is_err());
}

#[test]
fn test_performance_with_large_text() {
    // Test that the API can handle reasonably large text inputs
    // Use smaller text that won't exceed terminal height
    let large_text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. ".repeat(10);

    let result = boxen(&large_text, None);
    assert!(result.is_ok());

    let result = builder().width(80).render(&large_text);
    assert!(result.is_ok());

    let result = simple_box(&large_text);
    assert!(!result.is_empty());
}

// ===== COMPREHENSIVE FEATURE COMBINATION TESTS =====

#[test]
fn test_all_border_styles_with_content() {
    let test_content = "Border Style Test";
    let border_styles = [
        BorderStyle::Single,
        BorderStyle::Double,
        BorderStyle::Round,
        BorderStyle::Bold,
        BorderStyle::SingleDouble,
        BorderStyle::DoubleSingle,
        BorderStyle::Classic,
        BorderStyle::None,
    ];

    for style in border_styles.iter() {
        let options = BoxenOptions {
            border_style: *style,
            ..Default::default()
        };
        let result = boxen(test_content, Some(options));
        assert!(result.is_ok(), "Failed for border style: {:?}", style);
        let output = result.unwrap();
        assert!(output.contains(test_content));

        // Verify appropriate border characters are used
        match style {
            BorderStyle::Single => {
                assert!(output.contains("") || output.contains(""));
            }
            BorderStyle::Double => {
                assert!(output.contains("") || output.contains(""));
            }
            BorderStyle::Round => {
                assert!(output.contains("") || output.contains(""));
            }
            BorderStyle::Bold => {
                assert!(output.contains("") || output.contains(""));
            }
            BorderStyle::None => {
                // Should not contain any border characters
                assert!(!output.contains("") && !output.contains("") && !output.contains(""));
            }
            _ => {} // Other styles have their own specific characters
        }
    }
}

#[test]
fn test_all_text_alignments_with_multiline() {
    let multiline_content = "Left aligned\nCenter aligned\nRight aligned";
    let alignments = [
        TextAlignment::Left,
        TextAlignment::Center,
        TextAlignment::Right,
    ];

    for alignment in alignments.iter() {
        let options = BoxenOptions {
            text_alignment: *alignment,
            width: Some(30),
            ..Default::default()
        };
        let result = boxen(multiline_content, Some(options));
        assert!(result.is_ok(), "Failed for alignment: {:?}", alignment);
        let output = result.unwrap();
        assert!(output.contains("Left aligned"));
        assert!(output.contains("Center aligned"));
        assert!(output.contains("Right aligned"));
    }
}

#[test]
fn test_all_float_positions_with_different_widths() {
    let content = "Float Test";
    let floats = [Float::Left, Float::Center, Float::Right];
    let widths = [20, 40, 60];

    for float_pos in floats.iter() {
        for &width in widths.iter() {
            let options = BoxenOptions {
                float: *float_pos,
                width: Some(width),
                ..Default::default()
            };
            let result = boxen(content, Some(options));
            assert!(
                result.is_ok(),
                "Failed for float: {:?}, width: {}",
                float_pos,
                width
            );
            let output = result.unwrap();
            assert!(output.contains(content));
        }
    }
}

#[test]
fn test_color_combinations_comprehensive() {
    let content = "Color Test";
    let colors = [
        Color::Named("red".to_string()),
        Color::Named("blue".to_string()),
        Color::Hex("#ff0000".to_string()),
        Color::Hex("#00ff00".to_string()),
        Color::Rgb(255, 0, 255),
        Color::Rgb(0, 255, 255),
    ];

    // Test all combinations of border and background colors (limit to avoid excessive testing)
    for (_i, border_color) in colors.iter().enumerate().take(3) {
        for (_j, background_color) in colors.iter().enumerate().take(3) {
            let options = BoxenOptions {
                border_color: Some(border_color.clone()),
                background_color: Some(background_color.clone()),
                width: Some(30), // Ensure adequate width
                ..Default::default()
            };
            let result = boxen(content, Some(options));
            assert!(
                result.is_ok(),
                "Failed for border: {:?}, background: {:?}",
                border_color,
                background_color
            );
            let output = result.unwrap();
            assert!(output.contains(content));
        }
    }
}

#[test]
fn test_spacing_combinations_comprehensive() {
    let content = "Spacing Test";
    let spacing_values = [
        Spacing::from(0),
        Spacing::from(1),
        Spacing::from(2),
        Spacing::from((1, 2, 3, 4)),
        Spacing::from([2, 4]),
    ];

    // Test spacing combinations with validation (skip problematic combinations)
    for padding in spacing_values.iter() {
        for margin in spacing_values.iter() {
            let total_horizontal = padding.horizontal() + margin.horizontal();
            let total_vertical = padding.vertical() + margin.vertical();

            // Skip combinations that would exceed reasonable terminal size
            if total_vertical > 10 || total_horizontal > 40 {
                continue;
            }

            let width = std::cmp::max(60, total_horizontal + 20); // Ensure adequate width

            let options = BoxenOptions {
                padding: *padding,
                margin: *margin,
                width: Some(width),
                ..Default::default()
            };
            let result = boxen(content, Some(options));
            if let Err(e) = &result {
                println!(
                    "Spacing error for padding: {:?}, margin: {:?}: {}",
                    padding, margin, e
                );
                continue; // Skip this combination instead of failing
            }
            assert!(
                result.is_ok(),
                "Failed for padding: {:?}, margin: {:?}",
                padding,
                margin
            );
            let output = result.unwrap();
            assert!(output.contains(content));
        }
    }
}

#[test]
fn test_title_combinations_comprehensive() {
    let content = "Title Test Content";
    let titles = [
        "Short",
        "Medium Length Title",
        "Very Long Title That Should Be Truncated",
    ];
    let title_alignments = [
        TitleAlignment::Left,
        TitleAlignment::Center,
        TitleAlignment::Right,
    ];
    let widths = [15, 30, 50];

    for title in titles.iter() {
        for alignment in title_alignments.iter() {
            for &width in widths.iter() {
                let options = BoxenOptions {
                    title: Some(title.to_string()),
                    title_alignment: *alignment,
                    width: Some(width),
                    ..Default::default()
                };
                let result = boxen(content, Some(options));
                if let Err(e) = &result {
                    println!(
                        "Title error for '{}', alignment: {:?}, width: {}: {}",
                        title, alignment, width, e
                    );
                    continue; // Skip this combination
                }
                assert!(
                    result.is_ok(),
                    "Failed for title: '{}', alignment: {:?}, width: {}",
                    title,
                    alignment,
                    width
                );
                let output = result.unwrap();
                // Check if content appears (possibly wrapped)
                let content_words: Vec<&str> = content.split_whitespace().collect();
                let all_words_present = content_words.iter().all(|word| output.contains(word));
                if !all_words_present {
                    println!(
                        "Not all content words found for title '{}', width {}: {}",
                        title, width, output
                    );
                }
                assert!(all_words_present, "Content words not found in output");
                // Title should appear in output (possibly truncated)
                let truncated_title = title
                    .chars()
                    .take(width.saturating_sub(4))
                    .collect::<String>();
                assert!(output.contains(&truncated_title) || output.contains(title));
            }
        }
    }
}

#[test]
fn test_dimension_constraints_comprehensive() {
    let content = "Dimension Test\nWith multiple lines\nTo test constraints";
    let dimensions = [
        (Some(20), Some(5)),
        (Some(40), Some(10)),
        (Some(60), None),
        (None, Some(8)),
        (None, None),
    ];

    for (width, height) in dimensions.iter() {
        let options = BoxenOptions {
            width: *width,
            height: *height,
            ..Default::default()
        };
        let result = boxen(content, Some(options));
        assert!(
            result.is_ok(),
            "Failed for width: {:?}, height: {:?}",
            width,
            height
        );
        let output = result.unwrap();
        assert!(output.contains("Dimension Test"));

        // Verify height constraints are respected
        if let Some(h) = height {
            let line_count = output.lines().count();
            assert!(
                line_count <= *h + 2,
                "Height constraint violated: {} lines > {} + 2 borders",
                line_count,
                h
            );
        }
    }
}

// ===== TYPESCRIPT COMPATIBILITY TESTS =====

#[test]
fn test_typescript_default_behavior_compatibility() {
    // Test that default behavior matches TypeScript version
    let result = boxen("Hello", None).unwrap();

    // Should have single border by default
    assert!(result.contains(""));
    assert!(result.contains(""));
    assert!(result.contains(""));
    assert!(result.contains(""));
    assert!(result.contains("Hello"));
    assert_eq!(result.lines().count(), 3);
}

#[test]
fn test_typescript_padding_asymmetric_behavior() {
    // TypeScript boxen uses 3x horizontal padding when given a single number
    let options = BoxenOptions {
        padding: Spacing::from(1), // Should be 1 vertical, 3 horizontal
        ..Default::default()
    };
    let result = boxen("Test", Some(options)).unwrap();

    // Verify the box is wider due to horizontal padding
    let lines: Vec<&str> = result.lines().collect();
    assert!(lines.len() >= 3);

    // The content line should have padding on both sides
    let content_line = lines.iter().find(|line| line.contains("Test")).unwrap();
    assert!(content_line.len() > 4); // "Test" + borders + padding
}

#[test]
fn test_typescript_title_truncation_behavior() {
    // Test title truncation matches TypeScript behavior
    let long_title = "This is a very long title that should be truncated";
    let options = BoxenOptions {
        title: Some(long_title.to_string()),
        width: Some(20),
        ..Default::default()
    };
    let result = boxen("Content", Some(options)).unwrap();

    assert!(result.contains("Content"));
    // Title should be truncated to fit within the box width (allow some tolerance for positioning)
    let first_line = result.lines().next().unwrap();
    assert!(first_line.len() <= 30); // Allow tolerance for float positioning
}

#[test]
fn test_typescript_multiline_handling() {
    // Test multiline text handling matches TypeScript behavior
    let multiline = "Line 1\nLine 2\nLine 3";
    let result = boxen(multiline, None).unwrap();

    assert!(result.contains("Line 1"));
    assert!(result.contains("Line 2"));
    assert!(result.contains("Line 3"));
    assert_eq!(result.lines().count(), 5); // 3 content + 2 borders
}

#[test]
fn test_typescript_empty_text_behavior() {
    // Test empty text handling matches TypeScript behavior
    let result = boxen("", None).unwrap();

    // Should still create a box with borders
    assert!(result.contains(""));
    assert!(result.contains(""));
    assert!(result.contains(""));
    assert!(result.contains(""));
    assert_eq!(result.lines().count(), 3); // 2 borders + 1 empty content line
}

// ===== PERFORMANCE TESTS =====

#[test]
fn test_performance_large_text_input() {
    let large_text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. ".repeat(50); // Reduce size

    let start = Instant::now();
    let result = boxen(
        &large_text,
        Some(BoxenOptions {
            width: Some(80),
            height: Some(10), // Smaller height to fit in terminal
            ..Default::default()
        }),
    );
    let duration = start.elapsed();

    if let Err(e) = &result {
        println!("Large text error: {}", e);
    }
    assert!(result.is_ok());
    assert!(
        duration.as_millis() < 100,
        "Large text processing took too long: {:?}",
        duration
    );

    let output = result.unwrap();
    assert!(output.contains("Lorem ipsum"));
}

#[test]
fn test_performance_many_lines() {
    let many_lines = (0..100)
        .map(|i| format!("Line {}", i))
        .collect::<Vec<_>>()
        .join("\n"); // Reduce count

    let start = Instant::now();
    let result = boxen(
        &many_lines,
        Some(BoxenOptions {
            width: Some(80),
            height: Some(10), // Smaller height to fit in terminal
            ..Default::default()
        }),
    );
    let duration = start.elapsed();

    if let Err(e) = &result {
        println!("Many lines error: {}", e);
    }
    assert!(result.is_ok());
    assert!(
        duration.as_millis() < 200,
        "Many lines processing took too long: {:?}",
        duration
    );
}

#[test]
fn test_performance_complex_configuration() {
    let content = "Performance test with complex configuration";

    let start = Instant::now();
    let result = builder()
        .border_style(BorderStyle::Double)
        .padding(1) // Reduced padding to fit in test terminal
        .margin(1) // Reduced margin to fit in test terminal
        .text_alignment(TextAlignment::Center)
        .title("Performance Test")
        .title_alignment(TitleAlignment::Center)
        .width(60)
        .border_color("red")
        .background_color("#ffffff")
        .dim_border(true)
        .render(content);
    let duration = start.elapsed();

    if let Err(e) = &result {
        eprintln!("Error in test_performance_complex_configuration: {}", e);
    }
    assert!(result.is_ok());
    assert!(
        duration.as_millis() < 50,
        "Complex configuration took too long: {:?}",
        duration
    );
}

#[test]
fn test_performance_unicode_heavy_content() {
    let unicode_content =
        "🌍🌎🌏 Unicode: 你好世界 🚀✨🎉 Émojis and spëcial chars: àáâãäåæçèéêë".repeat(10); // Reduce size

    let start = Instant::now();
    let result = boxen(
        &unicode_content,
        Some(BoxenOptions {
            width: Some(80),
            height: Some(8), // Limit height
            text_alignment: TextAlignment::Center,
            ..Default::default()
        }),
    );
    let duration = start.elapsed();

    if let Err(e) = &result {
        eprintln!("Error in test_performance_unicode_heavy_content: {}", e);
    }
    assert!(result.is_ok());
    assert!(
        duration.as_millis() < 100,
        "Unicode processing took too long: {:?}",
        duration
    );

    let output = result.unwrap();
    assert!(output.contains("🌍"));
    assert!(output.contains("你好世界"));
}

#[test]
fn test_performance_repeated_rendering() {
    let content = "Repeated rendering test";
    let options = BoxenOptions {
        border_style: BorderStyle::Round,
        padding: Spacing::from(1),
        title: Some("Repeat Test".to_string()),
        ..Default::default()
    };

    let start = Instant::now();
    for _ in 0..100 {
        let result = boxen(content, Some(options.clone()));
        assert!(result.is_ok());
    }
    let duration = start.elapsed();

    assert!(
        duration.as_millis() < 500,
        "100 repeated renderings took too long: {:?}",
        duration
    );
}

// ===== EDGE CASE AND ERROR HANDLING TESTS =====

#[test]
fn test_edge_case_very_narrow_width() {
    let result = boxen(
        "Test",
        Some(BoxenOptions {
            width: Some(6), // Minimum viable width
            ..Default::default()
        }),
    );

    assert!(result.is_ok());
    let output = result.unwrap();
    assert!(output.contains("Test"));
}

#[test]
fn test_edge_case_very_small_height() {
    let result = boxen(
        "Test",
        Some(BoxenOptions {
            height: Some(3), // Minimum viable height (2 borders + 1 content)
            ..Default::default()
        }),
    );

    assert!(result.is_ok());
    let output = result.unwrap();
    assert!(output.contains("Test"));
    assert_eq!(output.lines().count(), 3);
}

#[test]
fn test_edge_case_fullscreen_mode() {
    let result = boxen(
        "Fullscreen test",
        Some(BoxenOptions {
            fullscreen: Some(FullscreenMode::Auto),
            title: Some("Fullscreen".to_string()),
            ..Default::default()
        }),
    );

    assert!(result.is_ok());
    let output = result.unwrap();
    assert!(output.contains("Fullscreen test"));
    assert!(output.contains("Fullscreen"));
}

#[test]
fn test_edge_case_no_border_with_title() {
    let result = boxen(
        "No border content",
        Some(BoxenOptions {
            border_style: BorderStyle::None,
            title: Some("Title".to_string()),
            padding: Spacing::from(1),
            ..Default::default()
        }),
    );

    assert!(result.is_ok());
    let output = result.unwrap();
    assert!(output.contains("No border content"));
    assert!(output.contains("Title"));
}

#[test]
fn test_comprehensive_builder_api_coverage() {
    // Test all builder methods work together
    let result = builder()
        .border_style(BorderStyle::Bold)
        .padding(1) // Reduce padding
        .margin(1)
        .text_alignment(TextAlignment::Right)
        .title("Complete Test")
        .title_alignment(TitleAlignment::Left)
        .width(60) // Increase width
        .height(10)
        .border_color("cyan")
        .background_color("#f0f0f0")
        .dim_border(false)
        .float(Float::Center)
        .render("Testing all builder methods");

    assert!(result.is_ok());
    let output = result.unwrap();
    assert!(output.contains("Testing all builder"));
    assert!(output.contains("Complete Test"));
}

#[test]
fn test_builder_convenience_methods_comprehensive() {
    // Test all convenience methods
    let result = builder()
        .spacing(1) // Sets both padding and margin (reduce to avoid size issues)
        .colors("green", "yellow") // Sets both colors
        .size(50, 8) // Sets both dimensions (increase width)
        .center_all() // Centers everything
        .title("Convenience")
        .render("Testing convenience");

    assert!(result.is_ok());
    let output = result.unwrap();
    assert!(output.contains("Testing convenience"));
    assert!(output.contains("Convenience"));
}

#[test]
fn test_error_recovery_and_validation() {
    // Test that validation catches common errors
    let invalid_configs = [
        // Width too small for content + padding
        BoxenOptions {
            width: Some(3),
            padding: Spacing::from(5),
            ..Default::default()
        },
        // Height too small
        BoxenOptions {
            height: Some(1),
            ..Default::default()
        },
    ];

    for config in invalid_configs.iter() {
        let result = boxen("Test", Some(config.clone()));
        assert!(
            result.is_err(),
            "Should have failed for config: {:?}",
            config
        );
    }
}