aboutsummaryrefslogtreecommitdiffstats
path: root/tests/window_contents.rs
blob: 898351e697736312e41c89abf289c4330d932b61 (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
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
#[test]
fn formatted() {
    let mut parser = vt100::Parser::new(24, 80);
    compare_formatted(&parser);
    assert_eq!(parser.screen().contents_formatted(0, 0, 23, 79), "");

    parser.process(b"foobar");
    compare_formatted(&parser);
    assert!(!parser.screen().cell(0, 2).unwrap().bold());
    assert!(!parser.screen().cell(0, 3).unwrap().bold());
    assert!(!parser.screen().cell(0, 4).unwrap().bold());
    assert!(!parser.screen().cell(0, 5).unwrap().bold());
    assert_eq!(parser.screen().contents_formatted(0, 0, 23, 79), "foobar");

    parser.process(b"\x1b[1;4H\x1b[1;7m\x1b[33mb");
    compare_formatted(&parser);
    assert!(!parser.screen().cell(0, 2).unwrap().bold());
    assert!(parser.screen().cell(0, 3).unwrap().bold());
    assert!(!parser.screen().cell(0, 4).unwrap().bold());
    assert!(!parser.screen().cell(0, 5).unwrap().bold());
    assert_eq!(
        parser.screen().contents_formatted(0, 0, 23, 79),
        "foo\x1b[33;1;7mb\x1b[mar"
    );

    parser.process(b"\x1b[1;5H\x1b[22;42ma");
    compare_formatted(&parser);
    assert!(!parser.screen().cell(0, 2).unwrap().bold());
    assert!(parser.screen().cell(0, 3).unwrap().bold());
    assert!(!parser.screen().cell(0, 4).unwrap().bold());
    assert!(!parser.screen().cell(0, 5).unwrap().bold());
    assert_eq!(
        parser.screen().contents_formatted(0, 0, 23, 79),
        "foo\x1b[33;1;7mb\x1b[42;22ma\x1b[mr"
    );

    parser.process(b"\x1b[1;6H\x1b[35mr\r\nquux");
    compare_formatted(&parser);
    assert_eq!(
        parser.screen().contents_formatted(0, 0, 23, 79),
        "foo\x1b[33;1;7mb\x1b[42;22ma\x1b[35mr\r\nquux"
    );

    parser.process(b"\x1b[2;1H\x1b[45mquux");
    compare_formatted(&parser);
    assert_eq!(
        parser.screen().contents_formatted(0, 0, 23, 79),
        "foo\x1b[33;1;7mb\x1b[42;22ma\x1b[35mr\r\n\x1b[45mquux"
    );

    parser
        .process(b"\x1b[2;2H\x1b[38;2;123;213;231mu\x1b[38;5;254mu\x1b[39mx");
    compare_formatted(&parser);
    assert_eq!(parser.screen().contents_formatted(0, 0 ,23, 79), "foo\x1b[33;1;7mb\x1b[42;22ma\x1b[35mr\r\n\x1b[45mq\x1b[38;2;123;213;231mu\x1b[38;5;254mu\x1b[39mx");
}

fn compare_formatted(parser: &vt100::Parser) {
    let (rows, cols) = parser.screen().size();
    let contents =
        parser.screen().contents_formatted(0, 0, rows - 1, cols - 1);
    let mut parser2 = vt100::Parser::new(rows, cols);
    parser2.process(contents.as_bytes());
    compare_cells(parser, &parser2);
}

fn compare_cells(parser1: &vt100::Parser, parser2: &vt100::Parser) {
    assert_eq!(parser1.screen().size(), parser2.screen().size());
    let (rows, cols) = parser1.screen().size();

    for row in 0..rows {
        for col in 0..cols {
            let cell1 = parser1.screen().cell(row, col).unwrap();
            let cell2 = parser2.screen().cell(row, col).unwrap();

            assert_eq!(cell1.contents(), cell2.contents());
            assert_eq!(cell1.fgcolor(), cell2.fgcolor());
            assert_eq!(cell1.bgcolor(), cell2.bgcolor());
            assert_eq!(cell1.bold(), cell2.bold());
            assert_eq!(cell1.italic(), cell2.italic());
            assert_eq!(cell1.underline(), cell2.underline());
            assert_eq!(cell1.inverse(), cell2.inverse());
        }
    }
}