2019-03-20 20:05:45 +00:00
|
|
|
use assert_cmd::prelude::*;
|
2019-11-11 12:38:24 +00:00
|
|
|
use glob::glob;
|
2019-11-12 10:35:40 +00:00
|
|
|
use predicates::boolean::PredicateBooleanExt;
|
2019-11-11 12:38:24 +00:00
|
|
|
use std::fs::File;
|
|
|
|
use std::io::Read;
|
2019-03-20 20:25:27 +00:00
|
|
|
use std::process::Command;
|
2019-03-20 20:05:45 +00: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 20:25:27 +00:00
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2019-03-20 20:05:45 +00:00
|
|
|
.current_dir("tests/")
|
|
|
|
.assert()
|
2019-04-07 16:49:34 +00:00
|
|
|
.code(1);
|
2019-03-20 20:05:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn verify_all_success() {
|
2019-03-20 20:25:27 +00:00
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2021-04-21 12:47:53 +00:00
|
|
|
.arg("verify")
|
2019-04-07 16:49:34 +00:00
|
|
|
.current_dir("tests/fixture/success")
|
2019-03-20 20:05:45 +00:00
|
|
|
.assert()
|
|
|
|
.success();
|
|
|
|
}
|
|
|
|
|
2019-04-07 16:49:34 +00:00
|
|
|
#[test]
|
2020-02-26 19:38:44 +00:00
|
|
|
fn verify_fails_if_some_fails() {
|
2019-04-07 16:49:34 +00:00
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2021-04-21 12:47:53 +00:00
|
|
|
.arg("verify")
|
2019-04-07 16:49:34 +00:00
|
|
|
.current_dir("tests/fixture/failure")
|
|
|
|
.assert()
|
|
|
|
.code(1);
|
|
|
|
}
|
|
|
|
|
2019-03-20 20:05:45 +00:00
|
|
|
#[test]
|
|
|
|
fn run_single_compile_success() {
|
2019-03-20 20:25:27 +00:00
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2021-04-21 12:47:53 +00:00
|
|
|
.args(&["run", "compSuccess"])
|
2019-04-07 16:49:34 +00:00
|
|
|
.current_dir("tests/fixture/success/")
|
2019-03-20 20:05:45 +00:00
|
|
|
.assert()
|
|
|
|
.success();
|
|
|
|
}
|
|
|
|
|
2019-04-07 16:49:34 +00:00
|
|
|
#[test]
|
|
|
|
fn run_single_compile_failure() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2021-04-21 12:47:53 +00:00
|
|
|
.args(&["run", "compFailure"])
|
2019-04-07 16:49:34 +00:00
|
|
|
.current_dir("tests/fixture/failure/")
|
|
|
|
.assert()
|
|
|
|
.code(1);
|
|
|
|
}
|
|
|
|
|
2019-03-20 20:05:45 +00:00
|
|
|
#[test]
|
|
|
|
fn run_single_test_success() {
|
2019-03-20 20:25:27 +00:00
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2021-04-21 12:47:53 +00:00
|
|
|
.args(&["run", "testSuccess"])
|
2019-04-07 16:49:34 +00:00
|
|
|
.current_dir("tests/fixture/success/")
|
2019-03-20 20:05:45 +00:00
|
|
|
.assert()
|
|
|
|
.success();
|
|
|
|
}
|
|
|
|
|
2019-04-07 16:49:34 +00:00
|
|
|
#[test]
|
|
|
|
fn run_single_test_failure() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2021-04-21 12:47:53 +00:00
|
|
|
.args(&["run", "testFailure"])
|
2019-04-07 16:49:34 +00:00
|
|
|
.current_dir("tests/fixture/failure/")
|
|
|
|
.assert()
|
|
|
|
.code(1);
|
|
|
|
}
|
|
|
|
|
2019-05-09 17:16:06 +00:00
|
|
|
#[test]
|
|
|
|
fn run_single_test_not_passed() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2021-04-21 12:47:53 +00:00
|
|
|
.args(&["run", "testNotPassed.rs"])
|
2019-05-09 17:16:06 +00:00
|
|
|
.current_dir("tests/fixture/failure/")
|
|
|
|
.assert()
|
|
|
|
.code(1);
|
|
|
|
}
|
|
|
|
|
2019-03-20 20:05:45 +00:00
|
|
|
#[test]
|
|
|
|
fn run_single_test_no_filename() {
|
2019-03-20 20:25:27 +00:00
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2021-04-21 12:47:53 +00:00
|
|
|
.arg("run")
|
2019-03-20 20:05:45 +00:00
|
|
|
.current_dir("tests/fixture/")
|
|
|
|
.assert()
|
2019-04-07 16:49:34 +00:00
|
|
|
.code(1);
|
2019-03-20 20:05:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn run_single_test_no_exercise() {
|
2019-03-20 20:25:27 +00:00
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2021-04-21 12:47:53 +00:00
|
|
|
.args(&["run", "compNoExercise.rs"])
|
2019-04-07 16:49:34 +00:00
|
|
|
.current_dir("tests/fixture/failure")
|
2019-03-20 20:05:45 +00:00
|
|
|
.assert()
|
2019-04-07 16:49:34 +00:00
|
|
|
.code(1);
|
2019-03-20 20:05:45 +00:00
|
|
|
}
|
2019-11-11 16:19:50 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn get_hint_for_single_test() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2021-04-21 12:47:53 +00:00
|
|
|
.args(&["hint", "testFailure"])
|
2019-11-11 16:19:50 +00:00
|
|
|
.current_dir("tests/fixture/failure")
|
|
|
|
.assert()
|
|
|
|
.code(0)
|
|
|
|
.stdout("Hello!\n");
|
2019-11-11 16:28:19 +00:00
|
|
|
}
|
2019-11-11 16:21:06 +00:00
|
|
|
|
2019-11-11 12:38:24 +00:00
|
|
|
#[test]
|
|
|
|
fn all_exercises_require_confirmation() {
|
|
|
|
for exercise in glob("exercises/**/*.rs").unwrap() {
|
|
|
|
let path = exercise.unwrap();
|
2022-04-14 09:19:54 +00:00
|
|
|
if path.file_name().unwrap() == "mod.rs" {
|
|
|
|
continue
|
|
|
|
}
|
2019-11-11 12:38:24 +00:00
|
|
|
let source = {
|
|
|
|
let mut file = File::open(&path).unwrap();
|
|
|
|
let mut s = String::new();
|
|
|
|
file.read_to_string(&mut s).unwrap();
|
|
|
|
s
|
|
|
|
};
|
2021-04-21 12:47:53 +00:00
|
|
|
source
|
|
|
|
.matches("// I AM NOT DONE")
|
|
|
|
.next()
|
|
|
|
.unwrap_or_else(|| {
|
|
|
|
panic!(
|
|
|
|
"There should be an `I AM NOT DONE` annotation in {:?}",
|
|
|
|
path
|
|
|
|
)
|
|
|
|
});
|
2019-11-11 12:38:24 +00:00
|
|
|
}
|
2019-11-11 16:19:50 +00:00
|
|
|
}
|
2019-11-12 10:35:40 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn run_compile_exercise_does_not_prompt() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2021-04-21 12:47:53 +00:00
|
|
|
.args(&["run", "pending_exercise"])
|
2019-11-12 10:35:40 +00:00
|
|
|
.current_dir("tests/fixture/state")
|
|
|
|
.assert()
|
|
|
|
.code(0)
|
|
|
|
.stdout(predicates::str::contains("I AM NOT DONE").not());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn run_test_exercise_does_not_prompt() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2021-04-21 12:47:53 +00:00
|
|
|
.args(&["run", "pending_test_exercise"])
|
2019-11-12 10:35:40 +00:00
|
|
|
.current_dir("tests/fixture/state")
|
|
|
|
.assert()
|
|
|
|
.code(0)
|
|
|
|
.stdout(predicates::str::contains("I AM NOT DONE").not());
|
|
|
|
}
|
2020-06-04 14:31:17 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn run_single_test_success_with_output() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2021-04-21 12:47:53 +00:00
|
|
|
.args(&["--nocapture", "run", "testSuccess"])
|
2020-06-04 14:31:17 +00:00
|
|
|
.current_dir("tests/fixture/success/")
|
|
|
|
.assert()
|
|
|
|
.code(0)
|
|
|
|
.stdout(predicates::str::contains("THIS TEST TOO SHALL PAS"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn run_single_test_success_without_output() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2021-04-21 12:47:53 +00:00
|
|
|
.args(&["run", "testSuccess"])
|
2020-06-04 14:31:17 +00:00
|
|
|
.current_dir("tests/fixture/success/")
|
|
|
|
.assert()
|
|
|
|
.code(0)
|
|
|
|
.stdout(predicates::str::contains("THIS TEST TOO SHALL PAS").not());
|
2020-08-10 14:42:54 +00:00
|
|
|
}
|
2020-12-12 18:48:25 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn run_rustlings_list() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
|
|
|
.args(&["list"])
|
|
|
|
.current_dir("tests/fixture/success")
|
|
|
|
.assert()
|
|
|
|
.success();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn run_rustlings_list_no_pending() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
|
|
|
.args(&["list"])
|
|
|
|
.current_dir("tests/fixture/success")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout(predicates::str::contains("Pending").not());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn run_rustlings_list_both_done_and_pending() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
|
|
|
.args(&["list"])
|
|
|
|
.current_dir("tests/fixture/state")
|
|
|
|
.assert()
|
|
|
|
.success()
|
2021-04-21 12:47:53 +00:00
|
|
|
.stdout(predicates::str::contains("Done").and(predicates::str::contains("Pending")));
|
2020-12-12 18:48:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn run_rustlings_list_without_pending() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
|
|
|
.args(&["list", "--solved"])
|
|
|
|
.current_dir("tests/fixture/state")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout(predicates::str::contains("Pending").not());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn run_rustlings_list_without_done() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
|
|
|
.args(&["list", "--unsolved"])
|
|
|
|
.current_dir("tests/fixture/state")
|
|
|
|
.assert()
|
|
|
|
.success()
|
|
|
|
.stdout(predicates::str::contains("Done").not());
|
|
|
|
}
|