summaryrefslogtreecommitdiffstats
path: root/tests/testsuite/jobs.rs
blob: 885684abbdd9ff531fd3db70f038944c90dc4f2b (plain)
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
use ansi_term::Color;
use std::fs;
use std::io;
use std::path::Path;
use tempfile::TempDir;

use crate::common::{self, TestCommand};

#[test]
fn config_blank_job_0() -> io::Result<()> {
    let output = common::render_module("jobs").arg("--jobs=0").output()?;
    let actual = String::from_utf8(output.stdout).unwrap();

    let expected = "";
    assert_eq!(expected, actual);
    Ok(())
}

#[test]
fn config_blank_job_1() -> io::Result<()> {
    let output = common::render_module("jobs").arg("--jobs=1").output()?;
    let actual = String::from_utf8(output.stdout).unwrap();

    let expected = format!("{} ", Color::Blue.bold().paint("✦"));
    assert_eq!(expected, actual);
    Ok(())
}

#[test]
fn config_blank_job_2() -> io::Result<()> {
    let output = common::render_module("jobs").arg("--jobs=2").output()?;
    let actual = String::from_utf8(output.stdout).unwrap();

    let expected = format!("{} ", Color::Blue.bold().paint("✦2"));
    assert_eq!(expected, actual);
    Ok(())
}

#[test]
fn config_2_job_2() -> io::Result<()> {
    let output = common::render_module("jobs")
        .use_config(toml::toml! {
            [jobs]
            threshold = 2
        })
        .arg("--jobs=2")
        .output()?;
    let actual = String::from_utf8(output.stdout).unwrap();

    let expected = format!("{} ", Color::Blue.bold().paint("✦"));
    assert_eq!(expected, actual);
    Ok(())
}

#[test]
fn config_2_job_3() -> io::Result<()> {
    let output = common::render_module("jobs")
        .use_config(toml::toml! {
            [jobs]
            threshold = 2
        })
        .arg("--jobs=3")
        .output()?;
    let actual = String::from_utf8(output.stdout).unwrap();

    let expected = format!("{} ", Color::Blue.bold().paint("✦3"));
    assert_eq!(expected, actual);
    Ok(())
}

#[test]
fn config_disabled() -> io::Result<()> {
    let output = common::render_module("jobs")
        .use_config(toml::toml! {
            [jobs]
            disabled = true
        })
        .arg("--jobs=1")
        .output()?;
    let actual = String::from_utf8(output.stdout).unwrap();

    let expected = "";
    assert_eq!(expected, actual);
    Ok(())
}