2019-03-20 16:05:45 -04:00
|
|
|
use assert_cmd::prelude::*;
|
2024-04-10 20:51:02 -04:00
|
|
|
use std::process::Command;
|
2019-03-20 16:05:45 -04:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn fails_when_in_wrong_dir() {
|
2019-03-20 16:25:27 -04:00
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2019-03-20 16:05:45 -04:00
|
|
|
.current_dir("tests/")
|
|
|
|
.assert()
|
2019-04-07 12:49:34 -04:00
|
|
|
.code(1);
|
2019-03-20 16:05:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn run_single_compile_success() {
|
2019-03-20 16:25:27 -04:00
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2023-08-26 17:07:20 -04:00
|
|
|
.args(["run", "compSuccess"])
|
2019-04-07 12:49:34 -04:00
|
|
|
.current_dir("tests/fixture/success/")
|
2019-03-20 16:05:45 -04:00
|
|
|
.assert()
|
|
|
|
.success();
|
|
|
|
}
|
|
|
|
|
2019-04-07 12:49:34 -04:00
|
|
|
#[test]
|
|
|
|
fn run_single_compile_failure() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2023-08-26 17:07:20 -04:00
|
|
|
.args(["run", "compFailure"])
|
2019-04-07 12:49:34 -04:00
|
|
|
.current_dir("tests/fixture/failure/")
|
|
|
|
.assert()
|
|
|
|
.code(1);
|
|
|
|
}
|
|
|
|
|
2019-03-20 16:05:45 -04:00
|
|
|
#[test]
|
|
|
|
fn run_single_test_success() {
|
2019-03-20 16:25:27 -04:00
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2023-08-26 17:07:20 -04:00
|
|
|
.args(["run", "testSuccess"])
|
2019-04-07 12:49:34 -04:00
|
|
|
.current_dir("tests/fixture/success/")
|
2019-03-20 16:05:45 -04:00
|
|
|
.assert()
|
|
|
|
.success();
|
|
|
|
}
|
|
|
|
|
2019-04-07 12:49:34 -04:00
|
|
|
#[test]
|
|
|
|
fn run_single_test_failure() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2023-08-26 17:07:20 -04:00
|
|
|
.args(["run", "testFailure"])
|
2019-04-07 12:49:34 -04:00
|
|
|
.current_dir("tests/fixture/failure/")
|
|
|
|
.assert()
|
|
|
|
.code(1);
|
|
|
|
}
|
|
|
|
|
2019-05-09 13:16:06 -04:00
|
|
|
#[test]
|
|
|
|
fn run_single_test_not_passed() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2023-08-26 17:07:20 -04:00
|
|
|
.args(["run", "testNotPassed.rs"])
|
2019-05-09 13:16:06 -04:00
|
|
|
.current_dir("tests/fixture/failure/")
|
|
|
|
.assert()
|
|
|
|
.code(1);
|
|
|
|
}
|
|
|
|
|
2019-03-20 16:05:45 -04:00
|
|
|
#[test]
|
|
|
|
fn run_single_test_no_exercise() {
|
2019-03-20 16:25:27 -04:00
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2023-08-26 17:07:20 -04:00
|
|
|
.args(["run", "compNoExercise.rs"])
|
2019-04-07 12:49:34 -04:00
|
|
|
.current_dir("tests/fixture/failure")
|
2019-03-20 16:05:45 -04:00
|
|
|
.assert()
|
2019-04-07 12:49:34 -04:00
|
|
|
.code(1);
|
2019-03-20 16:05:45 -04:00
|
|
|
}
|
2019-11-11 11:19:50 -05:00
|
|
|
|
2022-08-17 10:43:48 -04:00
|
|
|
#[test]
|
|
|
|
fn reset_single_exercise() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2023-08-26 17:07:20 -04:00
|
|
|
.args(["reset", "intro1"])
|
2022-08-17 10:43:48 -04:00
|
|
|
.assert()
|
|
|
|
.code(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn reset_no_exercise() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
|
|
|
.arg("reset")
|
|
|
|
.assert()
|
2023-08-25 18:00:56 -04:00
|
|
|
.code(2)
|
2022-08-17 10:43:48 -04:00
|
|
|
.stderr(predicates::str::contains(
|
2023-08-25 18:00:56 -04:00
|
|
|
"required arguments were not provided",
|
2022-08-17 10:43:48 -04:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2019-11-11 11:19:50 -05:00
|
|
|
#[test]
|
|
|
|
fn get_hint_for_single_test() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2023-08-26 17:07:20 -04:00
|
|
|
.args(["hint", "testFailure"])
|
2019-11-11 11:19:50 -05:00
|
|
|
.current_dir("tests/fixture/failure")
|
|
|
|
.assert()
|
|
|
|
.code(0)
|
|
|
|
.stdout("Hello!\n");
|
2019-11-11 11:28:19 -05:00
|
|
|
}
|
2019-11-11 11:21:06 -05:00
|
|
|
|
2019-11-12 05:35:40 -05:00
|
|
|
#[test]
|
|
|
|
fn run_compile_exercise_does_not_prompt() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2023-08-26 17:07:20 -04:00
|
|
|
.args(["run", "pending_exercise"])
|
2019-11-12 05:35:40 -05:00
|
|
|
.current_dir("tests/fixture/state")
|
|
|
|
.assert()
|
2024-04-27 17:38:38 -04:00
|
|
|
.code(0);
|
2019-11-12 05:35:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn run_test_exercise_does_not_prompt() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2023-08-26 17:07:20 -04:00
|
|
|
.args(["run", "pending_test_exercise"])
|
2019-11-12 05:35:40 -05:00
|
|
|
.current_dir("tests/fixture/state")
|
|
|
|
.assert()
|
2024-04-27 17:38:38 -04:00
|
|
|
.code(0);
|
2019-11-12 05:35:40 -05:00
|
|
|
}
|
2020-06-04 10:31:17 -04:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn run_single_test_success_with_output() {
|
|
|
|
Command::cargo_bin("rustlings")
|
|
|
|
.unwrap()
|
2023-08-26 17:07:20 -04:00
|
|
|
.args(["run", "testSuccess"])
|
2020-06-04 10:31:17 -04:00
|
|
|
.current_dir("tests/fixture/success/")
|
|
|
|
.assert()
|
|
|
|
.code(0)
|
2024-04-04 18:44:43 -04:00
|
|
|
.stdout(predicates::str::contains("THIS TEST TOO SHALL PASS"));
|
2020-08-10 10:42:54 -04:00
|
|
|
}
|