summaryrefslogtreecommitdiff
path: root/tests/integration_tests.rs
blob: bd5d92e05b060505cd8ef6acf4ac0cacef5413a2 (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
use std::process::Command;
use assert_cmd::prelude::*;

#[test]
fn runs_without_arguments() {
    let mut cmd = Command::cargo_bin("rustlings").unwrap();
    cmd.assert().success();
}

#[test]
fn fails_when_in_wrong_dir() {
    Command::cargo_bin("rustlings").unwrap()
        .current_dir("tests/")
        .assert()
        .failure();
}

#[test]
fn verify_all_success() {
    Command::cargo_bin("rustlings").unwrap()
        .arg("v")
        .current_dir("tests/fixture/")
        .assert()
        .success();
}

#[test]
fn run_single_compile_success() {
    Command::cargo_bin("rustlings").unwrap()
        .args(&["r", "compSuccess.rs"])
        .current_dir("tests/fixture/")
        .assert()
        .success();
}

#[test]
fn run_single_test_success() {
    Command::cargo_bin("rustlings").unwrap()
        .args(&["r", "testSuccess.rs"])
        .current_dir("tests/fixture/")
        .assert()
        .success();
}

#[test]
fn run_single_test_no_filename() {
    Command::cargo_bin("rustlings").unwrap()
        .arg("r")
        .current_dir("tests/fixture/")
        .assert()
        .failure();
}

#[test]
fn run_single_test_no_exercise() {
    Command::cargo_bin("rustlings").unwrap()
        .args(&["r", "compNoExercise.rs"])
        .current_dir("tests/fixture/")
        .assert()
        .failure();
}