mdfried 0.20.3

A markdown viewer for the terminal that renders images and big headers
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
mod big_text;
mod config;
mod cursor;
mod debug;
mod document;
mod error;
mod keybindings;
mod model;
mod renderer;
mod setup;
mod sources;
mod view;
mod watch;
mod worker;

#[cfg(not(windows))]
use std::os::fd::IntoRawFd as _;

use std::{
    fmt::Display,
    io::{self, Read as _},
    sync::{
        Arc, OnceLock, RwLock,
        mpsc::{self},
    },
};

use clap::{ArgMatches, arg, command, value_parser};
use ratatui::{
    Terminal,
    crossterm::{
        event::{DisableMouseCapture, EnableMouseCapture},
        tty::IsTty as _,
    },
    layout::Size,
    prelude::CrosstermBackend,
};

use mdfrier::MarkdownLink;
use ratatui_image::{picker::ProtocolType, protocol::Protocol, sliced::SlicedProtocol};
use setup::{SetupResult, setup_graphics};

use crate::{
    config::Config,
    document::{Section, SectionID},
    error::Error,
    model::{DocumentId, Model},
    renderer::run_loop,
    sources::{DocumentSource, SharedDocumentSource, open_source},
    watch::watch,
    worker::{ImageCache, worker_thread},
};

pub const OK_END: &str = " ok.";

pub static VERSION: OnceLock<String> = OnceLock::new();

fn main() -> io::Result<()> {
    let mut cmd = command!() // requires `cargo` feature
        .arg(
            arg!([SOURCE] "The markdown source.\nCan be a file path, a URL, a github repo in \"github:[owner]/[repo]\" format, or '-' or omit, for stdin.")
        )
        .arg(arg!(-d --"deep-fry" "Extra deep fried images.").value_parser(value_parser!(bool)))
        .arg(arg!(-w --"watch" "Watch markdown file, reload on changes.").value_parser(value_parser!(bool)))
        .arg(arg!(-s --"setup" "Force font setup (again).").value_parser(value_parser!(bool)))
        .arg(
            arg!(--"print-config" "Write out a mostly complete config file example to stdout.")
                .value_parser(value_parser!(bool)),
        )
        .arg(
            arg!(--"no-cap-checks" "Do not query the terminal stdin for capabilities.")
                .value_parser(value_parser!(bool)),
        )
        .arg(arg!(--"debug-override-protocol-type" <PROTOCOL> "Force graphics protocol to a specific type."))
        .arg(
            arg!(--log [FILE] "Log to a file with RUST_LOG, or stderr if omitted with RUST_LOG=debug.\nStderr should always be redirected, e.g. 2>/dev/pts/<tty> to pipe into another terminal.")
                .num_args(0..=1)
                .default_missing_value("")
                .value_parser(value_parser!(String)),
        )
        .arg(arg!(--"animate" "Animate scrolling on startup (for demo recordings).").hide(true).value_parser(value_parser!(bool)))
        ;
    let matches = cmd.get_matches_mut();

    if let Some(version) = cmd.get_version() {
        #[expect(unused_must_use)]
        VERSION.set(version.to_owned());
    }

    match main_with_args(&matches) {
        Err(Error::Usage(msg)) => {
            if let Some(msg) = msg {
                println!("Usage error: {msg}");
                println!();
            }
            cmd.write_help(&mut io::stdout())?;
        }
        Err(Error::UserAbort(msg)) => {
            println!("Abort: {msg}");
        }
        Err(err) => eprintln!("{err}"),
        _ => {}
    }
    Ok(())
}

