2020-02-26 13:38:44 -06:00
|
|
|
use crate::exercise::{CompiledExercise, Exercise, Mode, State};
|
2020-02-20 13:11:53 -06:00
|
|
|
use console::style;
|
2019-01-09 13:33:43 -06:00
|
|
|
use indicatif::ProgressBar;
|
|
|
|
|
2020-06-04 09:31:17 -05:00
|
|
|
// Verify that the provided container of Exercise objects
|
|
|
|
// can be compiled and run without any failures.
|
|
|
|
// Any such failures will be reported to the end user.
|
|
|
|
// If the Exercise being verified is a test, the verbose boolean
|
|
|
|
// determines whether or not the test harness outputs are displayed.
|
|
|
|
pub fn verify<'a>(
|
|
|
|
start_at: impl IntoIterator<Item = &'a Exercise>,
|
2020-08-10 09:42:54 -05:00
|
|
|
verbose: bool,
|
2020-06-04 09:31:17 -05:00
|
|
|
) -> Result<(), &'a Exercise> {
|
2019-04-11 15:41:24 -05:00
|
|
|
for exercise in start_at {
|
2019-11-18 11:11:22 -06:00
|
|
|
let compile_result = match exercise.mode {
|
2020-06-04 09:31:17 -05:00
|
|
|
Mode::Test => compile_and_test(&exercise, RunMode::Interactive, verbose),
|
2020-02-26 13:38:44 -06:00
|
|
|
Mode::Compile => compile_and_run_interactively(&exercise),
|
2020-02-14 08:25:03 -06:00
|
|
|
Mode::Clippy => compile_only(&exercise),
|
2019-11-11 06:38:24 -06:00
|
|
|
};
|
2019-11-18 11:11:22 -06:00
|
|
|
if !compile_result.unwrap_or(false) {
|
|
|
|
return Err(exercise);
|
2019-03-06 14:47:00 -06:00
|
|
|
}
|
|
|
|
}
|
2019-01-09 13:33:43 -06:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-02-20 13:11:53 -06:00
|
|
|
enum RunMode {
|
|
|
|
Interactive,
|
|
|
|
NonInteractive,
|
|
|
|
}
|
|
|
|
|
2020-06-04 09:31:17 -05:00
|
|
|
// Compile and run the resulting test harness of the given Exercise
|
|
|
|
pub fn test(exercise: &Exercise, verbose: bool) -> Result<(), ()> {
|
|
|
|
compile_and_test(exercise, RunMode::NonInteractive, verbose)?;
|
2019-11-12 04:35:40 -06:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-06-04 09:31:17 -05:00
|
|
|
// Invoke the rust compiler without running the resulting binary
|
2019-11-11 06:38:24 -06:00
|
|
|
fn compile_only(exercise: &Exercise) -> Result<bool, ()> {
|
2019-03-11 09:09:20 -05:00
|
|
|
let progress_bar = ProgressBar::new_spinner();
|
2019-04-11 15:41:24 -05:00
|
|
|
progress_bar.set_message(format!("Compiling {}...", exercise).as_str());
|
2019-03-11 09:09:20 -05:00
|
|
|
progress_bar.enable_steady_tick(100);
|
2020-02-26 13:38:44 -06:00
|
|
|
|
|
|
|
let _ = compile(&exercise, &progress_bar)?;
|
2019-03-11 09:09:20 -05:00
|
|
|
progress_bar.finish_and_clear();
|
2019-01-09 13:33:43 -06:00
|
|
|
|
2020-02-26 13:38:44 -06:00
|
|
|
success!("Successfully compiled {}!", exercise);
|
|
|
|
Ok(prompt_for_completion(&exercise, None))
|
2019-11-12 04:35:40 -06:00
|
|
|
}
|
|
|
|
|
2020-06-04 09:31:17 -05:00
|
|
|
// Compile the given Exercise and run the resulting binary in an interactive mode
|
2020-02-26 13:38:44 -06:00
|
|
|
fn compile_and_run_interactively(exercise: &Exercise) -> Result<bool, ()> {
|
2019-03-11 09:09:20 -05:00
|
|
|
let progress_bar = ProgressBar::new_spinner();
|
2020-02-26 13:38:44 -06:00
|
|
|
progress_bar.set_message(format!("Compiling {}...", exercise).as_str());
|
2019-03-11 09:09:20 -05:00
|
|
|
progress_bar.enable_steady_tick(100);
|
2019-04-11 15:41:24 -05:00
|
|
|
|
2020-02-26 13:38:44 -06:00
|
|
|
let compilation = compile(&exercise, &progress_bar)?;
|
2020-02-20 13:11:53 -06:00
|
|
|
|
2020-02-26 13:38:44 -06:00
|
|
|
progress_bar.set_message(format!("Running {}...", exercise).as_str());
|
|
|
|
let result = compilation.run();
|
|
|
|
progress_bar.finish_and_clear();
|
|
|
|
|
|
|
|
let output = match result {
|
|
|
|
Ok(output) => output,
|
2020-02-20 13:11:53 -06:00
|
|
|
Err(output) => {
|
2020-02-26 13:38:44 -06:00
|
|
|
warn!("Ran {} with errors", exercise);
|
|
|
|
println!("{}", output.stdout);
|
2020-07-08 04:51:12 -05:00
|
|
|
println!("{}", output.stderr);
|
2020-02-20 13:11:53 -06:00
|
|
|
return Err(());
|
|
|
|
}
|
|
|
|
};
|
2019-04-11 15:41:24 -05:00
|
|
|
|
2020-02-26 13:38:44 -06:00
|
|
|
success!("Successfully ran {}!", exercise);
|
|
|
|
|
|
|
|
Ok(prompt_for_completion(&exercise, Some(output.stdout)))
|
|
|
|
}
|
|
|
|
|
2020-06-04 09:31:17 -05:00
|
|
|
// Compile the given Exercise as a test harness and display
|
|
|
|
// the output if verbose is set to true
|
2020-08-10 09:42:54 -05:00
|
|
|
fn compile_and_test(exercise: &Exercise, run_mode: RunMode, verbose: bool) -> Result<bool, ()> {
|
2020-02-26 13:38:44 -06:00
|
|
|
let progress_bar = ProgressBar::new_spinner();
|
|
|
|
progress_bar.set_message(format!("Testing {}...", exercise).as_str());
|
|
|
|
progress_bar.enable_steady_tick(100);
|
|
|
|
|
|
|
|
let compilation = compile(exercise, &progress_bar)?;
|
2020-02-20 13:11:53 -06:00
|
|
|
let result = compilation.run();
|
|
|
|
progress_bar.finish_and_clear();
|
2019-02-15 05:06:05 -06:00
|
|
|
|
2020-02-20 13:11:53 -06:00
|
|
|
match result {
|
2020-06-04 09:31:17 -05:00
|
|
|
Ok(output) => {
|
|
|
|
if verbose {
|
|
|
|
println!("{}", output.stdout);
|
|
|
|
}
|
2020-02-26 13:38:44 -06:00
|
|
|
success!("Successfully tested {}", &exercise);
|
2020-02-20 13:11:53 -06:00
|
|
|
if let RunMode::Interactive = run_mode {
|
2020-02-26 13:38:44 -06:00
|
|
|
Ok(prompt_for_completion(&exercise, None))
|
2020-02-20 13:11:53 -06:00
|
|
|
} else {
|
|
|
|
Ok(true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(output) => {
|
|
|
|
warn!(
|
|
|
|
"Testing of {} failed! Please try again. Here's the output:",
|
2019-04-11 15:41:24 -05:00
|
|
|
exercise
|
2019-02-15 05:06:05 -06:00
|
|
|
);
|
2020-02-20 13:11:53 -06:00
|
|
|
println!("{}", output.stdout);
|
2019-02-15 05:06:05 -06:00
|
|
|
Err(())
|
|
|
|
}
|
2019-01-09 13:33:43 -06:00
|
|
|
}
|
|
|
|
}
|
2019-11-11 06:38:24 -06:00
|
|
|
|
2020-06-04 09:31:17 -05:00
|
|
|
// Compile the given Exercise and return an object with information
|
|
|
|
// about the state of the compilation
|
2020-02-26 13:38:44 -06:00
|
|
|
fn compile<'a, 'b>(
|
|
|
|
exercise: &'a Exercise,
|
|
|
|
progress_bar: &'b ProgressBar,
|
|
|
|
) -> Result<CompiledExercise<'a>, ()> {
|
|
|
|
let compilation_result = exercise.compile();
|
|
|
|
|
|
|
|
match compilation_result {
|
|
|
|
Ok(compilation) => Ok(compilation),
|
|
|
|
Err(output) => {
|
|
|
|
progress_bar.finish_and_clear();
|
|
|
|
warn!(
|
|
|
|
"Compiling of {} failed! Please try again. Here's the output:",
|
|
|
|
exercise
|
|
|
|
);
|
|
|
|
println!("{}", output.stderr);
|
|
|
|
Err(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn prompt_for_completion(exercise: &Exercise, prompt_output: Option<String>) -> bool {
|
2019-11-12 04:35:40 -06:00
|
|
|
let context = match exercise.state() {
|
|
|
|
State::Done => return true,
|
|
|
|
State::Pending(context) => context,
|
|
|
|
};
|
|
|
|
|
|
|
|
let success_msg = match exercise.mode {
|
2019-11-11 06:38:24 -06:00
|
|
|
Mode::Compile => "The code is compiling!",
|
|
|
|
Mode::Test => "The code is compiling, and the tests pass!",
|
2020-02-14 08:25:03 -06:00
|
|
|
Mode::Clippy => "The code is compiling, and 📎 Clippy 📎 is happy!",
|
2019-11-11 06:38:24 -06:00
|
|
|
};
|
|
|
|
|
2020-06-03 16:18:48 -05:00
|
|
|
println!();
|
2019-11-11 06:38:24 -06:00
|
|
|
println!("🎉 🎉 {} 🎉 🎉", success_msg);
|
2020-06-03 16:18:48 -05:00
|
|
|
println!();
|
2020-02-26 13:38:44 -06:00
|
|
|
|
|
|
|
if let Some(output) = prompt_output {
|
|
|
|
println!("Output:");
|
|
|
|
println!("{}", separator());
|
|
|
|
println!("{}", output);
|
|
|
|
println!("{}", separator());
|
2020-06-03 16:18:48 -05:00
|
|
|
println!();
|
2020-02-26 13:38:44 -06:00
|
|
|
}
|
|
|
|
|
2019-11-11 06:38:24 -06:00
|
|
|
println!("You can keep working on this exercise,");
|
|
|
|
println!(
|
|
|
|
"or jump into the next one by removing the {} comment:",
|
|
|
|
style("`I AM NOT DONE`").bold()
|
|
|
|
);
|
2020-06-03 16:18:48 -05:00
|
|
|
println!();
|
2019-11-11 06:38:24 -06:00
|
|
|
for context_line in context {
|
|
|
|
let formatted_line = if context_line.important {
|
|
|
|
format!("{}", style(context_line.line).bold())
|
|
|
|
} else {
|
2020-06-03 16:18:48 -05:00
|
|
|
context_line.line.to_string()
|
2019-11-11 06:38:24 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
println!(
|
|
|
|
"{:>2} {} {}",
|
|
|
|
style(context_line.number).blue().bold(),
|
|
|
|
style("|").blue(),
|
|
|
|
formatted_line
|
|
|
|
);
|
|
|
|
}
|
2019-11-12 04:35:40 -06:00
|
|
|
|
|
|
|
false
|
2019-11-11 06:38:24 -06:00
|
|
|
}
|
2020-02-26 13:38:44 -06:00
|
|
|
|
|
|
|
fn separator() -> console::StyledObject<&'static str> {
|
|
|
|
style("====================").bold()
|
|
|
|
}
|