aboutsummaryrefslogtreecommitdiffstats
path: root/tests/basic.rs
blob: babec390f702456ccca96c0b62e262b6df2ddf7b (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
extern crate vt100;

#[test]
fn object_creation() {
    let screen = vt100::Screen::new(24, 80);
    assert_eq!(screen.rows(), 24);
    assert_eq!(screen.cols(), 80);
}

#[test]
fn process_text() {
    let mut screen = vt100::Screen::new(24, 80);
    let input = b"foo\x1b[31m\x1b[32mb\x1b[3;7;42ma\x1b[23mr";
    screen.process(input);
    assert_eq!(screen.window_contents(0, 0, 0, 50), "foobar\n");
}

#[test]
fn set_window_size() {
    let screen = vt100::Screen::new(24, 80);
    assert_eq!(screen.rows(), 24);
    assert_eq!(screen.cols(), 80);

    screen.set_window_size(34, 8);
    assert_eq!(screen.rows(), 34);
    assert_eq!(screen.cols(), 8);
}

#[test]
fn cell_contents() {
    let mut screen = vt100::Screen::new(24, 80);
    let input = b"foo\x1b[31m\x1b[32mb\x1b[3;7;42ma\x1b[23mr";
    screen.process(input);
    assert_eq!(screen.cell(0, 0).unwrap().contents(), "f");
    assert_eq!(screen.cell(0, 1).unwrap().contents(), "o");
    assert_eq!(screen.cell(0, 2).unwrap().contents(), "o");
    assert_eq!(screen.cell(0, 3).unwrap().contents(), "b");
    assert_eq!(screen.cell(0, 4).unwrap().contents(), "a");
    assert_eq!(screen.cell(0, 5).unwrap().contents(), "r");
    assert_eq!(screen.cell(0, 6).unwrap().contents(), "");
}

#[test]
fn cell_colors() {
    let mut screen = vt100::Screen::new(24, 80);
    let input = b"foo\x1b[31m\x1b[32mb\x1b[3;7;42ma\x1b[23mr";
    screen.process(input);

    assert_eq!(
        screen.cell(0, 0).unwrap().fgcolor(),
        vt100::Color::ColorDefault
    );
    assert_eq!(
        screen.cell(0, 3).unwrap().fgcolor(),
        vt100::Color::ColorIdx(2)
    );
    assert_eq!(
        screen.cell(0, 4).unwrap().fgcolor(),
        vt100::Color::ColorIdx(2)
    );
    assert_eq!(
        screen.cell(0, 4).unwrap().bgcolor(),
        vt100::Color::ColorIdx(2)
    );
}

#[test]
fn cell_attrs() {
    let mut screen = vt100::Screen::new(24, 80);
    let input = b"foo\x1b[31m\x1b[32mb\x1b[3;7;42ma\x1b[23mr";
    screen.process(input);

    assert!(screen.cell(0, 4).unwrap().italic());
}