#[expect(clippy::too_many_lines)]
fn main_with_args(matches: &ArgMatches) -> Result<(), Error> {
    let (panic_hook, eyre_hook) = color_eyre::config::HookBuilder::default()
        .panic_section(format!(
            "This is a bug. Consider reporting it at {}",
            env!("CARGO_PKG_REPOSITORY")
        ))
        .display_location_section(true)
        .display_env_section(true)
        .into_hooks();
    eyre_hook.install()?;
    std::panic::set_hook(Box::new(move |panic_info| {
        if let Err(err) = crossterm::terminal::disable_raw_mode() {
            eprintln!("Unable to disable raw mode: {:?}", err);
        }
        let msg = format!("{}", panic_hook.panic_report(panic_info));
        log::error!("Panic: {}", msg);
        eprintln!("{msg}");
        #[expect(clippy::exit)]
        std::process::exit(libc::EXIT_FAILURE);
    }));

    if *matches.get_one("print-config").unwrap_or(&false) {
        config::print_default()?;
        return Ok(());
    }

    let log = matches.get_one::<String>("log");
    debug::init_logger(debug::LogTarget::from(log))?;

    let source: Option<String> = matches.get_one::<String>("SOURCE").cloned();

    let mut user_config = config::load_or_ask()?;
    let config = Config::from(user_config.clone());

    let (text, document_source) = match source {
        Some(source) if source == "-" => {
            let mut text = String::new();
            print!("Reading stdin...");
            io::stdin().read_to_string(&mut text)?;
            println!("{OK_END}");
            (text, DocumentSource::Stdin { text: None })
        }
        None => {
            if io::stdin().is_tty() {
                return Err(Error::Usage(Some(
                    "no source nor '-', and stdin is a tty (not a pipe)",
                )));
            }
            let mut text = String::new();
            print!("Reading stdin...");
            io::stdin().read_to_string(&mut text)?;
            println!("{OK_END}");
            (text, DocumentSource::Stdin { text: None })
        }
        Some(source) => open_source(&source, config.url_transform_command.clone())?,
    };

    if text.is_empty() {
        return Err(Error::Usage(Some("no input or empty")));
    }

    #[cfg(not(windows))]
    if !io::stdin().is_tty() {
        print!("Setting stdin to /dev/tty...");
        // Close the current stdin so that ratatui-image can read stuff from tty stdin.
        // SAFETY:
        // Calls some libc, not sure if this could be done otherwise.
        unsafe {
            // Attempt to open /dev/tty which will give us a new stdin
            let tty = std::fs::File::open("/dev/tty")?;

            // Get the file descriptor for /dev/tty
            let tty_fd = tty.into_raw_fd();

            // Duplicate the tty file descriptor to stdin (file descriptor 0)
            libc::dup2(tty_fd, libc::STDIN_FILENO);

            // Close the original tty file descriptor
            libc::close(tty_fd);
        }
        println!("{OK_END}");
    }

    let force_setup = *matches.get_one("setup").unwrap_or(&false);
    let no_cap_checks = *matches.get_one("no-cap-checks").unwrap_or(&false);
    let debug_override_protocol_type = config.debug_override_protocol_type.or(matches
        .get_one::<String>("debug-override-protocol-type")
        .map(|s| match s.as_str() {
            "Sixel" => ProtocolType::Sixel,
            "Iterm2" => ProtocolType::Iterm2,
            "Kitty" => ProtocolType::Kitty,
            _ => ProtocolType::Halfblocks,
        }));

    let (picker, renderer, has_text_size_protocol) = {
        let setup_result = setup_graphics(
            &mut user_config,
            force_setup,
            no_cap_checks,
            debug_override_protocol_type,
        );
        match setup_result {
            Ok(result) => match result {
                SetupResult::Aborted => return Err(Error::UserAbort("cancelled setup")),
                SetupResult::TextSizing(picker) => (picker, None, true),
                SetupResult::AsciiArt(picker) => (picker, None, false),
                SetupResult::Complete(picker, renderer) => (picker, Some(renderer), false),
            },
            Err(err) => return Err(err),
        }
    };

    let deep_fry = *matches.get_one("deep-fry").unwrap_or(&false);

    let watchmode_path = if *matches.get_one("watch").unwrap_or(&false)
        && let DocumentSource::File { path, .. } = &document_source
    {
        Some(path.clone())
    } else {
        None
    };

    let document_source = SharedDocumentSource(Arc::new(RwLock::new(document_source)));

    let (cmd_tx, cmd_rx) = mpsc::channel::<Cmd>();
    let (event_tx, event_rx) = mpsc::channel::<Event>();
    let watch_event_tx = event_tx.clone();

    #[cfg(not(windows))]
    if *matches.get_one("animate").unwrap_or(&false) {
        log::warn!("--animate");
        debug::animate_recording(event_tx.clone());
    }

    let config_max_image_height = config.max_image_height;
    let mut worker_theme = config.theme.clone();
    worker_theme.has_text_size_protocol = Some(has_text_size_protocol);
    let cmd_thread = worker_thread(
        document_source.clone(),
        picker,
        renderer,
        worker_theme,
        deep_fry,
        cmd_rx,
        event_tx,
        config_max_image_height,
    );

    crossterm::terminal::enable_raw_mode()?;
    let backend = CrosstermBackend::new(io::stdout());
    let mut terminal = Terminal::new(backend)?;
    let enable_mouse_capture = config.enable_mouse_capture;
    if enable_mouse_capture {
        crossterm::execute!(io::stderr(), EnableMouseCapture)?;
    }
    let watch_debounce_milliseconds = config.watch_debounce_milliseconds;
    terminal.clear()?;

    let model = Model::new(document_source, cmd_tx, event_rx, terminal.size()?, config);
    model.open(text)?;

    let debouncer = if let Some(path) = watchmode_path {
        log::info!("watching file");
        Some(watch(&path, watch_event_tx, watch_debounce_milliseconds)?)
    } else {
        drop(watch_event_tx);
        None
    };

    if let Err(err) = run_loop(terminal, model) {
        eprintln!("Runtime error: {err}");
    };
    drop(debouncer);

    if enable_mouse_capture {
        crossterm::execute!(io::stderr(), DisableMouseCapture)?;
    }
    crossterm::terminal::disable_raw_mode()?;

    if let Err(e) = cmd_thread.join() {
        eprintln!("Thread error: {e:?}");
    }
    Ok(())
}

