aboutsummaryrefslogtreecommitdiffstats
path: root/tests/basic.rs
blob: c18477bf2e99c93986fba1fa51ef31821bda71ed (plain) (blame)
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
use std::io::Write as _;
use std::os::unix::io::AsRawFd as _;

mod fixtures;

#[test]
fn test_basic() {
    let fixture = fixtures::Fixture::new("basic");
    fixture.build().run(&[], |pty| {
        pty.write_all(b"a").unwrap();
        assert_eq!(fixtures::read(pty), b"\x1b[6;6Hfoo");

        pty.write_all(b"a").unwrap();
        assert!(!fixtures::read_ready(pty.as_raw_fd()));

        pty.write_all(b"a").unwrap();
        assert_eq!(
            fixtures::read(pty),
            b"\x1b[9;9H\x1b[32mbar\x1b[12;12H\x1b[mbaz"
        );

        pty.write_all(b"a").unwrap();
    });
}

#[test]
fn test_async() {
    let mut fixture = fixtures::Fixture::new("async");
    fixture.features("async");
    fixture.build().run(&[], |pty| {
        pty.write_all(b"a").unwrap();
        assert_eq!(fixtures::read(pty), b"\x1b[6;6Hfoo");

        pty.write_all(b"a").unwrap();
        assert!(!fixtures::read_ready(pty.as_raw_fd()));

        pty.write_all(b"a").unwrap();
        assert_eq!(
            fixtures::read(pty),
            b"\x1b[9;9H\x1b[32mbar\x1b[12;12H\x1b[mbaz"
        );

        pty.write_all(b"a").unwrap();
    });
}