1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-01-26 04:22:03 +02:00
rustlings/tests/integration_tests.rs

138 lines
3.1 KiB
Rust
Raw Normal View History

2019-03-20 21:05:45 +01:00
use assert_cmd::prelude::*;
use predicates::boolean::PredicateBooleanExt;
use std::process::Command;
2019-03-20 21:05:45 +01:00
#[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 run_single_compile_success() {
2019-03-20 21:25:27 +01:00
Command::cargo_bin("rustlings")
.unwrap()
2023-08-26 23:07:20 +02:00
.args(["run", "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()
2023-08-26 23:07:20 +02:00
.args(["run", "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()
2023-08-26 23:07:20 +02:00
.args(["run", "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()
2023-08-26 23:07:20 +02:00
.args(["run", "testFailure"])
.current_dir("tests/fixture/failure/")
.assert()
.code(1);
}
2019-05-09 20:16:06 +03:00
#[test]
fn run_single_test_not_passed() {
Command::cargo_bin("rustlings")
.unwrap()
2023-08-26 23:07:20 +02:00
.args(["run", "testNotPassed.rs"])
2019-05-09 20:16:06 +03:00
.current_dir("tests/fixture/failure/")
.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()
2023-08-26 23:07:20 +02:00
.args(["run", "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
2022-08-17 16:43:48 +02:00
#[test]
fn reset_single_exercise() {
Command::cargo_bin("rustlings")
.unwrap()
2023-08-26 23:07:20 +02:00
.args(["reset", "intro1"])
2022-08-17 16:43:48 +02:00
.assert()
.code(0);
}
#[test]
fn reset_no_exercise() {
Command::cargo_bin("rustlings")
.unwrap()
.arg("reset")
.assert()
2023-08-26 00:00:56 +02:00
.code(2)
2022-08-17 16:43:48 +02:00
.stderr(predicates::str::contains(
2023-08-26 00:00:56 +02:00
"required arguments were not provided",
2022-08-17 16:43:48 +02:00
));
}
2019-11-11 17:19:50 +01:00
#[test]
fn get_hint_for_single_test() {
Command::cargo_bin("rustlings")
.unwrap()
2023-08-26 23:07:20 +02:00
.args(["hint", "testFailure"])
2019-11-11 17:19:50 +01:00
.current_dir("tests/fixture/failure")
.assert()
.code(0)
.stdout("Hello!\n");
2019-11-11 17:28:19 +01:00
}
#[test]
fn run_compile_exercise_does_not_prompt() {
Command::cargo_bin("rustlings")
.unwrap()
2023-08-26 23:07:20 +02:00
.args(["run", "pending_exercise"])
.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 23:07:20 +02:00
.args(["run", "pending_test_exercise"])
.current_dir("tests/fixture/state")
.assert()
.code(0)
.stdout(predicates::str::contains("I AM NOT DONE").not());
}
#[test]
fn run_single_test_success_with_output() {
Command::cargo_bin("rustlings")
.unwrap()
2023-08-26 23:07:20 +02:00
.args(["run", "testSuccess"])
.current_dir("tests/fixture/success/")
.assert()
.code(0)
2024-04-05 00:44:43 +02:00
.stdout(predicates::str::contains("THIS TEST TOO SHALL PASS"));
2020-08-10 10:42:54 -04:00
}