File: terminfo.rs

package info (click to toggle)
rust-term 0.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 356 kB
  • sloc: makefile: 4
file content (29 lines) | stat: -rw-r--r-- 800 bytes parent folder | download | duplicates (14)
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
use std::fs;
use std::io;
use term::terminfo::TermInfo;
use term::terminfo::TerminfoTerminal;
use term::Terminal;

#[test]
fn test_parse() {
    for f in fs::read_dir("tests/data/").unwrap() {
        let _ = TermInfo::from_path(f.unwrap().path()).unwrap();
    }
}

#[test]
fn test_supports_color() {
    fn supports_color(term: &str) -> bool {
        let terminfo = TermInfo::from_path(format!("tests/data/{}", term)).unwrap();
        let term = TerminfoTerminal::new_with_terminfo(io::stdout(), terminfo);
        term.supports_color()
    }
    assert!(supports_color("linux"));
    assert!(!supports_color("dumb"));
}

#[test]
fn test_fallback() {
    TermInfo::from_name("ansi-cargo-test").expect("failed to use fallback");
    assert!(TermInfo::from_name("really-bad-terminal").is_err());
}