1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-05-18 03:06:08 +02:00
rustlings/tests/integration_tests.rs

119 lines
2.4 KiB
Rust
Raw Normal View History

2019-03-20 21:05:45 +01:00
use assert_cmd::prelude::*;
2019-03-20 21:25:27 +01:00
use std::process::Command;
2019-03-20 21:05:45 +01:00
#[test]
fn runs_without_arguments() {
let mut cmd = Command::cargo_bin("rustlings").unwrap();
cmd.assert().success();
}
#[test]
fn fails_when_in_wrong_dir() {
2019-03-20 21:25:27 +01:00
Command::cargo_bin("rustlings")
.unwrap()
2019-03-20 21:05:45 +01:00
.current_dir("tests/")
.assert()
.code(1);
2019-03-20 21:05:45 +01:00
}
#[test]
fn verify_all_success() {
2019-03-20 21:25:27 +01:00
Command::cargo_bin("rustlings")
.unwrap()
2019-03-20 21:05:45 +01:00
.arg("v")
.current_dir("tests/fixture/success")
2019-03-20 21:05:45 +01:00
.assert()
.success();
}
#[test]
fn verify_all_failure() {
Command::cargo_bin("rustlings")
.unwrap()
.arg("v")
.current_dir("tests/fixture/failure")
.assert()
.code(1);
}
2019-03-20 21:05:45 +01:00
#[test]
fn run_single_compile_success() {
2019-03-20 21:25:27 +01:00
Command::cargo_bin("rustlings")
.unwrap()
.args(&["r", "compSuccess"])
.current_dir("tests/fixture/success/")
2019-03-20 21:05:45 +01:00
.assert()
.success();
}
#[test]
fn run_single_compile_failure() {
Command::cargo_bin("rustlings")
.unwrap()
.args(&["r", "compFailure"])
.current_dir("tests/fixture/failure/")
.assert()
.code(1);
}
2019-03-20 21:05:45 +01:00
#[test]
fn run_single_test_success() {
2019-03-20 21:25:27 +01:00
Command::cargo_bin("rustlings")
.unwrap()
.args(&["r", "testSuccess"])
.current_dir("tests/fixture/success/")
2019-03-20 21:05:45 +01:00
.assert()
.success();
}
#[test]
fn run_single_test_failure() {
Command::cargo_bin("rustlings")
.unwrap()
.args(&["r", "testFailure"])
.current_dir("tests/fixture/failure/")
.assert()
.code(1);
}
2019-05-09 19:16:06 +02:00
#[test]
fn run_single_test_not_passed() {
Command::cargo_bin("rustlings")
.unwrap()
.args(&["r", "testNotPassed.rs"])
.current_dir("tests/fixture/failure/")
.assert()
.code(1);
}
2019-03-20 21:05:45 +01:00
#[test]
fn run_single_test_no_filename() {
2019-03-20 21:25:27 +01:00
Command::cargo_bin("rustlings")
.unwrap()
2019-03-20 21:05:45 +01:00
.arg("r")
.current_dir("tests/fixture/")
.assert()
.code(1);
2019-03-20 21:05:45 +01:00
}
#[test]
fn run_single_test_no_exercise() {
2019-03-20 21:25:27 +01:00
Command::cargo_bin("rustlings")
.unwrap()
2019-03-20 21:05:45 +01:00
.args(&["r", "compNoExercise.rs"])
.current_dir("tests/fixture/failure")
2019-03-20 21:05:45 +01:00
.assert()
.code(1);
2019-03-20 21:05:45 +01:00
}
2019-11-11 17:19:50 +01:00
#[test]
fn get_hint_for_single_test() {
Command::cargo_bin("rustlings")
.unwrap()
.args(&["h", "testFailure"])
.current_dir("tests/fixture/failure")
.assert()
.code(0)
.stdout("Hello!\n");
}