Unnamed repository; edit this file 'description' to name the repository.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
n72'>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
// use helix_tui::{
//     backend::TestBackend,
//     buffer::Buffer,
//     layout::Alignment,
//     text::{Span, Spans, Text},
//     widgets::{Block, Borders, Paragraph, Wrap},
//     Terminal,
// };

// const SAMPLE_STRING: &str = "The library is based on the principle of immediate rendering with \
//      intermediate buffers. This means that at each new frame you should build all widgets that are \
//      supposed to be part of the UI. While providing a great flexibility for rich and \
//      interactive UI, this may introduce overhead for highly dynamic content.";

// #[test]
// fn widgets_paragraph_can_wrap_its_content() {
//     let test_case = |alignment, expected| {
//         let backend = TestBackend::new(20, 10);
//         let mut terminal = Terminal::new(backend).unwrap();

//         terminal
//             .draw(|f| {
//                 let size = f.size();
//                 let text = Text::from(SAMPLE_STRING);
//                 let paragraph = Paragraph::new(&text)
//                     .block(Block::bordered())
//                     .alignment(alignment)
//                     .wrap(Wrap { trim: true });
//                 f.render_widget(paragraph, size);
//             })
//             .unwrap();
//         terminal.backend().assert_buffer(&expected);
//     };

//     test_case(
//         Alignment::Left,
//         Buffer::with_lines(vec![
//             "┌──────────────────┐",
//             "│The library is    │",
//             "│based on the      │",
//             "│principle of      │",
//             "│immediate         │",
//             "│rendering with    │",
//             "│intermediate      │",
//             "│buffers. This     │",
//             "│means that at each│",
//             "└──────────────────┘",
//         ]),
//     );
//     test_case(
//         Alignment::Right,
//         Buffer::with_lines(vec![
//             "┌──────────────────┐",
//             "│    The library is│",
//             "│      based on the│",
//             "│      principle of│",
//             "│         immediate│",
//             "│    rendering with│",
//             "│      intermediate│",
//             "│     buffers. This│",
//             "│means that at each│",
//             "└──────────────────┘",
//         ]),
//     );
//     test_case(
//         Alignment::Center,
//         Buffer::with_lines(vec![
//             "┌──────────────────┐",
//             "│  The library is  │",
//             "│   based on the   │",
//             "│   principle of   │",
//             "│     immediate    │",
//             "│  rendering with  │",
//             "│   intermediate   │",
//             "│   buffers. This  │",
//             "│means that at each│",
//             "└──────────────────┘",
//         ]),
//     );
// }

// #[test]
// fn widgets_paragraph_renders_double_width_graphemes() {
//     let backend = TestBackend::new(10, 10);
//     let mut terminal = Terminal::new(backend).unwrap();

//     let s = "コンピュータ上で文字を扱う場合、典型的には文字による通信を行う場合にその両端点では、";
//     terminal
//         .draw(|f| {
//             let size = f.size();
//             let text = Text::from(s);
//             let paragraph = Paragraph::new(&text)
//                 .block(Block::bordered())
//                 .wrap(Wrap { trim: true });
//             f.render_widget(paragraph, size);
//         })
//         .unwrap();

//     let expected = Buffer::with_lines(vec![
//         "┌────────┐",
//         "│コンピュ│",
//         "│ータ上で│",
//         "│文字を扱│",
//         "│う場合、│",
//         "│典型的に│",
//         "│は文字に│",
//         "│よる通信│",
//         "│を行う場│",
//         "└────────┘",
//     ]);
//     terminal.backend().assert_buffer(&expected);
// }

// #[test]
// fn widgets_paragraph_renders_mixed_width_graphemes() {
//     let backend = TestBackend::new(10, 7);
//     let mut terminal = Terminal::new(backend).unwrap();

//     let s = "aコンピュータ上で文字を扱う場合、";
//     terminal
//         .draw(|f| {
//             let size = f.size();
//             let text = Text::from(s);
//             let paragraph = Paragraph::new(&text)
//                 .block(Block::bordered())
//                 .wrap(Wrap { trim: true });
//             f.render_widget(paragraph, size);
//         })
//         .unwrap();

//     let expected = Buffer::with_lines(vec![
//         // The internal width is 8 so only 4 slots for double-width characters.
//         "┌────────┐",
//         "│aコンピ │", // Here we have 1 latin character so only 3 double-width ones can fit.
//         "│ュータ上│",
//         "│で文字を│",
//         "│扱う場合│",
//         "│、      │",
//         "└────────┘",
//     ]);
//     terminal.backend().assert_buffer(&expected);
// }

// #[test]
// fn widgets_paragraph_can_wrap_with_a_trailing_nbsp() {
//     let nbsp: &str = "\u{00a0}";
//     let line = Spans::from(vec![Span::raw("NBSP"), Span::raw(nbsp)]);
//     let backend = TestBackend::new(20, 3);
//     let mut terminal = Terminal::new(backend).unwrap();
//     let expected = Buffer::with_lines(vec![
//         "┌──────────────────┐",
//         "│NBSP\u{00a0}             │",
//         "└──────────────────┘",
//     ]);
//     terminal
//         .draw(|f| {
//             let size = f.size();
//             let text = Text::from(line);
//             let paragraph = Paragraph::new(&text).block(Block::bordered());
//             f.render_widget(paragraph, size);
//         })
//         .unwrap();
//     terminal.backend().assert_buffer(&expected);
// }
// #[test]
// fn widgets_paragraph_can_scroll_horizontally() {
//     let test_case = |alignment, scroll, expected| {
//         let backend = TestBackend::new(20, 10);
//         let mut terminal = Terminal::new(backend).unwrap();

//         terminal
//             .draw(|f| {
//                 let size = f.size();
//                 let text = Text::from(
//                     "段落现在可以水平滚动了!\nParagraph can scroll horizontally!\nShort line",
//                 );
//                 let paragraph = Paragraph::new(&text)
//                     .block(Block::bordered())
//                     .alignment(alignment)
//                     .scroll(scroll);
//                 f.render_widget(paragraph, size);
//             })
//             .unwrap();
//         terminal.backend().assert_buffer(&expected);
//     };

//     test_case(
//         Alignment::Left,
//         (0, 7),
//         Buffer::with_lines(vec![
//             "┌──────────────────┐",
//             "│在可以水平滚动了!│",
//             "│ph can scroll hori│",
//             "│ine               │",
//             "│                  │",
//             "│                  │",
//             "│                  │",
//             "│                  │",
//             "│                  │",
//             "└──────────────────┘",
//         ]),
//     );
//     // only support Alignment::Left
//     test_case(
//         Alignment::Right,
//         (0, 7),
//         Buffer::with_lines(vec![
//             "┌──────────────────┐",
//             "│段落现在可以水平滚│",
//             "│Paragraph can scro│",
//             "│        Short line│",
//             "│                  │",
//             "│                  │",
//             "│                  │",
//             "│                  │",
//             "│                  │",
//             "└──────────────────┘",
//         ]),
//     );
// }