enum Cmd {
    Parse(DocumentId, u16, String, Option<ImageCache>),
    OpenUrl(String),
}

impl std::fmt::Debug for Cmd {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        Display::fmt(self, f)
    }
}

impl Display for Cmd {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Cmd::Parse(reload_id, width, _, cache) => {
                write!(
                    f,
                    "Cmd::Parse({reload_id:?}, {width}, <text>, cache={cache:?})",
                )
            }
            Cmd::OpenUrl(url) => write!(f, "Cmd::Open({url})"),
        }
    }
}

pub enum Event {
    NewDocument(DocumentId),
    ParseDone(DocumentId, Option<SectionID>, String), // Only signals "parsing done", not "images ready"!
    Parsed(DocumentId, Section),
    ImageLoaded(
        DocumentId,
        SectionID,
        MarkdownLink,
        (SlicedProtocol, Size, Size),
    ),
    ImageFailed(DocumentId, SectionID, String, String),
    HeaderLoaded(DocumentId, SectionID, Vec<(String, u8, Protocol)>),
    FileChanged,
    Scroll(i16),
    NewSourceContent(String),
    ReferenceDefinition {
        id: String,
        url: String,
    },
}

impl Display for Event {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Event::NewDocument(document_id) => write!(f, "Event::NewDocument({document_id})"),
            Event::ParseDone(document_id, last_section_id, _text) => {
                write!(f, "Event::ParseDone({document_id}, {last_section_id:?})")
            }
            Event::Parsed(document_id, section) => {
                write!(
                    f,
                    "Event::Parsed({document_id}, id:{}, content: {})",
                    section.id, section.content
                )
            }
            Event::ImageLoaded(document_id, section_id, url, _) => {
                write!(f, "Event::ImageLoaded({document_id}, {section_id}, {url})")
            }
            Event::ImageFailed(document_id, section_id, url, error) => {
                write!(
                    f,
                    "Event::ImageFailed({document_id}, {section_id}, {url}, {error})"
                )
            }
            Event::HeaderLoaded(document_id, section_id, rows) => {
                write!(
                    f,
                    "Event::HeaderLoaded({document_id}, {section_id}, {})",
                    rows.first()
                        .map(|(text, _, _)| text.clone())
                        .unwrap_or_default()
                )
            }
            Event::ReferenceDefinition { id, url } => {
                write!(f, "Event::ReferenceDefinition {{ id: {id}, url: {url} }}")
            }
            Event::FileChanged => write!(f, "Event::FileChanged"),
            Event::Scroll(s) => write!(f, "Event::Scroll({s})"),
            Event::NewSourceContent(_) => write!(f, "Event::NewSource"),
        }
    }
}

