2019-03-20 20:05:45 +00:00
|
|
|
use assert_cmd::prelude::*;
|
2019-11-12 10:35:40 +00:00
|
|
|
use predicates::boolean::PredicateBooleanExt;
|
2024-04-11 00:51:02 +00:00
|
|
|
use std::process::Command;
|
2019-03-20 20:05:45 +00:00
|
|
|
|
|
|
|
#[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()
|
2023-08-26 21:07:20 +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()
|
2023-08-26 21:07:20 +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()
|
2023-08-26 21:07:20 +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()
|
2023-08-26 21:07:20 +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()
|
2023-08-26 21:07:20 +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()
|
2023-08-25 22:00:56 +00:00
|
|
|
.code(2)
|
|
|
|
.stderr(predicates::str::contains(
|
|
|
|
"required arguments were not provided",
|
|
|
|
));
|
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()
|
2023-08-26 21:07:20 +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
|
|
|
|
2022-08-17 14:43:48 +00:00
|
|
|
#[test]
|
|
|
|
fn reset_single_exercise() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2023-08-26 21:07:20 +00:00
|
|
|
.args(["reset", "intro1"])
|
2022-08-17 14:43:48 +00:00
|
|
|
.assert()
|
|
|
|
.code(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn reset_no_exercise() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
|
|
|
.arg("reset")
|
|
|
|
.assert()
|
2023-08-25 22:00:56 +00:00
|
|
|
.code(2)
|
2022-08-17 14:43:48 +00:00
|
|
|
.stderr(predicates::str::contains(
|
2023-08-25 22:00:56 +00:00
|
|
|
"required arguments were not provided",
|
2022-08-17 14:43:48 +00:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2019-11-11 16:19:50 +00:00
|
|
|
#[test]
|
|
|
|
fn get_hint_for_single_test() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2023-08-26 21:07:20 +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-12 10:35:40 +00:00
|
|
|
#[test]
|
|
|
|
fn run_compile_exercise_does_not_prompt() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2023-08-26 21:07:20 +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()
|
2023-08-26 21:07:20 +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()
|
2023-08-26 21:07:20 +00:00
|
|
|
.args(["run", "testSuccess"])
|
2020-06-04 14:31:17 +00:00
|
|
|
.current_dir("tests/fixture/success/")
|
|
|
|
.assert()
|
|
|
|
.code(0)
|
2024-04-04 22:44:43 +00:00
|
|
|
.stdout(predicates::str::contains("THIS TEST TOO SHALL PASS"));
|
2020-08-10 14:42:54 +00:00
|
|
|
}
|