mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-12-25 23:10:30 +00:00
152 lines
3.3 KiB
Rust
152 lines
3.3 KiB
Rust
use std::{
|
|
env::{self, consts::EXE_SUFFIX},
|
|
process::{Command, Stdio},
|
|
str::from_utf8,
|
|
};
|
|
|
|
#[derive(Default)]
|
|
struct Cmd<'a> {
|
|
current_dir: Option<&'a str>,
|
|
args: &'a [&'a str],
|
|
stdout: Option<&'a str>,
|
|
full_stdout: bool,
|
|
}
|
|
|
|
impl<'a> Cmd<'a> {
|
|
#[inline]
|
|
fn current_dir(&mut self, current_dir: &'a str) -> &mut Self {
|
|
self.current_dir = Some(current_dir);
|
|
self
|
|
}
|
|
|
|
#[inline]
|
|
fn args(&mut self, args: &'a [&'a str]) -> &mut Self {
|
|
self.args = args;
|
|
self
|
|
}
|
|
|
|
#[inline]
|
|
fn stdout(&mut self, stdout: &'a str) -> &mut Self {
|
|
self.stdout = Some(stdout);
|
|
self
|
|
}
|
|
|
|
#[inline]
|
|
fn full_stdout(&mut self) -> &mut Self {
|
|
self.full_stdout = true;
|
|
self
|
|
}
|
|
|
|
fn assert(&self, success: bool) {
|
|
let rustlings_bin = {
|
|
let mut path = env::current_exe().unwrap();
|
|
// Pop test binary name
|
|
path.pop();
|
|
// Pop `/deps`
|
|
path.pop();
|
|
|
|
path.push("rustlings");
|
|
let mut path = path.into_os_string();
|
|
path.push(EXE_SUFFIX);
|
|
path
|
|
};
|
|
|
|
let mut cmd = Command::new(rustlings_bin);
|
|
|
|
if let Some(current_dir) = self.current_dir {
|
|
cmd.current_dir(current_dir);
|
|
}
|
|
|
|
cmd.args(self.args)
|
|
.stdin(Stdio::null())
|
|
.stderr(Stdio::null());
|
|
|
|
let status = if let Some(expected_stdout) = self.stdout {
|
|
let output = cmd.output().unwrap();
|
|
let stdout = from_utf8(&output.stdout).unwrap();
|
|
|
|
if self.full_stdout {
|
|
assert_eq!(stdout, expected_stdout);
|
|
} else {
|
|
assert!(stdout.contains(expected_stdout));
|
|
}
|
|
|
|
output.status
|
|
} else {
|
|
cmd.stdout(Stdio::null()).status().unwrap()
|
|
};
|
|
|
|
assert_eq!(status.success(), success);
|
|
}
|
|
|
|
#[inline]
|
|
fn success(&self) {
|
|
self.assert(true);
|
|
}
|
|
|
|
#[inline]
|
|
fn fail(&self) {
|
|
self.assert(false);
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn wrong_dir() {
|
|
Cmd::default().current_dir("tests").fail();
|
|
}
|
|
|
|
#[test]
|
|
fn run_compilation_success() {
|
|
Cmd::default()
|
|
.current_dir("tests/test_exercises")
|
|
.args(&["run", "compilation_success"])
|
|
.success();
|
|
}
|
|
|
|
#[test]
|
|
fn run_compilation_failure() {
|
|
Cmd::default()
|
|
.current_dir("tests/test_exercises")
|
|
.args(&["run", "compilation_failure"])
|
|
.fail();
|
|
}
|
|
|
|
#[test]
|
|
fn run_test_success() {
|
|
Cmd::default()
|
|
.current_dir("tests/test_exercises")
|
|
.args(&["run", "test_success"])
|
|
.stdout("\nOutput from `main` function\n")
|
|
.success();
|
|
}
|
|
|
|
#[test]
|
|
fn run_test_failure() {
|
|
Cmd::default()
|
|
.current_dir("tests/test_exercises")
|
|
.args(&["run", "test_failure"])
|
|
.fail();
|
|
}
|
|
|
|
#[test]
|
|
fn run_exercise_not_in_info() {
|
|
Cmd::default()
|
|
.current_dir("tests/test_exercises")
|
|
.args(&["run", "not_in_info"])
|
|
.fail();
|
|
}
|
|
|
|
#[test]
|
|
fn reset_without_exercise_name() {
|
|
Cmd::default().args(&["reset"]).fail();
|
|
}
|
|
|
|
#[test]
|
|
fn hint() {
|
|
Cmd::default()
|
|
.current_dir("tests/test_exercises")
|
|
.args(&["hint", "test_failure"])
|
|
.stdout("The answer to everything: 42\n")
|
|
.full_stdout()
|
|
.success();
|
|
}
|