impl std::fmt::Debug for Event {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        // Reuse Display impl
        Display::fmt(self, f)
    }
}

#[cfg(test)]
#[expect(clippy::unwrap_used)]
mod tests {
    use std::{sync::mpsc, thread::JoinHandle};

    #[cfg(not(target_os = "macos"))]
    use insta::assert_snapshot;
    use ratatui::{Terminal, backend::TestBackend, layout::Size, text::Line};
    use ratatui_image::picker::{Picker, ProtocolType};

    use crate::{
        Cmd, Event,
        config::{Config, UserConfig},
        document::{Section, SectionContent},
        error::Error,
        model::Model,
        sources::SharedDocumentSource,
        view::view,
        worker::worker_thread,
    };

    #[ctor::ctor]
    fn init_logger() {
        crate::debug::init_test_logger();
    }

    fn setup(config: Config) -> (Model, JoinHandle<Result<(), Error>>, Terminal<TestBackend>) {
        let (cmd_tx, cmd_rx) = mpsc::channel::<Cmd>();
        let (event_tx, event_rx) = mpsc::channel::<Event>();

        let picker = Picker::halfblocks();
        assert_eq!(picker.protocol_type(), ProtocolType::Halfblocks);
        let mut worker_theme = config.theme.clone();
        worker_theme.has_text_size_protocol = Some(true);
        let document_source = SharedDocumentSource::test();
        let worker = worker_thread(
            document_source.clone(),
            picker,
            None,
            worker_theme,
            false,
            cmd_rx,
            event_tx,
            config.max_image_height,
        );

        let screen_size = (80, 20).into();

        let model = Model::new(document_source, cmd_tx, event_rx, screen_size, config);

        let terminal =
            Terminal::new(TestBackend::new(screen_size.width, screen_size.height)).unwrap();

        (model, worker, terminal)
    }

    // Drop model so that cmd_rx gets closed and worker exits, then exit/join worker.
    fn teardown(model: Model, worker: JoinHandle<Result<(), Error>>) {
        drop(model);
        worker.join().unwrap().unwrap();
    }

    // Poll until parsed and no pending images.
    #[track_caller]
    fn poll_parsed(model: &mut Model) {
        let deadline = std::time::Instant::now() + std::time::Duration::from_secs(1);
        loop {
            let (_, parse_done, _) = model.process_events().unwrap();
            if parse_done {
                break;
            }
            assert!(
                std::time::Instant::now() < deadline,
                "timed out waiting for process_events to be done"
            );
            std::thread::sleep(std::time::Duration::from_millis(1));
        }
        log::debug!("poll_parsed completed");
    }

    // Poll until parsed and no pending images.
    fn poll_images_done(model: &mut Model) {
        let deadline = std::time::Instant::now() + std::time::Duration::from_secs(1);
        while model.has_pending_images() {
            model.process_events().unwrap();
            assert!(
                std::time::Instant::now() < deadline,
                "timed out waiting for has_pending_images to be done"
            );
            std::thread::sleep(std::time::Duration::from_millis(1));
        }
        log::debug!("poll_done completed");
    }

    #[test]
    fn parse() {
        let config = UserConfig {
            max_image_height: Some(10),
            ..Default::default()
        }
        .into();
        let (mut model, worker, mut terminal) = setup(config);

        model
            .open(String::from(
                r#"# Hello
This is a *test* markdown document.
Another line of same paragraph.

![image](./assets/NixOS.png)

# Another header
Some text

# Last bit
Goodbye."#,
            ))
            .unwrap();
        poll_parsed(&mut model);
        terminal
            .draw(|frame| {
                let cursor_position = view(&model, frame.buffer_mut());
                frame.set_cursor_position(cursor_position);
            })
            .unwrap();
        #[cfg(not(target_os = "macos"))]
        assert_snapshot!("first parse image previews", terminal.backend());
        // Must load an image.
        poll_images_done(&mut model);
        terminal
            .draw(|frame| {
                let cursor_position = view(&model, frame.buffer_mut());
                frame.set_cursor_position(cursor_position);
            })
            .unwrap();
        #[cfg(not(target_os = "macos"))]
        assert_snapshot!("first parse done", terminal.backend());

        teardown(model, worker);
    }

    #[test]
    fn reload_move_image() {
        let config = UserConfig {
            max_image_height: Some(10),
            ..Default::default()
        }
        .into();
        let (mut model, worker, mut terminal) = setup(config);

        model
            .open(String::from(
                r#"# Hello
This is a test markdown document.

![image](./assets/NixOS.png)

Goodbye."#,
            ))
            .unwrap();
        poll_parsed(&mut model);
        poll_images_done(&mut model);

        model
            .reparse(
                String::from(
                    r#"# Hello

![image](./assets/NixOS.png)

This is a test markdown document.

Goodbye."#,
                ),
                model.screen_size.width,
            )
            .unwrap();
        poll_parsed(&mut model);
        log::debug!("poll_parsed before failing done");
        terminal
            .draw(|frame| {
                let cursor_position = view(&model, frame.buffer_mut());
                frame.set_cursor_position(cursor_position);
            })
            .unwrap();
        #[cfg(not(target_os = "macos"))]
        assert_snapshot!("reload move image up", terminal.backend());

        model
            .reparse(
                String::from(
                    r#"# Hello
This is a test markdown document.

![image](./assets/NixOS.png)

Goodbye."#,
                ),
                model.screen_size.width,
            )
            .unwrap();
        poll_parsed(&mut model);
        terminal
            .draw(|frame| {
                let cursor_position = view(&model, frame.buffer_mut());
                frame.set_cursor_position(cursor_position);
            })
            .unwrap();
        #[cfg(not(target_os = "macos"))]
        assert_snapshot!("reload move image down", terminal.backend());

        teardown(model, worker);
    }

    #[test]
    fn reload_add_image() {
        let config = UserConfig {
            max_image_height: Some(10),
            ..Default::default()
        }
        .into();
        let (mut model, worker, mut terminal) = setup(config);

        model
            .open(String::from(
                r#"# Hello
This is a test markdown document.

![image](./assets/NixOS.png)

Goodbye."#,
            ))
            .unwrap();
        poll_parsed(&mut model);
        poll_images_done(&mut model);

        model
            .reparse(
                String::from(
                    r#"# Hello
This is a test markdown document.

![image](./assets/NixOS.png)

![image](./assets/you_fried.png)

Goodbye."#,
                ),
                model.screen_size.width,
            )
            .unwrap();
        poll_parsed(&mut model);
        terminal
            .draw(|frame| {
                let cursor_position = view(&model, frame.buffer_mut());
                frame.set_cursor_position(cursor_position);
            })
            .unwrap();
        #[cfg(not(target_os = "macos"))]
        assert_snapshot!("reload add image preview", terminal.backend());
        // Must load an image.
        poll_images_done(&mut model);
        terminal
            .draw(|frame| {
                let cursor_position = view(&model, frame.buffer_mut());
                frame.set_cursor_position(cursor_position);
            })
            .unwrap();
        #[cfg(not(target_os = "macos"))]
        assert_snapshot!("reload add image done", terminal.backend());
        teardown(model, worker);
    }

    #[test]
    fn duplicate_image() {
        let config = UserConfig {
            max_image_height: Some(8),
            ..Default::default()
        }
        .into();
        let (mut model, worker, mut terminal) = setup(config);

        model
            .open(String::from(
                r#"# Hello

![image](./assets/NixOS.png)

Goodbye."#,
            ))
            .unwrap();
        poll_parsed(&mut model);
        poll_images_done(&mut model);

        model
            .reparse(
                String::from(
                    r#"# Hello

![image A](./assets/NixOS.png)

Goodbye.  

![image B](./assets/NixOS.png)"#,
                ),
                model.screen_size.width,
            )
            .unwrap();
        poll_parsed(&mut model);
        terminal
            .draw(|frame| {
                let cursor_position = view(&model, frame.buffer_mut());
                frame.set_cursor_position(cursor_position);
            })
            .unwrap();
        #[cfg(not(target_os = "macos"))]
        assert_snapshot!("duplicate image preview", terminal.backend());
        // Must load an image.
        poll_images_done(&mut model);
        terminal
            .draw(|frame| {
                let cursor_position = view(&model, frame.buffer_mut());
                frame.set_cursor_position(cursor_position);
            })
            .unwrap();
        #[cfg(not(target_os = "macos"))]
        assert_snapshot!("duplicate image done", terminal.backend());
        teardown(model, worker);
    }

    #[test]
    fn simple_resize() {
        let config = UserConfig {
            max_image_height: Some(10),
            ..Default::default()
        }
        .into();
        let (mut model, worker, mut terminal) = setup(config);
        model.screen_size = Size::new(40, 20);

        model
            .open(String::from(
                r#"# Header here hee hee heeeeeeeeeeeeee
Line that should be broken up later
"#,
            ))
            .unwrap();
        poll_parsed(&mut model);
        terminal
            .draw(|frame| {
                let cursor_position = view(&model, frame.buffer_mut());
                frame.set_cursor_position(cursor_position);
            })
            .unwrap();

        let sections: Vec<&Section> = model.sections().collect();
        assert_eq!(3, sections.len());
        assert_eq!(
            SectionContent::Header("Header here hee hee".to_owned(), 1, None),
            sections[0].content
        );
        assert_eq!(
            SectionContent::Header("heeeeeeeeeeeeee".to_owned(), 1, None),
            sections[1].content
        );
        assert_eq!(
            SectionContent::Lines(vec![(
                Line::from("Line that should be broken up later"),
                Vec::new()
            ),]),
            sections[2].content
        );

        model.reload(Size::new(20, 20)).unwrap();
        poll_parsed(&mut model);
        terminal
            .draw(|frame| {
                let cursor_position = view(&model, frame.buffer_mut());
                frame.set_cursor_position(cursor_position);
            })
            .unwrap();

        let sections: Vec<&Section> = model.sections().collect();
        assert_eq!(6, sections.len());
        assert_eq!(
            SectionContent::Header("Header".to_owned(), 1, None),
            sections[0].content
        );
        assert_eq!(
            SectionContent::Header("here".to_owned(), 1, None),
            sections[1].content
        );
        assert_eq!(
            SectionContent::Header("hee hee".to_owned(), 1, None),
            sections[2].content
        );
        assert_eq!(
            SectionContent::Header("heeeeeeeee".to_owned(), 1, None),
            sections[3].content
        );
        assert_eq!(
            SectionContent::Header("eeeee".to_owned(), 1, None),
            sections[4].content
        );
        assert_eq!(
            SectionContent::Lines(vec![
                (Line::from("Line that should be"), Vec::new()),
                (Line::from("broken up later"), Vec::new()),
            ]),
            sections[5].content
        );

        teardown(model, worker);
    }
}